mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
fix: active page mark for home and bookmarks subcategories
This commit is contained in:
parent
447fadd19f
commit
487ae9a1e4
1 changed files with 19 additions and 4 deletions
|
@ -19,6 +19,7 @@ export const Navbar = () => {
|
||||||
iconActive: "material-symbols--home",
|
iconActive: "material-symbols--home",
|
||||||
title: "Домашняя",
|
title: "Домашняя",
|
||||||
href: "/",
|
href: "/",
|
||||||
|
categoryHref: "/home",
|
||||||
withAuthOnly: false,
|
withAuthOnly: false,
|
||||||
mobileMenu: false,
|
mobileMenu: false,
|
||||||
},
|
},
|
||||||
|
@ -89,12 +90,20 @@ export const Navbar = () => {
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
className={`iconify ${
|
className={`iconify ${
|
||||||
pathname == link.href ? link.iconActive : link.icon
|
[link.href, link.categoryHref].includes(
|
||||||
|
"/" + pathname.split("/")[1]
|
||||||
|
)
|
||||||
|
? link.iconActive
|
||||||
|
: link.icon
|
||||||
} w-6 h-6`}
|
} w-6 h-6`}
|
||||||
></span>
|
></span>
|
||||||
<span
|
<span
|
||||||
className={`${
|
className={`${
|
||||||
pathname == link.href ? "font-bold" : ""
|
[link.href, link.categoryHref].includes(
|
||||||
|
"/" + pathname.split("/")[1]
|
||||||
|
)
|
||||||
|
? "font-bold"
|
||||||
|
: ""
|
||||||
} text-sm sm:text-base`}
|
} text-sm sm:text-base`}
|
||||||
>
|
>
|
||||||
{link.title}
|
{link.title}
|
||||||
|
@ -154,14 +163,20 @@ export const Navbar = () => {
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
className={`iconify ${
|
className={`iconify ${
|
||||||
pathname == link.href
|
[link.href, link.categoryHref].includes(
|
||||||
|
"/" + pathname.split("/")[1]
|
||||||
|
)
|
||||||
? link.iconActive
|
? link.iconActive
|
||||||
: link.icon
|
: link.icon
|
||||||
} w-6 h-6`}
|
} w-6 h-6`}
|
||||||
></span>
|
></span>
|
||||||
<span
|
<span
|
||||||
className={`${
|
className={`${
|
||||||
pathname == link.href ? "font-bold" : ""
|
[link.href, link.categoryHref].includes(
|
||||||
|
"/" + pathname.split("/")[1]
|
||||||
|
)
|
||||||
|
? "font-bold"
|
||||||
|
: ""
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
{link.title}
|
{link.title}
|
||||||
|
|
Loading…
Add table
Reference in a new issue