Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
Asistencia
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Billy Larru
Asistencia
Commits
fbef7dec
Commit
fbef7dec
authored
Sep 19, 2018
by
Billy Larru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[FIX sidebar.js, referenciando las vistas respecto a la ruta del proyecto]
parent
7697c08e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
14 deletions
+11
-14
sidebar.js
src/main/webapp/js/pages/sidebar.js
+11
-14
No files found.
src/main/webapp/js/pages/sidebar.js
View file @
fbef7dec
...
...
@@ -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="
${
c
ontextPath
}
vistas/
${
c
ategoria
[
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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment