"use client" import * as React from "react" 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 const SelectTrigger = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, children, disabled, onOpenChange, open, setOpen, ...props }, ref) => { const handleClick = (event: React.MouseEvent) => { event.preventDefault() console.log("SelectTrigger clicked") if (!disabled) { setOpen(!open) } } return ( span]:line-clamp-1", className, )} {...props} onClick={handleClick} > {children} ) }) SelectTrigger.displayName = SelectPrimitive.Trigger.displayName const SelectScrollUpButton = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )) SelectScrollUpButton.displayName = SelectPrimitive.ScrollUpButton.displayName const SelectScrollDownButton = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )) SelectScrollDownButton.displayName = SelectPrimitive.ScrollDownButton.displayName const SelectContent = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, children, position = "popper", style, ...props }, ref) => { const [maxHeight, setMaxHeight] = React.useState(undefined) const contentRef = React.useRef(null) React.useEffect(() => { const updateMaxHeight = () => { if (contentRef.current) { const rect = contentRef.current.getBoundingClientRect() const viewportHeight = window.innerHeight const topSpace = rect.top const bottomSpace = viewportHeight - rect.top // Use the larger of the two spaces, minus padding const availableHeight = Math.max(topSpace, bottomSpace) - 16 // 16px padding setMaxHeight(availableHeight) } } // Update on mount and window resize updateMaxHeight() window.addEventListener("resize", updateMaxHeight) return () => { window.removeEventListener("resize", updateMaxHeight) } }, []) return ( { // Handle both the ref we receive and our local ref if (typeof ref === "function") ref(node) else if (ref) ref.current = node if (contentRef) contentRef.current = node as any }} className={cn( "relative z-50 min-w-[8rem] overflow-hidden rounded-md border border-border bg-popover text-popover-foreground shadow-md 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]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2", className, )} position={position} sideOffset={4} style={{ ...style, position: "absolute", zIndex: 9999, maxHeight: maxHeight ? `${maxHeight}px` : undefined, overflowY: "auto", }} {...props} > {children} ) }) SelectContent.displayName = SelectPrimitive.Content.displayName const SelectLabel = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )) SelectLabel.displayName = SelectPrimitive.Label.displayName const SelectItem = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, children, ...props }, ref) => ( {children} )) SelectItem.displayName = SelectPrimitive.Item.displayName const SelectSeparator = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )) SelectSeparator.displayName = SelectPrimitive.Separator.displayName export { Select, SelectGroup, SelectValue, SelectTrigger, SelectContent, SelectLabel, SelectItem, SelectSeparator, SelectScrollUpButton, SelectScrollDownButton, }