mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
65 lines
1.7 KiB
TypeScript
65 lines
1.7 KiB
TypeScript
"use client"
|
|
|
|
import { THEMES } from "@/lib/themes"
|
|
import { cn } from "@/lib/utils"
|
|
import { useThemeConfig } from "@/components/active-theme"
|
|
import { Label } from "@/styles/base-nova/ui/label"
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectGroup,
|
|
SelectItem,
|
|
SelectLabel,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/styles/base-nova/ui/select"
|
|
|
|
import { CopyCodeButton } from "./theme-customizer"
|
|
|
|
export function ThemeSelector({ className }: React.ComponentProps<"div">) {
|
|
const { activeTheme, setActiveTheme } = useThemeConfig()
|
|
|
|
const value = activeTheme === "default" ? "neutral" : activeTheme
|
|
|
|
const items = THEMES.map((theme) => ({
|
|
label: theme.label,
|
|
value: theme.name,
|
|
}))
|
|
|
|
return (
|
|
<div className={cn("flex items-center gap-2", className)}>
|
|
<Label htmlFor="theme-selector" className="sr-only">
|
|
Theme
|
|
</Label>
|
|
<Select
|
|
items={items}
|
|
value={value}
|
|
onValueChange={(value) => value && setActiveTheme(value)}
|
|
>
|
|
<SelectTrigger id="theme-selector" className="w-36">
|
|
<SelectValue placeholder="Select a theme" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectGroup>
|
|
<SelectLabel>Theme</SelectLabel>
|
|
{items.map((item) => (
|
|
<SelectItem
|
|
key={item.value}
|
|
value={item.value}
|
|
className="data-[state=checked]:opacity-50"
|
|
>
|
|
{item.label}
|
|
</SelectItem>
|
|
))}
|
|
</SelectGroup>
|
|
</SelectContent>
|
|
</Select>
|
|
<CopyCodeButton
|
|
variant="secondary"
|
|
size="icon-sm"
|
|
className="rounded-lg border bg-transparent"
|
|
/>
|
|
</div>
|
|
)
|
|
}
|