mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
72 lines
1.9 KiB
TypeScript
72 lines
1.9 KiB
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
import { IconBrightness, type Icon } from "@tabler/icons-react"
|
|
import { useTheme } from "next-themes"
|
|
|
|
import {
|
|
SidebarGroup,
|
|
SidebarGroupContent,
|
|
SidebarMenu,
|
|
SidebarMenuButton,
|
|
SidebarMenuItem,
|
|
} from "@/registry/new-york-v4/ui/sidebar"
|
|
import { Skeleton } from "@/registry/new-york-v4/ui/skeleton"
|
|
import { Switch } from "@/registry/new-york-v4/ui/switch"
|
|
|
|
export function NavSecondary({
|
|
items,
|
|
...props
|
|
}: {
|
|
items: {
|
|
title: string
|
|
url: string
|
|
icon: Icon
|
|
}[]
|
|
} & React.ComponentPropsWithoutRef<typeof SidebarGroup>) {
|
|
const { resolvedTheme, setTheme } = useTheme()
|
|
const [mounted, setMounted] = React.useState(false)
|
|
|
|
React.useEffect(() => {
|
|
setMounted(true)
|
|
}, [])
|
|
|
|
return (
|
|
<SidebarGroup {...props}>
|
|
<SidebarGroupContent>
|
|
<SidebarMenu>
|
|
{items.map((item) => (
|
|
<SidebarMenuItem key={item.title}>
|
|
<SidebarMenuButton asChild>
|
|
<a href={item.url}>
|
|
<item.icon />
|
|
<span>{item.title}</span>
|
|
</a>
|
|
</SidebarMenuButton>
|
|
</SidebarMenuItem>
|
|
))}
|
|
<SidebarMenu className="group-data-[collapsible=icon]:hidden">
|
|
<SidebarMenuButton asChild>
|
|
<label>
|
|
<IconBrightness />
|
|
<span>Dark Mode</span>
|
|
{mounted ? (
|
|
<Switch
|
|
className="ml-auto"
|
|
checked={resolvedTheme !== "light"}
|
|
onCheckedChange={() =>
|
|
setTheme(resolvedTheme === "dark" ? "light" : "dark")
|
|
}
|
|
/>
|
|
) : (
|
|
<Skeleton className="ml-auto h-4 w-8 rounded-full" />
|
|
)}
|
|
</label>
|
|
</SidebarMenuButton>
|
|
</SidebarMenu>
|
|
</SidebarMenu>
|
|
</SidebarGroupContent>
|
|
</SidebarGroup>
|
|
)
|
|
}
|