nextjs-tailwindcss-headless.../components/ui/dropdown-menu.tsx

199 lines
7.2 KiB
TypeScript
Raw Normal View History

2023-09-15 11:16:38 +08:00
import * as React from "react";
import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
import { Check, ChevronRight, Circle } from "lucide-react";
2023-09-14 12:38:00 +08:00
2023-09-15 11:16:38 +08:00
import { cn } from "@/lib/utils";
2023-09-14 12:38:00 +08:00
2023-09-15 11:16:38 +08:00
const DropdownMenu = DropdownMenuPrimitive.Root;
2023-09-14 12:38:00 +08:00
2023-09-15 11:16:38 +08:00
const DropdownMenuTrigger = DropdownMenuPrimitive.Trigger;
2023-09-14 12:38:00 +08:00
2023-09-15 11:16:38 +08:00
const DropdownMenuGroup = DropdownMenuPrimitive.Group;
2023-09-14 12:38:00 +08:00
2023-09-15 11:16:38 +08:00
const DropdownMenuPortal = DropdownMenuPrimitive.Portal;
2023-09-14 12:38:00 +08:00
2023-09-15 11:16:38 +08:00
const DropdownMenuSub = DropdownMenuPrimitive.Sub;
2023-09-14 12:38:00 +08:00
2023-09-15 11:16:38 +08:00
const DropdownMenuRadioGroup = DropdownMenuPrimitive.RadioGroup;
2023-09-14 12:38:00 +08:00
const DropdownMenuSubTrigger = React.forwardRef<
React.ElementRef<typeof DropdownMenuPrimitive.SubTrigger>,
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.SubTrigger> & {
2023-09-15 11:16:38 +08:00
inset?: boolean;
2023-09-14 12:38:00 +08:00
}
>(({ className, inset, children, ...props }, ref) => (
<DropdownMenuPrimitive.SubTrigger
ref={ref}
className={cn(
"flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent data-[state=open]:bg-accent",
inset && "pl-8",
2023-09-15 11:16:38 +08:00
className,
2023-09-14 12:38:00 +08:00
)}
{...props}
>
{children}
<ChevronRight className="ml-auto h-4 w-4" />
</DropdownMenuPrimitive.SubTrigger>
2023-09-15 11:16:38 +08:00
));
2023-09-14 12:38:00 +08:00
DropdownMenuSubTrigger.displayName =
2023-09-15 11:16:38 +08:00
DropdownMenuPrimitive.SubTrigger.displayName;
2023-09-14 12:38:00 +08:00
const DropdownMenuSubContent = React.forwardRef<
React.ElementRef<typeof DropdownMenuPrimitive.SubContent>,
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.SubContent>
>(({ className, ...props }, ref) => (
<DropdownMenuPrimitive.SubContent
ref={ref}
className={cn(
"z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-lg 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",
2023-09-15 11:16:38 +08:00
className,
2023-09-14 12:38:00 +08:00
)}
{...props}
/>
2023-09-15 11:16:38 +08:00
));
2023-09-14 12:38:00 +08:00
DropdownMenuSubContent.displayName =
2023-09-15 11:16:38 +08:00
DropdownMenuPrimitive.SubContent.displayName;
2023-09-14 12:38:00 +08:00
const DropdownMenuContent = React.forwardRef<
React.ElementRef<typeof DropdownMenuPrimitive.Content>,
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Content>
>(({ className, sideOffset = 4, ...props }, ref) => (
<DropdownMenuPrimitive.Portal>
<DropdownMenuPrimitive.Content
ref={ref}
sideOffset={sideOffset}
className={cn(
"z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 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",
2023-09-15 11:16:38 +08:00
className,
2023-09-14 12:38:00 +08:00
)}
{...props}
/>
</DropdownMenuPrimitive.Portal>
2023-09-15 11:16:38 +08:00
));
DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName;
2023-09-14 12:38:00 +08:00
const DropdownMenuItem = React.forwardRef<
React.ElementRef<typeof DropdownMenuPrimitive.Item>,
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Item> & {
2023-09-15 11:16:38 +08:00
inset?: boolean;
2023-09-14 12:38:00 +08:00
}
>(({ className, inset, ...props }, ref) => (
<DropdownMenuPrimitive.Item
ref={ref}
className={cn(
"relative flex cursor-default select-none items-center 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",
inset && "pl-8",
2023-09-15 11:16:38 +08:00
className,
2023-09-14 12:38:00 +08:00
)}
{...props}
/>
2023-09-15 11:16:38 +08:00
));
DropdownMenuItem.displayName = DropdownMenuPrimitive.Item.displayName;
2023-09-14 12:38:00 +08:00
const DropdownMenuCheckboxItem = React.forwardRef<
React.ElementRef<typeof DropdownMenuPrimitive.CheckboxItem>,
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.CheckboxItem>
>(({ className, children, checked, ...props }, ref) => (
<DropdownMenuPrimitive.CheckboxItem
ref={ref}
className={cn(
"relative flex cursor-default 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",
2023-09-15 11:16:38 +08:00
className,
2023-09-14 12:38:00 +08:00
)}
checked={checked}
{...props}
>
<span className="absolute left-2 flex h-3.5 w-3.5 items-center justify-center">
<DropdownMenuPrimitive.ItemIndicator>
<Check className="h-4 w-4" />
</DropdownMenuPrimitive.ItemIndicator>
</span>
{children}
</DropdownMenuPrimitive.CheckboxItem>
2023-09-15 11:16:38 +08:00
));
2023-09-14 12:38:00 +08:00
DropdownMenuCheckboxItem.displayName =
2023-09-15 11:16:38 +08:00
DropdownMenuPrimitive.CheckboxItem.displayName;
2023-09-14 12:38:00 +08:00
const DropdownMenuRadioItem = React.forwardRef<
React.ElementRef<typeof DropdownMenuPrimitive.RadioItem>,
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.RadioItem>
>(({ className, children, ...props }, ref) => (
<DropdownMenuPrimitive.RadioItem
ref={ref}
className={cn(
"relative flex cursor-default 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",
2023-09-15 11:16:38 +08:00
className,
2023-09-14 12:38:00 +08:00
)}
{...props}
>
<span className="absolute left-2 flex h-3.5 w-3.5 items-center justify-center">
<DropdownMenuPrimitive.ItemIndicator>
<Circle className="h-2 w-2 fill-current" />
</DropdownMenuPrimitive.ItemIndicator>
</span>
{children}
</DropdownMenuPrimitive.RadioItem>
2023-09-15 11:16:38 +08:00
));
DropdownMenuRadioItem.displayName = DropdownMenuPrimitive.RadioItem.displayName;
2023-09-14 12:38:00 +08:00
const DropdownMenuLabel = React.forwardRef<
React.ElementRef<typeof DropdownMenuPrimitive.Label>,
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Label> & {
2023-09-15 11:16:38 +08:00
inset?: boolean;
2023-09-14 12:38:00 +08:00
}
>(({ className, inset, ...props }, ref) => (
<DropdownMenuPrimitive.Label
ref={ref}
className={cn(
"px-2 py-1.5 text-sm font-semibold",
inset && "pl-8",
2023-09-15 11:16:38 +08:00
className,
2023-09-14 12:38:00 +08:00
)}
{...props}
/>
2023-09-15 11:16:38 +08:00
));
DropdownMenuLabel.displayName = DropdownMenuPrimitive.Label.displayName;
2023-09-14 12:38:00 +08:00
const DropdownMenuSeparator = React.forwardRef<
React.ElementRef<typeof DropdownMenuPrimitive.Separator>,
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Separator>
>(({ className, ...props }, ref) => (
<DropdownMenuPrimitive.Separator
ref={ref}
className={cn("-mx-1 my-1 h-px bg-muted", className)}
{...props}
/>
2023-09-15 11:16:38 +08:00
));
DropdownMenuSeparator.displayName = DropdownMenuPrimitive.Separator.displayName;
2023-09-14 12:38:00 +08:00
const DropdownMenuShortcut = ({
className,
...props
}: React.HTMLAttributes<HTMLSpanElement>) => {
return (
<span
className={cn("ml-auto text-xs tracking-widest opacity-60", className)}
{...props}
/>
2023-09-15 11:16:38 +08:00
);
};
DropdownMenuShortcut.displayName = "DropdownMenuShortcut";
2023-09-14 12:38:00 +08:00
export {
DropdownMenu,
DropdownMenuTrigger,
DropdownMenuContent,
DropdownMenuItem,
DropdownMenuCheckboxItem,
DropdownMenuRadioItem,
DropdownMenuLabel,
DropdownMenuSeparator,
DropdownMenuShortcut,
DropdownMenuGroup,
DropdownMenuPortal,
DropdownMenuSub,
DropdownMenuSubContent,
DropdownMenuSubTrigger,
DropdownMenuRadioGroup,
2023-09-15 11:16:38 +08:00
};