Files
shadcn-ui/apps/www/components/charts-nav.tsx
shadcn 05145e66d3 feat: refactor registry (#6071)
* feat(www): add login blocks

* chore(www): restructure for blocks

* chore: build registry

* chore: clean up chunks

* fix(www): chart categories

* feat(www): big registry refactor

* feat(www): update blocks

* feat: complex blocks

* fix: update schema

* feat: sync new-york and default

* fix: lint

* feat: move charts

* fix(www): code

* fix: src path

* chore: rebuild registry

* fix: screenshot

* fix: set new-york as default
2024-12-14 14:52:55 +04:00

73 lines
1.6 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/ui/scroll-area"
const links = [
{
name: "All Charts",
href: "/charts",
},
{
name: "Area Chart",
href: "/charts#area-chart",
},
{
name: "Bar Chart",
href: "/charts#bar-chart",
},
{
name: "Line Chart",
href: "/charts#line-chart",
},
{
name: "Pie Chart",
href: "/charts#pie-chart",
},
{
name: "Radar Chart",
href: "/charts#radar-chart",
},
{
name: "Radial Chart",
href: "/charts#radial-chart",
},
{
name: "Tooltip",
href: "/charts#tooltip",
},
]
export function ChartsNav({
className,
...props
}: React.ComponentProps<"div">) {
const pathname = usePathname()
return (
<ScrollArea className="max-w-[600px] lg:max-w-none">
<div className={cn("flex items-center", className)} {...props}>
{links.map((example, index) => (
<Link
href={example.href}
key={example.href}
className={cn(
"flex h-7 shrink-0 items-center justify-center rounded-full px-4 text-center text-sm font-medium transition-colors hover:text-primary",
pathname?.startsWith(example.href) ||
(index === 0 && pathname === "/charts")
? "bg-muted text-primary"
: "text-muted-foreground"
)}
>
{example.name}
</Link>
))}
</div>
<ScrollBar orientation="horizontal" className="invisible" />
</ScrollArea>
)
}