Commit fbef7dec by Billy Larru

[FIX sidebar.js, referenciando las vistas respecto a la ruta del proyecto]

parent 7697c08e
......@@ -6,8 +6,9 @@ const DOMSideBar = {
},
setMenu() {
let location = window.location;
let position = getUrl(location.pathname, "/");
let path = location.pathname.substring(position + 1);//obtiene el nombre de la vista jsp para activar la clase .active
// let position = getUrl(location.pathname, "/");
// let path = location.pathname.substring(position + 1);//obtiene el nombre de la vista jsp para activar la clase .active
let path = getUrl(location.href);
let menu = document.getElementById("MENU");
let c = window.sidebar;//obtiene el menu
// console.log(c)
......@@ -43,16 +44,16 @@ const DOMSideBar = {
} else {
active = '';
}
html += `<li class="${active}"><a href="${subcategoria[l].url}"><span>${primeraLetraMayuscula(subcategoria[l].nombre)}</span></a></li>`;
html += `<li class="${active}"><a href="${contextPath}vistas/${subcategoria[l].url}"><span>${primeraLetraMayuscula(subcategoria[l].nombre)}</span></a></li>`;
}
html += `</li></ul>`;
} else {
html += `<li class="${active}"><a href="${categoria[k].url}"><span>${primeraLetraMayuscula(categoria[k].nombre)}</span></a></li>`;
html += `<li class="${active}"><a href="${contextPath}vistas/${categoria[k].url}"><span>${primeraLetraMayuscula(categoria[k].nombre)}</span></a></li>`;
}
}
html += `</li></ul>`;
} else {
html += `<li class="${active}"><a href="${modulo[j].url}"><i class="fa ${modulo[j].ico} fa-lg"></i><span>${primeraLetraMayuscula(modulo[j].nombre)}</span></a></li>`;
html += `<li class="${active}"><a href="${contextPath}vistas/${modulo[j].url}"><i class="fa ${modulo[j].ico} fa-lg"></i><span>${primeraLetraMayuscula(modulo[j].nombre)}</span></a></li>`;
}
}
}
......@@ -68,15 +69,10 @@ const DOMSideBar = {
logOut();
}
}
let getUrl = (pathname, caracter) => {
let position = 0;
for (let i = pathname.length - 1; i > 0; i--) {
if (pathname[i] === caracter) {
position = i;
break;
}
}
return position;
let getUrl = (path) => {
let pattern = "^(?:.*)/vistas/(.*)$";
let match = path.match(pattern);
return match[1];
}
DOMSideBar.init();
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment