57 lines
1.4 KiB
TypeScript
57 lines
1.4 KiB
TypeScript
"use client"
|
|
|
|
import Link from "next/link"
|
|
import { usePathname } from "next/navigation"
|
|
import {
|
|
SidebarGroup,
|
|
SidebarGroupLabel,
|
|
SidebarMenu,
|
|
SidebarMenuButton,
|
|
SidebarMenuItem,
|
|
} from "@/components/ui/sidebar"
|
|
|
|
export interface NavItem {
|
|
title: string
|
|
url: string
|
|
icon?: React.ReactNode
|
|
badge?: string
|
|
}
|
|
|
|
export interface NavGroup {
|
|
label: string
|
|
items: NavItem[]
|
|
}
|
|
|
|
export function NavMain({ groups }: { groups: NavGroup[] }) {
|
|
const pathname = usePathname()
|
|
|
|
return (
|
|
<>
|
|
{groups.map((group) => (
|
|
<SidebarGroup key={group.label}>
|
|
<SidebarGroupLabel>{group.label}</SidebarGroupLabel>
|
|
<SidebarMenu>
|
|
{group.items.map((item) => (
|
|
<SidebarMenuItem key={item.title}>
|
|
<SidebarMenuButton
|
|
isActive={pathname === item.url}
|
|
tooltip={item.title}
|
|
render={<Link href={item.url} />}
|
|
>
|
|
{item.icon}
|
|
<span>{item.title}</span>
|
|
{item.badge && (
|
|
<span className="ml-auto text-[10.5px] font-mono tabular-nums text-sidebar-foreground/50 group-data-[collapsible=icon]:hidden">
|
|
{item.badge}
|
|
</span>
|
|
)}
|
|
</SidebarMenuButton>
|
|
</SidebarMenuItem>
|
|
))}
|
|
</SidebarMenu>
|
|
</SidebarGroup>
|
|
))}
|
|
</>
|
|
)
|
|
}
|