| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- "use client"
- import * as React from "react"
- import { Select as SelectPrimitive } from "@base-ui/react/select"
- import { Check, ChevronDown } from "lucide-react"
- import { cn } from "@/lib/utils/client"
- const Select = SelectPrimitive.Root
- const SelectGroup = SelectPrimitive.Group
- const SelectValue = SelectPrimitive.Value
- const SelectTrigger = React.forwardRef<
- HTMLButtonElement,
- React.ComponentPropsWithoutRef<typeof SelectPrimitive.Trigger>
- >(({ className, children, ...props }, ref) => (
- <SelectPrimitive.Trigger
- ref={ref}
- className={cn(
- "flex h-9 w-full items-center justify-between whitespace-nowrap rounded-md border border-input bg-transparent px-3 py-2 text-sm shadow-sm data-[placeholder]:text-muted-foreground focus:outline-none disabled:cursor-not-allowed disabled:opacity-50 [&>span]:line-clamp-1",
- className
- )}
- {...props}
- >
- {children}
- <SelectPrimitive.Icon>
- <ChevronDown className="h-4 w-4 opacity-50" />
- </SelectPrimitive.Icon>
- </SelectPrimitive.Trigger>
- ))
- SelectTrigger.displayName = "SelectTrigger"
- const SelectContent = React.forwardRef<
- HTMLDivElement,
- React.ComponentPropsWithoutRef<typeof SelectPrimitive.Popup>
- >(({ className, children, ...props }, ref) => (
- <SelectPrimitive.Portal>
- <SelectPrimitive.Positioner>
- <SelectPrimitive.Popup
- ref={ref}
- className={cn(
- "relative z-50 max-h-96 min-w-[8rem] overflow-y-auto overflow-x-hidden rounded-md border bg-popover text-popover-foreground shadow-md data-[open]:animate-in data-[closed]:animate-out data-[closed]:fade-out-0 data-[open]:fade-in-0 data-[closed]:zoom-out-95 data-[open]:zoom-in-95",
- className
- )}
- {...props}
- >
- <SelectPrimitive.List className="p-1">
- {children}
- </SelectPrimitive.List>
- </SelectPrimitive.Popup>
- </SelectPrimitive.Positioner>
- </SelectPrimitive.Portal>
- ))
- SelectContent.displayName = "SelectContent"
- const SelectLabel = React.forwardRef<
- HTMLDivElement,
- React.ComponentPropsWithoutRef<typeof SelectPrimitive.GroupLabel>
- >(({ className, ...props }, ref) => (
- <SelectPrimitive.GroupLabel
- ref={ref}
- className={cn("px-2 py-1.5 text-sm font-semibold", className)}
- {...props}
- />
- ))
- SelectLabel.displayName = "SelectLabel"
- const SelectItem = React.forwardRef<
- HTMLDivElement,
- React.ComponentPropsWithoutRef<typeof SelectPrimitive.Item>
- >(({ className, children, ...props }, ref) => (
- <SelectPrimitive.Item
- ref={ref}
- className={cn(
- "relative flex w-full cursor-default select-none items-center rounded-sm py-1.5 pl-2 pr-8 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
- className
- )}
- {...props}
- >
- <span className="absolute right-2 flex h-3.5 w-3.5 items-center justify-center">
- <SelectPrimitive.ItemIndicator>
- <Check className="h-4 w-4" />
- </SelectPrimitive.ItemIndicator>
- </span>
- <SelectPrimitive.ItemText>{children}</SelectPrimitive.ItemText>
- </SelectPrimitive.Item>
- ))
- SelectItem.displayName = "SelectItem"
- const SelectSeparator = React.forwardRef<
- HTMLDivElement,
- React.HTMLAttributes<HTMLDivElement>
- >(({ className, ...props }, ref) => (
- <div
- ref={ref}
- className={cn("-mx-1 my-1 h-px bg-muted", className)}
- {...props}
- />
- ))
- SelectSeparator.displayName = "SelectSeparator"
- export {
- Select,
- SelectGroup,
- SelectValue,
- SelectTrigger,
- SelectContent,
- SelectLabel,
- SelectItem,
- SelectSeparator,
- }
|