mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
78 lines
2.1 KiB
TypeScript
78 lines
2.1 KiB
TypeScript
"use client"
|
|
|
|
import Link from "next/link"
|
|
import { usePathname } from "next/navigation"
|
|
import { SidebarNavItem } from "types/nav"
|
|
|
|
import { cn } from "@/lib/utils"
|
|
|
|
export interface DocsSidebarNavProps {
|
|
items: SidebarNavItem[]
|
|
}
|
|
|
|
export function DocsSidebarNav({ items }: DocsSidebarNavProps) {
|
|
const pathname = usePathname()
|
|
|
|
return items.length ? (
|
|
<div className="w-full">
|
|
{items.map((item, index) => (
|
|
<div key={index} className={cn("pb-6")}>
|
|
<h4 className="mb-1 rounded-md px-2 py-1 text-sm font-semibold">
|
|
{item.title}
|
|
</h4>
|
|
{item?.items?.length && (
|
|
<DocsSidebarNavItems items={item.items} pathname={pathname} />
|
|
)}
|
|
</div>
|
|
))}
|
|
</div>
|
|
) : null
|
|
}
|
|
|
|
interface DocsSidebarNavItemsProps {
|
|
items: SidebarNavItem[]
|
|
pathname: string | null
|
|
}
|
|
|
|
export function DocsSidebarNavItems({
|
|
items,
|
|
pathname,
|
|
}: DocsSidebarNavItemsProps) {
|
|
return items?.length ? (
|
|
<div className="grid grid-flow-row auto-rows-max text-sm">
|
|
{items.map((item, index) =>
|
|
item.href ? (
|
|
<Link
|
|
key={index}
|
|
href={item.href}
|
|
className={cn(
|
|
"group flex w-full items-center rounded-md border border-transparent px-2 py-1.5 hover:underline",
|
|
item.disabled && "cursor-not-allowed opacity-60",
|
|
{
|
|
"font-medium bg-accent border-border text-accent-foreground":
|
|
pathname === item.href,
|
|
}
|
|
)}
|
|
target={item.external ? "_blank" : ""}
|
|
rel={item.external ? "noreferrer" : ""}
|
|
>
|
|
{item.title}
|
|
{item.label && (
|
|
<span className="ml-2 rounded-md bg-teal-100 px-1.5 py-0.5 text-xs no-underline group-hover:no-underline dark:bg-teal-600">
|
|
{item.label}
|
|
</span>
|
|
)}
|
|
</Link>
|
|
) : (
|
|
<span
|
|
key={index}
|
|
className="flex w-full cursor-not-allowed items-center rounded-md p-2 text-muted-foreground hover:underline"
|
|
>
|
|
{item.title}
|
|
</span>
|
|
)
|
|
)}
|
|
</div>
|
|
) : null
|
|
}
|