mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 20:37:44 +00:00
224 lines
7.0 KiB
TypeScript
224 lines
7.0 KiB
TypeScript
"use client";
|
|
|
|
import * as React from "react";
|
|
import * as ContextMenuPrimitive from "@radix-ui/react-context-menu";
|
|
import {
|
|
CheckIcon,
|
|
ChevronRightIcon,
|
|
DotFilledIcon,
|
|
} from "@radix-ui/react-icons";
|
|
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const ContextMenu = ContextMenuPrimitive.Root;
|
|
|
|
const ContextMenuTrigger = ContextMenuPrimitive.Trigger;
|
|
|
|
const ContextMenuGroup = ContextMenuPrimitive.Group;
|
|
|
|
const ContextMenuPortal = ContextMenuPrimitive.Portal;
|
|
|
|
const ContextMenuSub = ContextMenuPrimitive.Sub;
|
|
|
|
const ContextMenuRadioGroup = ContextMenuPrimitive.RadioGroup;
|
|
|
|
const ContextMenuSubTrigger = (
|
|
{
|
|
ref,
|
|
className,
|
|
inset,
|
|
children,
|
|
...props
|
|
}
|
|
) => (<ContextMenuPrimitive.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 focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground",
|
|
inset && "pl-8",
|
|
className,
|
|
)}
|
|
{...props}
|
|
>
|
|
{children}
|
|
<ChevronRightIcon className="ml-auto h-4 w-4" />
|
|
</ContextMenuPrimitive.SubTrigger>);
|
|
ContextMenuSubTrigger.displayName = ContextMenuPrimitive.SubTrigger.displayName;
|
|
|
|
const ContextMenuSubContent = (
|
|
{
|
|
ref,
|
|
className,
|
|
...props
|
|
}: React.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.SubContent> & {
|
|
ref: React.RefObject<React.ElementRef<typeof ContextMenuPrimitive.SubContent>>;
|
|
}
|
|
) => (<ContextMenuPrimitive.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}
|
|
/>);
|
|
ContextMenuSubContent.displayName = ContextMenuPrimitive.SubContent.displayName;
|
|
|
|
const ContextMenuContent = (
|
|
{
|
|
ref,
|
|
className,
|
|
...props
|
|
}: React.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Content> & {
|
|
ref: React.RefObject<React.ElementRef<typeof ContextMenuPrimitive.Content>>;
|
|
}
|
|
) => (<ContextMenuPrimitive.Portal>
|
|
<ContextMenuPrimitive.Content
|
|
ref={ref}
|
|
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}
|
|
/>
|
|
</ContextMenuPrimitive.Portal>);
|
|
ContextMenuContent.displayName = ContextMenuPrimitive.Content.displayName;
|
|
|
|
const ContextMenuItem = (
|
|
{
|
|
ref,
|
|
className,
|
|
inset,
|
|
...props
|
|
}
|
|
) => (<ContextMenuPrimitive.Item
|
|
ref={ref}
|
|
className={cn(
|
|
"relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
inset && "pl-8",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>);
|
|
ContextMenuItem.displayName = ContextMenuPrimitive.Item.displayName;
|
|
|
|
const ContextMenuCheckboxItem = (
|
|
{
|
|
ref,
|
|
className,
|
|
children,
|
|
checked,
|
|
...props
|
|
}: React.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.CheckboxItem> & {
|
|
ref: React.RefObject<React.ElementRef<typeof ContextMenuPrimitive.CheckboxItem>>;
|
|
}
|
|
) => (<ContextMenuPrimitive.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 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">
|
|
<ContextMenuPrimitive.ItemIndicator>
|
|
<CheckIcon className="h-4 w-4" />
|
|
</ContextMenuPrimitive.ItemIndicator>
|
|
</span>
|
|
{children}
|
|
</ContextMenuPrimitive.CheckboxItem>);
|
|
ContextMenuCheckboxItem.displayName =
|
|
ContextMenuPrimitive.CheckboxItem.displayName;
|
|
|
|
const ContextMenuRadioItem = (
|
|
{
|
|
ref,
|
|
className,
|
|
children,
|
|
...props
|
|
}: React.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.RadioItem> & {
|
|
ref: React.RefObject<React.ElementRef<typeof ContextMenuPrimitive.RadioItem>>;
|
|
}
|
|
) => (<ContextMenuPrimitive.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 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">
|
|
<ContextMenuPrimitive.ItemIndicator>
|
|
<DotFilledIcon className="h-4 w-4 fill-current" />
|
|
</ContextMenuPrimitive.ItemIndicator>
|
|
</span>
|
|
{children}
|
|
</ContextMenuPrimitive.RadioItem>);
|
|
ContextMenuRadioItem.displayName = ContextMenuPrimitive.RadioItem.displayName;
|
|
|
|
const ContextMenuLabel = (
|
|
{
|
|
ref,
|
|
className,
|
|
inset,
|
|
...props
|
|
}
|
|
) => (<ContextMenuPrimitive.Label
|
|
ref={ref}
|
|
className={cn(
|
|
"px-2 py-1.5 text-sm font-semibold text-foreground",
|
|
inset && "pl-8",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>);
|
|
ContextMenuLabel.displayName = ContextMenuPrimitive.Label.displayName;
|
|
|
|
const ContextMenuSeparator = (
|
|
{
|
|
ref,
|
|
className,
|
|
...props
|
|
}: React.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Separator> & {
|
|
ref: React.RefObject<React.ElementRef<typeof ContextMenuPrimitive.Separator>>;
|
|
}
|
|
) => (<ContextMenuPrimitive.Separator
|
|
ref={ref}
|
|
className={cn("-mx-1 my-1 h-px bg-border", className)}
|
|
{...props}
|
|
/>);
|
|
ContextMenuSeparator.displayName = ContextMenuPrimitive.Separator.displayName;
|
|
|
|
const ContextMenuShortcut = ({
|
|
className,
|
|
...props
|
|
}: React.HTMLAttributes<HTMLSpanElement>) => {
|
|
return (
|
|
<span
|
|
className={cn(
|
|
"ml-auto text-xs tracking-widest text-muted-foreground",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
};
|
|
ContextMenuShortcut.displayName = "ContextMenuShortcut";
|
|
|
|
export {
|
|
ContextMenu,
|
|
ContextMenuTrigger,
|
|
ContextMenuContent,
|
|
ContextMenuItem,
|
|
ContextMenuCheckboxItem,
|
|
ContextMenuRadioItem,
|
|
ContextMenuLabel,
|
|
ContextMenuSeparator,
|
|
ContextMenuShortcut,
|
|
ContextMenuGroup,
|
|
ContextMenuPortal,
|
|
ContextMenuSub,
|
|
ContextMenuSubContent,
|
|
ContextMenuSubTrigger,
|
|
ContextMenuRadioGroup,
|
|
};
|