| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- "use client"
- import * as React from "react"
- import { Menu as MenuPrimitive } from "@base-ui/react/menu"
- import { Check, ChevronRight, Circle } from "lucide-react"
- import { cn } from "@/lib/utils/client"
- const DropdownMenu = MenuPrimitive.Root
- const DropdownMenuTrigger = React.forwardRef<
- HTMLButtonElement,
- React.ComponentPropsWithoutRef<typeof MenuPrimitive.Trigger> & { asChild?: boolean }
- >(({ asChild, children, ...props }, ref) => {
- if (asChild) {
- const child = children as React.ReactElement<Record<string, unknown>>
- const isNonButton = child?.type === 'label' || child?.type === 'div' || child?.type === 'span' || child?.type === 'a'
- return <MenuPrimitive.Trigger ref={ref} render={child} nativeButton={!isNonButton} {...props} />
- }
- return <MenuPrimitive.Trigger ref={ref} {...props}>{children}</MenuPrimitive.Trigger>
- })
- DropdownMenuTrigger.displayName = "DropdownMenuTrigger"
- const DropdownMenuGroup = MenuPrimitive.Group
- const DropdownMenuPortal = MenuPrimitive.Portal
- const DropdownMenuSub = MenuPrimitive.SubmenuRoot
- const DropdownMenuRadioGroup = MenuPrimitive.RadioGroup
- const DropdownMenuSubTrigger = React.forwardRef<
- HTMLDivElement,
- React.ComponentPropsWithoutRef<typeof MenuPrimitive.SubmenuTrigger> & {
- inset?: boolean
- }
- >(({ className, inset, children, ...props }, ref) => (
- <MenuPrimitive.SubmenuTrigger
- ref={ref}
- className={cn(
- "flex cursor-default select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent data-[open]:bg-accent [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
- inset && "pl-8",
- className
- )}
- {...props}
- >
- {children}
- <ChevronRight className="ml-auto" />
- </MenuPrimitive.SubmenuTrigger>
- ))
- DropdownMenuSubTrigger.displayName = "DropdownMenuSubTrigger"
- const DropdownMenuSubContent = React.forwardRef<
- HTMLDivElement,
- React.ComponentPropsWithoutRef<typeof MenuPrimitive.Popup>
- >(({ className, ...props }, ref) => (
- <MenuPrimitive.Portal>
- <MenuPrimitive.Positioner>
- <MenuPrimitive.Popup
- ref={ref}
- className={cn(
- "z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-lg 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 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 origin-[--transform-origin]",
- className
- )}
- {...props}
- />
- </MenuPrimitive.Positioner>
- </MenuPrimitive.Portal>
- ))
- DropdownMenuSubContent.displayName = "DropdownMenuSubContent"
- const DropdownMenuContent = React.forwardRef<
- HTMLDivElement,
- React.ComponentPropsWithoutRef<typeof MenuPrimitive.Popup> & {
- sideOffset?: number
- side?: "top" | "bottom" | "left" | "right"
- align?: "start" | "center" | "end"
- }
- >(({ className, sideOffset = 4, side, align, ...props }, ref) => (
- <MenuPrimitive.Portal>
- <MenuPrimitive.Positioner sideOffset={sideOffset} side={side} align={align}>
- <MenuPrimitive.Popup
- ref={ref}
- className={cn(
- "z-50 max-h-[var(--available-height)] min-w-[8rem] overflow-y-auto overflow-x-hidden rounded-md border bg-popover p-1 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 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 origin-[--transform-origin]",
- className
- )}
- {...props}
- />
- </MenuPrimitive.Positioner>
- </MenuPrimitive.Portal>
- ))
- DropdownMenuContent.displayName = "DropdownMenuContent"
- const DropdownMenuItem = React.forwardRef<
- HTMLDivElement,
- React.ComponentPropsWithoutRef<typeof MenuPrimitive.Item> & {
- inset?: boolean
- asChild?: boolean
- }
- >(({ className, inset, asChild, children, ...props }, ref) => {
- if (asChild) {
- return (
- <MenuPrimitive.Item
- ref={ref}
- className={cn(
- "relative flex cursor-pointer select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&>svg]:size-4 [&>svg]:shrink-0",
- inset && "pl-8",
- className
- )}
- render={children as React.ReactElement}
- {...props}
- />
- )
- }
- return (
- <MenuPrimitive.Item
- ref={ref}
- className={cn(
- "relative flex cursor-pointer select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&>svg]:size-4 [&>svg]:shrink-0",
- inset && "pl-8",
- className
- )}
- {...props}
- >{children}</MenuPrimitive.Item>
- )
- })
- DropdownMenuItem.displayName = "DropdownMenuItem"
- const DropdownMenuCheckboxItem = React.forwardRef<
- HTMLDivElement,
- React.ComponentPropsWithoutRef<typeof MenuPrimitive.CheckboxItem>
- >(({ className, children, checked, ...props }, ref) => (
- <MenuPrimitive.CheckboxItem
- ref={ref}
- className={cn(
- "relative flex cursor-pointer select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
- className
- )}
- checked={checked}
- {...props}
- >
- <span className="absolute left-2 flex h-3.5 w-3.5 items-center justify-center">
- <MenuPrimitive.CheckboxItemIndicator>
- <Check className="h-4 w-4" />
- </MenuPrimitive.CheckboxItemIndicator>
- </span>
- {children}
- </MenuPrimitive.CheckboxItem>
- ))
- DropdownMenuCheckboxItem.displayName = "DropdownMenuCheckboxItem"
- const DropdownMenuRadioItem = React.forwardRef<
- HTMLDivElement,
- React.ComponentPropsWithoutRef<typeof MenuPrimitive.RadioItem>
- >(({ className, children, ...props }, ref) => (
- <MenuPrimitive.RadioItem
- ref={ref}
- className={cn(
- "relative flex cursor-pointer select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
- className
- )}
- {...props}
- >
- <span className="absolute left-2 flex h-3.5 w-3.5 items-center justify-center">
- <MenuPrimitive.RadioItemIndicator>
- <Circle className="h-2 w-2 fill-current" />
- </MenuPrimitive.RadioItemIndicator>
- </span>
- {children}
- </MenuPrimitive.RadioItem>
- ))
- DropdownMenuRadioItem.displayName = "DropdownMenuRadioItem"
- const DropdownMenuLabel = React.forwardRef<
- HTMLDivElement,
- React.HTMLAttributes<HTMLDivElement> & {
- inset?: boolean
- }
- >(({ className, inset, ...props }, ref) => (
- <div
- ref={ref}
- className={cn(
- "px-2 py-1.5 text-sm font-semibold",
- inset && "pl-8",
- className
- )}
- {...props}
- />
- ))
- DropdownMenuLabel.displayName = "DropdownMenuLabel"
- const DropdownMenuSeparator = React.forwardRef<
- HTMLDivElement,
- React.HTMLAttributes<HTMLDivElement>
- >(({ className, ...props }, ref) => (
- <div
- ref={ref}
- role="separator"
- className={cn("-mx-1 my-1 h-px bg-muted", className)}
- {...props}
- />
- ))
- DropdownMenuSeparator.displayName = "DropdownMenuSeparator"
- const DropdownMenuShortcut = ({
- className,
- ...props
- }: React.HTMLAttributes<HTMLSpanElement>) => {
- return (
- <span
- className={cn("ml-auto text-xs tracking-widest opacity-60", className)}
- {...props}
- />
- )
- }
- DropdownMenuShortcut.displayName = "DropdownMenuShortcut"
- export {
- DropdownMenu,
- DropdownMenuTrigger,
- DropdownMenuContent,
- DropdownMenuItem,
- DropdownMenuCheckboxItem,
- DropdownMenuRadioItem,
- DropdownMenuLabel,
- DropdownMenuSeparator,
- DropdownMenuShortcut,
- DropdownMenuGroup,
- DropdownMenuPortal,
- DropdownMenuSub,
- DropdownMenuSubContent,
- DropdownMenuSubTrigger,
- DropdownMenuRadioGroup,
- }
|