mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-18 07:16:34 +00:00
feat(navbar): add breadcrumb navigation component
This commit is contained in:
parent
047cd04ea3
commit
0dec1e5697
62
src/components/navbar.tsx
Normal file
62
src/components/navbar.tsx
Normal file
@ -0,0 +1,62 @@
|
||||
"use client";
|
||||
|
||||
import React from "react";
|
||||
import {
|
||||
Breadcrumb,
|
||||
BreadcrumbItem,
|
||||
BreadcrumbLink,
|
||||
BreadcrumbList,
|
||||
BreadcrumbPage,
|
||||
BreadcrumbSeparator,
|
||||
} from "@/components/ui/breadcrumb";
|
||||
import { Home } from "lucide-react";
|
||||
import { usePathname } from "next/navigation";
|
||||
|
||||
export const Navbar = () => {
|
||||
const pathname = usePathname();
|
||||
const pathSegments = pathname.split("/").filter(Boolean); // Filter out empty strings
|
||||
|
||||
return (
|
||||
<Breadcrumb>
|
||||
<BreadcrumbList className="rounded-lg border border-border bg-background px-3 py-2 shadow-sm shadow-black/5">
|
||||
{/* If pathname is "/", display the Home icon inside BreadcrumbPage */}
|
||||
{pathSegments.length === 0 ? (
|
||||
<BreadcrumbItem>
|
||||
<BreadcrumbPage>
|
||||
<Home size={16} strokeWidth={2} aria-hidden="true" />
|
||||
<span className="sr-only">Home</span>
|
||||
</BreadcrumbPage>
|
||||
</BreadcrumbItem>
|
||||
) : (
|
||||
<>
|
||||
{/* Always show Home as the first BreadcrumbLink */}
|
||||
<BreadcrumbItem>
|
||||
<BreadcrumbLink href="/">
|
||||
<Home size={16} strokeWidth={2} aria-hidden="true" />
|
||||
<span className="sr-only">Home</span>
|
||||
</BreadcrumbLink>
|
||||
</BreadcrumbItem>
|
||||
<BreadcrumbSeparator />
|
||||
|
||||
{pathSegments.map((item, index) => (
|
||||
<React.Fragment key={index}>
|
||||
<BreadcrumbItem>
|
||||
{index === pathSegments.length - 1 ? (
|
||||
<BreadcrumbPage>{item}</BreadcrumbPage>
|
||||
) : (
|
||||
<BreadcrumbLink
|
||||
href={`/${pathSegments.slice(0, index + 1).join("/")}`}
|
||||
>
|
||||
{item}
|
||||
</BreadcrumbLink>
|
||||
)}
|
||||
</BreadcrumbItem>
|
||||
{index !== pathSegments.length - 1 && <BreadcrumbSeparator />}
|
||||
</React.Fragment>
|
||||
))}
|
||||
</>
|
||||
)}
|
||||
</BreadcrumbList>
|
||||
</Breadcrumb>
|
||||
);
|
||||
};
|
Loading…
Reference in New Issue
Block a user