2026-05-03 19:51:57 -05:00
|
|
|
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
|
|
|
import { Check, ChevronDown, ChevronUp } from 'lucide-react';
|
|
|
|
|
import { cn } from '@/lib/utils';
|
|
|
|
|
|
|
|
|
|
const Select = SelectPrimitive.Root;
|
|
|
|
|
const SelectGroup = SelectPrimitive.Group;
|
|
|
|
|
const SelectValue = SelectPrimitive.Value;
|
|
|
|
|
|
2026-06-07 14:29:09 -05:00
|
|
|
function SelectTrigger({ className, children, ref, ...props }) {
|
|
|
|
|
return (
|
|
|
|
|
<SelectPrimitive.Trigger
|
2026-05-03 19:51:57 -05:00
|
|
|
ref={ref}
|
|
|
|
|
className={cn(
|
2026-06-07 14:29:09 -05:00
|
|
|
'flex h-9 w-full items-center justify-between whitespace-nowrap rounded-lg border border-input bg-card/70 px-3 py-2 text-sm font-medium text-foreground shadow-sm shadow-black/5 transition-all placeholder:text-muted-foreground/80 focus:outline-none focus:ring-[3px] focus:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 [&>span]:line-clamp-1',
|
2026-05-03 19:51:57 -05:00
|
|
|
className
|
|
|
|
|
)}
|
2026-06-07 14:29:09 -05:00
|
|
|
aria-haspopup="listbox"
|
|
|
|
|
aria-expanded={false}
|
|
|
|
|
{...props}
|
|
|
|
|
>
|
|
|
|
|
{children}
|
|
|
|
|
<SelectPrimitive.Icon asChild>
|
|
|
|
|
<ChevronDown className="h-4 w-4 text-muted-foreground" />
|
|
|
|
|
</SelectPrimitive.Icon>
|
|
|
|
|
</SelectPrimitive.Trigger>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function SelectScrollUpButton({ className, ref, ...props }) {
|
|
|
|
|
return (
|
|
|
|
|
<SelectPrimitive.ScrollUpButton
|
|
|
|
|
ref={ref}
|
|
|
|
|
className={cn('flex cursor-default items-center justify-center py-1', className)}
|
|
|
|
|
{...props}
|
|
|
|
|
>
|
|
|
|
|
<ChevronUp className="h-4 w-4" />
|
|
|
|
|
</SelectPrimitive.ScrollUpButton>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function SelectScrollDownButton({ className, ref, ...props }) {
|
|
|
|
|
return (
|
|
|
|
|
<SelectPrimitive.ScrollDownButton
|
|
|
|
|
ref={ref}
|
|
|
|
|
className={cn('flex cursor-default items-center justify-center py-1', className)}
|
2026-05-03 19:51:57 -05:00
|
|
|
{...props}
|
|
|
|
|
>
|
2026-06-07 14:29:09 -05:00
|
|
|
<ChevronDown className="h-4 w-4" />
|
|
|
|
|
</SelectPrimitive.ScrollDownButton>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function SelectContent({ className, children, position = 'popper', ref, ...props }) {
|
|
|
|
|
return (
|
|
|
|
|
<SelectPrimitive.Portal>
|
|
|
|
|
<SelectPrimitive.Content
|
|
|
|
|
ref={ref}
|
2026-05-03 19:51:57 -05:00
|
|
|
className={cn(
|
2026-06-07 14:29:09 -05:00
|
|
|
'relative z-50 max-h-96 min-w-[8rem] overflow-hidden rounded-xl border border-border/80 bg-popover/95 text-popover-foreground shadow-xl shadow-black/25 backdrop-blur-sm data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1',
|
2026-05-03 19:51:57 -05:00
|
|
|
position === 'popper' &&
|
2026-06-07 14:29:09 -05:00
|
|
|
'data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1',
|
|
|
|
|
className
|
2026-05-03 19:51:57 -05:00
|
|
|
)}
|
2026-06-07 14:29:09 -05:00
|
|
|
role="listbox"
|
|
|
|
|
aria-orientation="vertical"
|
|
|
|
|
position={position}
|
|
|
|
|
{...props}
|
2026-05-03 19:51:57 -05:00
|
|
|
>
|
2026-06-07 14:29:09 -05:00
|
|
|
<SelectScrollUpButton />
|
|
|
|
|
<SelectPrimitive.Viewport
|
|
|
|
|
className={cn(
|
|
|
|
|
'p-1',
|
|
|
|
|
position === 'popper' &&
|
|
|
|
|
'h-[var(--radix-select-trigger-height)] w-full min-w-[var(--radix-select-trigger-width)]'
|
|
|
|
|
)}
|
|
|
|
|
>
|
|
|
|
|
{children}
|
|
|
|
|
</SelectPrimitive.Viewport>
|
|
|
|
|
<SelectScrollDownButton />
|
|
|
|
|
</SelectPrimitive.Content>
|
|
|
|
|
</SelectPrimitive.Portal>
|
|
|
|
|
);
|
|
|
|
|
}
|
2026-05-03 19:51:57 -05:00
|
|
|
|
2026-06-07 14:29:09 -05:00
|
|
|
function SelectLabel({ className, ref, ...props }) {
|
|
|
|
|
return (
|
|
|
|
|
<SelectPrimitive.Label
|
|
|
|
|
ref={ref}
|
|
|
|
|
className={cn('px-2 py-1.5 text-sm font-semibold', className)}
|
|
|
|
|
{...props}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
}
|
2026-05-03 19:51:57 -05:00
|
|
|
|
2026-06-07 14:29:09 -05:00
|
|
|
function SelectItem({ className, children, ref, ...props }) {
|
|
|
|
|
return (
|
|
|
|
|
<SelectPrimitive.Item
|
|
|
|
|
ref={ref}
|
|
|
|
|
className={cn(
|
|
|
|
|
'relative flex w-full cursor-pointer select-none items-center rounded-lg py-1.5 pl-2 pr-8 text-sm font-medium outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:cursor-not-allowed data-[disabled]:opacity-50',
|
|
|
|
|
className
|
|
|
|
|
)}
|
|
|
|
|
role="option"
|
|
|
|
|
{...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>
|
|
|
|
|
);
|
|
|
|
|
}
|
2026-05-03 19:51:57 -05:00
|
|
|
|
2026-06-07 14:29:09 -05:00
|
|
|
function SelectSeparator({ className, ref, ...props }) {
|
|
|
|
|
return (
|
|
|
|
|
<SelectPrimitive.Separator
|
|
|
|
|
ref={ref}
|
|
|
|
|
className={cn('-mx-1 my-1 h-px bg-muted', className)}
|
|
|
|
|
role="separator"
|
|
|
|
|
{...props}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
}
|
2026-05-03 19:51:57 -05:00
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
Select,
|
|
|
|
|
SelectGroup,
|
|
|
|
|
SelectValue,
|
|
|
|
|
SelectTrigger,
|
|
|
|
|
SelectContent,
|
|
|
|
|
SelectLabel,
|
|
|
|
|
SelectItem,
|
|
|
|
|
SelectSeparator,
|
|
|
|
|
SelectScrollUpButton,
|
|
|
|
|
SelectScrollDownButton,
|
|
|
|
|
};
|