mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
95 lines
2.5 KiB
TypeScript
95 lines
2.5 KiB
TypeScript
"use client"
|
|
|
|
import Link from "next/link"
|
|
import { usePathname } from "next/navigation"
|
|
|
|
import { cn } from "@/lib/utils"
|
|
import { ScrollArea, ScrollBar } from "@/registry/new-york-v4/ui/scroll-area"
|
|
|
|
const examples = [
|
|
{
|
|
name: "Dashboard",
|
|
href: "/examples/dashboard",
|
|
code: "https://github.com/shadcn/ui/tree/main/apps/v4/app/(app)/examples/dashboard",
|
|
hidden: false,
|
|
},
|
|
{
|
|
name: "Tasks",
|
|
href: "/examples/tasks",
|
|
code: "https://github.com/shadcn/ui/tree/main/apps/v4/app/(app)/examples/tasks",
|
|
hidden: false,
|
|
},
|
|
{
|
|
name: "Playground",
|
|
href: "/examples/playground",
|
|
code: "https://github.com/shadcn/ui/tree/main/apps/v4/app/(app)/examples/playground",
|
|
hidden: false,
|
|
},
|
|
{
|
|
name: "Authentication",
|
|
href: "/examples/authentication",
|
|
code: "https://github.com/shadcn/ui/tree/main/apps/v4/app/(app)/examples/authentication",
|
|
hidden: false,
|
|
},
|
|
{
|
|
name: "RTL",
|
|
href: "/examples/rtl",
|
|
code: "https://github.com/shadcn/ui/tree/main/apps/v4/app/(app)/examples/rtl",
|
|
hidden: false,
|
|
},
|
|
]
|
|
|
|
export function ExamplesNav({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"div">) {
|
|
const pathname = usePathname()
|
|
|
|
return (
|
|
<div className={cn("flex items-center", className)} {...props}>
|
|
<ScrollArea className="max-w-[96%] md:max-w-[600px] lg:max-w-none">
|
|
<div className="flex items-center">
|
|
<ExampleLink
|
|
example={{ name: "Examples", href: "/", code: "", hidden: false }}
|
|
isActive={pathname === "/"}
|
|
/>
|
|
{examples.map((example) => (
|
|
<ExampleLink
|
|
key={example.href}
|
|
example={example}
|
|
isActive={pathname?.startsWith(example.href) ?? false}
|
|
/>
|
|
))}
|
|
</div>
|
|
<ScrollBar orientation="horizontal" className="invisible" />
|
|
</ScrollArea>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function ExampleLink({
|
|
example,
|
|
isActive,
|
|
}: {
|
|
example: (typeof examples)[number]
|
|
isActive: boolean
|
|
}) {
|
|
if (example.hidden) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<Link
|
|
href={example.href}
|
|
key={example.href}
|
|
className="flex h-7 items-center justify-center gap-2 px-4 text-center text-base font-medium text-muted-foreground transition-colors hover:text-primary data-[active=true]:text-primary"
|
|
data-active={isActive}
|
|
>
|
|
{example.name}
|
|
{example.name === "RTL" && (
|
|
<span className="flex size-2 rounded-full bg-blue-500" title="New" />
|
|
)}
|
|
</Link>
|
|
)
|
|
}
|