| | "use client"; |
| |
|
| | import * as React from "react"; |
| | import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu"; |
| |
|
| | import { cn } from "@/lib/utils"; |
| | import { CheckIcon, ChevronRightIcon } from "lucide-react"; |
| |
|
| | const DropdownMenu = DropdownMenuPrimitive.Root; |
| |
|
| | const DropdownMenuTrigger = DropdownMenuPrimitive.Trigger; |
| |
|
| | const DropdownMenuContent = React.forwardRef< |
| | React.ElementRef<typeof DropdownMenuPrimitive.Content>, |
| | React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Content> |
| | >(({ className, align = "start", sideOffset = 4, ...props }, ref) => ( |
| | <DropdownMenuPrimitive.Portal> |
| | <DropdownMenuPrimitive.Content |
| | ref={ref} |
| | align={align} |
| | sideOffset={sideOffset} |
| | className={cn( |
| | "z-50 w-48 rounded-md border bg-popover p-2 text-menu-foreground shadow-md outline-none 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 |
| | )} |
| | {...props} |
| | /> |
| | </DropdownMenuPrimitive.Portal> |
| | )); |
| | DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName; |
| |
|
| | const DropdownMenuItem = React.forwardRef< |
| | React.ElementRef<typeof DropdownMenuPrimitive.Item>, |
| | React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Item> & { |
| | icon?: React.ReactNode; |
| | } |
| | >(({ className, children, icon, ...props }, ref) => ( |
| | <DropdownMenuPrimitive.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} |
| | > |
| | {children} |
| | <div className="absolute right-3"> |
| | {icon} |
| | </div> |
| | </DropdownMenuPrimitive.Item> |
| | )); |
| | DropdownMenuItem.displayName = DropdownMenuPrimitive.Item.displayName; |
| |
|
| | const DropdownMenuSub = DropdownMenuPrimitive.Sub; |
| |
|
| | const DropdownMenuSubTrigger = React.forwardRef< |
| | React.ElementRef<typeof DropdownMenuPrimitive.SubTrigger>, |
| | React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.SubTrigger> & { |
| | icon?: React.ReactNode; |
| | } |
| | >(({ className, children, icon, ...props }, ref) => ( |
| | <DropdownMenuPrimitive.SubTrigger |
| | ref={ref} |
| | className={cn( |
| | "flex cursor-default select-none items-center justify-between 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} |
| | > |
| | {children} |
| | <div className="absolute right-3"> |
| | {icon} |
| | </div> |
| | </DropdownMenuPrimitive.SubTrigger> |
| | )); |
| | DropdownMenuSubTrigger.displayName = |
| | DropdownMenuPrimitive.SubTrigger.displayName; |
| |
|
| | const DropdownMenuSubContent = React.forwardRef< |
| | React.ElementRef<typeof DropdownMenuPrimitive.SubContent>, |
| | React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.SubContent> |
| | >(({ className, sideOffset = 0, ...props }, ref) => ( |
| | <DropdownMenuPrimitive.Portal> |
| | <DropdownMenuPrimitive.SubContent |
| | ref={ref} |
| | sideOffset={4} // Reduce the gap between trigger and content |
| | className={cn( |
| | "relative z-50 p-2 min-w-[12rem] overflow-hidden rounded-md border bg-popover text-popover-foreground shadow-md transition-transform duration-100 ease-in-out data-[state=open]:animate-in data-[state=closed]:animate-out", |
| | className |
| | )} |
| | {...props} |
| | /> |
| | </DropdownMenuPrimitive.Portal> |
| | )); |
| | DropdownMenuSubContent.displayName = |
| | DropdownMenuPrimitive.SubContent.displayName; |
| |
|
| |
|
| |
|
| | const DropdownMenuPortal = DropdownMenuPrimitive.Portal; |
| |
|
| |
|
| | const DropdownMenuCheckboxItem = React.forwardRef< |
| | React.ElementRef<typeof DropdownMenuPrimitive.CheckboxItem>, |
| | React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.CheckboxItem> |
| | >(({ className, checked, children, ...props }, ref) => ( |
| | <DropdownMenuPrimitive.CheckboxItem |
| | 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 |
| | )} |
| | checked={checked} |
| | {...props} |
| | > |
| | {children} |
| | <span className="absolute right-2 flex items-center"> |
| | {checked && <CheckIcon size={15} />} |
| | </span> |
| | </DropdownMenuPrimitive.CheckboxItem> |
| | )); |
| | DropdownMenuCheckboxItem.displayName = |
| | DropdownMenuPrimitive.CheckboxItem.displayName; |
| |
|
| | export { |
| | DropdownMenu, |
| | DropdownMenuTrigger, |
| | DropdownMenuContent, |
| | DropdownMenuItem, |
| | DropdownMenuSub, |
| | DropdownMenuSubTrigger, |
| | DropdownMenuSubContent, |
| | DropdownMenuPortal, |
| | DropdownMenuCheckboxItem, |
| | }; |
| |
|