62 lines
1.9 KiB
TypeScript
62 lines
1.9 KiB
TypeScript
|
|
"use client";
|
||
|
|
|
||
|
|
import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
|
||
|
|
import * as React from "react";
|
||
|
|
import { cn } from "@/lib/utils";
|
||
|
|
|
||
|
|
const DropdownMenu = DropdownMenuPrimitive.Root;
|
||
|
|
const DropdownMenuTrigger = DropdownMenuPrimitive.Trigger;
|
||
|
|
|
||
|
|
const DropdownMenuContent = React.forwardRef<
|
||
|
|
React.ElementRef<typeof DropdownMenuPrimitive.Content>,
|
||
|
|
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Content>
|
||
|
|
>(({ className, sideOffset = 6, ...props }, ref) => (
|
||
|
|
<DropdownMenuPrimitive.Portal>
|
||
|
|
<DropdownMenuPrimitive.Content
|
||
|
|
ref={ref}
|
||
|
|
sideOffset={sideOffset}
|
||
|
|
className={cn(
|
||
|
|
"pixel-panel z-50 min-w-40 p-1 text-popover-foreground",
|
||
|
|
className
|
||
|
|
)}
|
||
|
|
{...props}
|
||
|
|
/>
|
||
|
|
</DropdownMenuPrimitive.Portal>
|
||
|
|
));
|
||
|
|
DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName;
|
||
|
|
|
||
|
|
const DropdownMenuItem = React.forwardRef<
|
||
|
|
React.ElementRef<typeof DropdownMenuPrimitive.Item>,
|
||
|
|
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Item>
|
||
|
|
>(({ className, ...props }, ref) => (
|
||
|
|
<DropdownMenuPrimitive.Item
|
||
|
|
ref={ref}
|
||
|
|
className={cn(
|
||
|
|
"relative flex cursor-pointer select-none items-center rounded-md px-2 py-2 text-sm outline-none transition-colors hover:bg-secondary focus:bg-secondary",
|
||
|
|
className
|
||
|
|
)}
|
||
|
|
{...props}
|
||
|
|
/>
|
||
|
|
));
|
||
|
|
DropdownMenuItem.displayName = DropdownMenuPrimitive.Item.displayName;
|
||
|
|
|
||
|
|
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-border", className)}
|
||
|
|
{...props}
|
||
|
|
/>
|
||
|
|
));
|
||
|
|
DropdownMenuSeparator.displayName = DropdownMenuPrimitive.Separator.displayName;
|
||
|
|
|
||
|
|
export {
|
||
|
|
DropdownMenu,
|
||
|
|
DropdownMenuTrigger,
|
||
|
|
DropdownMenuContent,
|
||
|
|
DropdownMenuItem,
|
||
|
|
DropdownMenuSeparator,
|
||
|
|
};
|