201 lines
7.1 KiB
TypeScript
201 lines
7.1 KiB
TypeScript
|
"use client"
|
||
|
|
||
|
import * as React from "react"
|
||
|
import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu"
|
||
|
import { Check, ChevronRight, Circle } from "lucide-react"
|
||
|
|
||
|
import { cn } from "@/lib/utils"
|
||
|
|
||
|
const DropdownMenu = DropdownMenuPrimitive.Root
|
||
|
|
||
|
const DropdownMenuTrigger = DropdownMenuPrimitive.Trigger
|
||
|
|
||
|
const DropdownMenuGroup = DropdownMenuPrimitive.Group
|
||
|
|
||
|
const DropdownMenuPortal = DropdownMenuPrimitive.Portal
|
||
|
|
||
|
const DropdownMenuSub = DropdownMenuPrimitive.Sub
|
||
|
|
||
|
const DropdownMenuRadioGroup = DropdownMenuPrimitive.RadioGroup
|
||
|
|
||
|
const DropdownMenuSubTrigger = React.forwardRef<
|
||
|
React.ElementRef<typeof DropdownMenuPrimitive.SubTrigger>,
|
||
|
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.SubTrigger> & {
|
||
|
inset?: boolean
|
||
|
}
|
||
|
>(({ 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",
|
||
|
className
|
||
|
)}
|
||
|
{...props}
|
||
|
>
|
||
|
{children}
|
||
|
<ChevronRight className="ml-auto h-4 w-4" />
|
||
|
</DropdownMenuPrimitive.SubTrigger>
|
||
|
))
|
||
|
DropdownMenuSubTrigger.displayName =
|
||
|
DropdownMenuPrimitive.SubTrigger.displayName
|
||
|
|
||
|
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",
|
||
|
className
|
||
|
)}
|
||
|
{...props}
|
||
|
/>
|
||
|
))
|
||
|
DropdownMenuSubContent.displayName =
|
||
|
DropdownMenuPrimitive.SubContent.displayName
|
||
|
|
||
|
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",
|
||
|
className
|
||
|
)}
|
||
|
{...props}
|
||
|
/>
|
||
|
</DropdownMenuPrimitive.Portal>
|
||
|
))
|
||
|
DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName
|
||
|
|
||
|
const DropdownMenuItem = React.forwardRef<
|
||
502 Bad GatewayThe server had an error while it was acting as a gateway. You may need to contact the server administrator at webmaster[at]svrjs[dot]org. SVR.JS on git.svrjs.org |