mirror of
https://github.com/10h30/astroplate.git
synced 2026-07-14 04:06:21 +09:00
160 lines
5.3 KiB
Plaintext
Executable File
160 lines
5.3 KiB
Plaintext
Executable File
---
|
|
import Logo from "@/components/Logo.astro";
|
|
import ThemeSwitcher from "@/components/ThemeSwitcher.astro";
|
|
import config from "@/config/config.json";
|
|
import menu from "@/config/menu.json";
|
|
import { IoSearch } from "react-icons/io5";
|
|
|
|
export interface ChildNavigationLink {
|
|
name: string;
|
|
url: string;
|
|
}
|
|
|
|
export interface NavigationLink {
|
|
name: string;
|
|
url: string;
|
|
hasChildren?: boolean;
|
|
children?: ChildNavigationLink[];
|
|
}
|
|
|
|
const { main }: { main: NavigationLink[] } = menu;
|
|
const { navigation_button, settings } = config;
|
|
const { pathname } = Astro.url;
|
|
---
|
|
|
|
<header class={`header z-30 ${settings.sticky_header && "sticky top-0"}`}>
|
|
<nav class="navbar container">
|
|
<!-- logo -->
|
|
<div class="order-0">
|
|
<Logo />
|
|
</div>
|
|
<!-- navbar toggler -->
|
|
<input id="nav-toggle" type="checkbox" class="hidden" />
|
|
<label
|
|
for="nav-toggle"
|
|
class="order-3 cursor-pointer flex items-center lg:hidden text-text-dark dark:text-white lg:order-1"
|
|
>
|
|
<svg id="show-button" class="h-6 fill-current block" viewBox="0 0 20 20">
|
|
<title>Menu Open</title>
|
|
<path d="M0 3h20v2H0V3z m0 6h20v2H0V9z m0 6h20v2H0V0z"></path>
|
|
</svg>
|
|
<svg id="hide-button" class="h-6 fill-current hidden" viewBox="0 0 20 20">
|
|
<title>Menu Close</title>
|
|
<polygon
|
|
points="11 9 22 9 22 11 11 11 11 22 9 22 9 11 -2 11 -2 9 9 9 9 -2 11 -2"
|
|
transform="rotate(45 10 10)"></polygon>
|
|
</svg>
|
|
</label>
|
|
<!-- /navbar toggler -->
|
|
<ul
|
|
id="nav-menu"
|
|
class="navbar-nav order-3 hidden w-full pb-6 lg:order-1 lg:flex lg:w-auto lg:space-x-2 lg:pb-0 xl:space-x-8"
|
|
>
|
|
{
|
|
main.map((menu) => (
|
|
<>
|
|
{menu.hasChildren ? (
|
|
<li class="nav-item nav-dropdown group relative">
|
|
<input
|
|
type="checkbox"
|
|
id={`submenu-${menu.name}`}
|
|
class="peer hidden lg:hidden"
|
|
/>
|
|
<label
|
|
for={`submenu-${menu.name}`}
|
|
class={`nav-link inline-flex items-center ${
|
|
menu.children?.map(({ url }) => url).includes(pathname) ||
|
|
menu.children
|
|
?.map(({ url }) => `${url}/`)
|
|
.includes(pathname)
|
|
? "active"
|
|
: ""
|
|
}`}
|
|
>
|
|
{menu.name}
|
|
<svg class="h-4 w-4 fill-current" viewBox="0 0 20 20">
|
|
<path d="M9.293 12.95l.707.707L15.657 8l-1.414-1.414L10 10.828 5.757 6.586 4.343 8z" />
|
|
</svg>
|
|
</label>
|
|
<ul class="nav-dropdown-list hidden peer-checked:block lg:invisible lg:absolute lg:block lg:opacity-0 lg:group-hover:visible lg:group-hover:opacity-100">
|
|
{menu.children?.map((child) => (
|
|
<li class="nav-dropdown-item">
|
|
<a
|
|
href={child.url}
|
|
aria-label={child.name}
|
|
class={`nav-dropdown-link block ${
|
|
(pathname === `${child.url}/` ||
|
|
pathname === child.url) &&
|
|
"active"
|
|
}`}
|
|
>
|
|
{child.name}
|
|
</a>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</li>
|
|
) : (
|
|
<li class="nav-item">
|
|
<a
|
|
href={menu.url}
|
|
class={`nav-link block ${
|
|
(pathname === `${menu.url}/` || pathname === menu.url) &&
|
|
"active"
|
|
}`}
|
|
>
|
|
{menu.name}
|
|
</a>
|
|
</li>
|
|
)}
|
|
</>
|
|
))
|
|
}
|
|
{
|
|
navigation_button.enable && (
|
|
<li class="mt-4 inline-block lg:hidden">
|
|
<a
|
|
class="btn btn-outline-primary btn-sm"
|
|
href={navigation_button.link}
|
|
target={
|
|
navigation_button.link.startsWith("http") ? "_blank" : "_self"
|
|
}
|
|
rel={navigation_button.link.startsWith("http") ? "noopener" : ""}
|
|
>
|
|
{navigation_button.label}
|
|
</a>
|
|
</li>
|
|
)
|
|
}
|
|
</ul>
|
|
<div class="order-1 ml-auto flex items-center md:order-2 lg:ml-0">
|
|
{
|
|
settings.search && (
|
|
<button
|
|
class="border-border text-text-dark hover:text-primary dark:border-darkmode-border mr-5 inline-block border-r pr-5 text-xl dark:text-white dark:hover:text-darkmode-primary"
|
|
aria-label="search"
|
|
data-search-trigger
|
|
>
|
|
<IoSearch />
|
|
</button>
|
|
)
|
|
}
|
|
<ThemeSwitcher className="mr-5" />
|
|
{
|
|
navigation_button.enable && (
|
|
<a
|
|
class="btn btn-outline-primary btn-sm hidden lg:inline-block"
|
|
href={navigation_button.link}
|
|
target={
|
|
navigation_button.link.startsWith("http") ? "_blank" : "_self"
|
|
}
|
|
rel={navigation_button.link.startsWith("http") ? "noopener" : ""}
|
|
>
|
|
{navigation_button.label}
|
|
</a>
|
|
)
|
|
}
|
|
</div>
|
|
</nav>
|
|
</header>
|