- 重构 Button、Card、Badge、Input、Textarea 等基础组件 - 新增 Accordion、Alert、Dialog、Dropdown、Form 等 shadcn/ui 组件 - 新增 AnimatedCounter、StatsShowcase、MetricCard 等数据展示组件 - 新增 ScrollReveal 滚动动画组件 - 重构 Toast 通知系统与 Tooltip 提示组件 - 更新设计令牌系统,对齐新品牌视觉
202 lines
7.3 KiB
TypeScript
202 lines
7.3 KiB
TypeScript
'use client';
|
|
|
|
import * as React from 'react';
|
|
import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
|
|
import { Check, ChevronRight, Circle } from 'lucide-react';
|
|
import { cn } from '@/lib/utils';
|
|
|
|
/**
|
|
* 标准 shadcn/ui ContextMenu 组件
|
|
* 基于 @radix-ui/react-context-menu
|
|
*/
|
|
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 = React.forwardRef<
|
|
React.ElementRef<typeof ContextMenuPrimitive.SubTrigger>,
|
|
React.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.SubTrigger> & { inset?: boolean }
|
|
>(({ className, inset, children, ...props }, ref) => (
|
|
<ContextMenuPrimitive.SubTrigger
|
|
ref={ref}
|
|
data-slot="context-menu-sub-trigger"
|
|
className={cn(
|
|
'flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none',
|
|
'focus:bg-bg-secondary focus:text-text-primary data-[state=open]:bg-bg-secondary data-[state=open]:text-text-primary',
|
|
inset && 'pl-8',
|
|
className
|
|
)}
|
|
{...props}
|
|
>
|
|
{children}
|
|
<ChevronRight className="ml-auto size-4" />
|
|
</ContextMenuPrimitive.SubTrigger>
|
|
));
|
|
ContextMenuSubTrigger.displayName = ContextMenuPrimitive.SubTrigger.displayName;
|
|
|
|
const ContextMenuSubContent = React.forwardRef<
|
|
React.ElementRef<typeof ContextMenuPrimitive.SubContent>,
|
|
React.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.SubContent>
|
|
>(({ className, ...props }, ref) => (
|
|
<ContextMenuPrimitive.SubContent
|
|
ref={ref}
|
|
data-slot="context-menu-sub-content"
|
|
className={cn(
|
|
'z-50 min-w-[8rem] overflow-hidden rounded-md border border-border-primary bg-bg-primary p-1 text-text-primary 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',
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
));
|
|
ContextMenuSubContent.displayName = ContextMenuPrimitive.SubContent.displayName;
|
|
|
|
const ContextMenuContent = React.forwardRef<
|
|
React.ElementRef<typeof ContextMenuPrimitive.Content>,
|
|
React.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Content>
|
|
>(({ className, ...props }, ref) => (
|
|
<ContextMenuPrimitive.Portal>
|
|
<ContextMenuPrimitive.Content
|
|
ref={ref}
|
|
data-slot="context-menu-content"
|
|
className={cn(
|
|
'z-50 min-w-[8rem] overflow-hidden rounded-md border border-border-primary bg-bg-primary p-1 text-text-primary 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',
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
</ContextMenuPrimitive.Portal>
|
|
));
|
|
ContextMenuContent.displayName = ContextMenuPrimitive.Content.displayName;
|
|
|
|
const ContextMenuItem = React.forwardRef<
|
|
React.ElementRef<typeof ContextMenuPrimitive.Item>,
|
|
React.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Item> & { inset?: boolean }
|
|
>(({ className, inset, ...props }, ref) => (
|
|
<ContextMenuPrimitive.Item
|
|
ref={ref}
|
|
data-slot="context-menu-item"
|
|
className={cn(
|
|
'relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none',
|
|
'focus:bg-bg-secondary focus:text-text-primary',
|
|
'data-[disabled]:pointer-events-none data-[disabled]:opacity-50',
|
|
'[&>svg]:size-4 [&>svg]:shrink-0',
|
|
inset && 'pl-8',
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
));
|
|
ContextMenuItem.displayName = ContextMenuPrimitive.Item.displayName;
|
|
|
|
const ContextMenuCheckboxItem = React.forwardRef<
|
|
React.ElementRef<typeof ContextMenuPrimitive.CheckboxItem>,
|
|
React.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.CheckboxItem>
|
|
>(({ className, children, checked, ...props }, ref) => (
|
|
<ContextMenuPrimitive.CheckboxItem
|
|
ref={ref}
|
|
data-slot="context-menu-checkbox-item"
|
|
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-bg-secondary focus:text-text-primary',
|
|
'data-[disabled]:pointer-events-none data-[disabled]:opacity-50',
|
|
className
|
|
)}
|
|
checked={checked}
|
|
{...props}
|
|
>
|
|
<span className="absolute left-2 flex size-3.5 items-center justify-center">
|
|
<ContextMenuPrimitive.ItemIndicator>
|
|
<Check className="size-4 text-brand" />
|
|
</ContextMenuPrimitive.ItemIndicator>
|
|
</span>
|
|
{children}
|
|
</ContextMenuPrimitive.CheckboxItem>
|
|
));
|
|
ContextMenuCheckboxItem.displayName = ContextMenuPrimitive.CheckboxItem.displayName;
|
|
|
|
const ContextMenuRadioItem = React.forwardRef<
|
|
React.ElementRef<typeof ContextMenuPrimitive.RadioItem>,
|
|
React.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.RadioItem>
|
|
>(({ className, children, ...props }, ref) => (
|
|
<ContextMenuPrimitive.RadioItem
|
|
ref={ref}
|
|
data-slot="context-menu-radio-item"
|
|
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-bg-secondary focus:text-text-primary',
|
|
'data-[disabled]:pointer-events-none data-[disabled]:opacity-50',
|
|
className
|
|
)}
|
|
{...props}
|
|
>
|
|
<span className="absolute left-2 flex size-3.5 items-center justify-center">
|
|
<ContextMenuPrimitive.ItemIndicator>
|
|
<Circle className="size-2 fill-brand text-brand" />
|
|
</ContextMenuPrimitive.ItemIndicator>
|
|
</span>
|
|
{children}
|
|
</ContextMenuPrimitive.RadioItem>
|
|
));
|
|
ContextMenuRadioItem.displayName = ContextMenuPrimitive.RadioItem.displayName;
|
|
|
|
const ContextMenuLabel = React.forwardRef<
|
|
React.ElementRef<typeof ContextMenuPrimitive.Label>,
|
|
React.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Label> & { inset?: boolean }
|
|
>(({ className, inset, ...props }, ref) => (
|
|
<ContextMenuPrimitive.Label
|
|
ref={ref}
|
|
data-slot="context-menu-label"
|
|
className={cn('px-2 py-1.5 text-xs font-medium text-text-muted', inset && 'pl-8', className)}
|
|
{...props}
|
|
/>
|
|
));
|
|
ContextMenuLabel.displayName = ContextMenuPrimitive.Label.displayName;
|
|
|
|
const ContextMenuSeparator = React.forwardRef<
|
|
React.ElementRef<typeof ContextMenuPrimitive.Separator>,
|
|
React.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Separator>
|
|
>(({ className, ...props }, ref) => (
|
|
<ContextMenuPrimitive.Separator
|
|
ref={ref}
|
|
data-slot="context-menu-separator"
|
|
className={cn('-mx-1 my-1 h-px bg-border-primary', className)}
|
|
{...props}
|
|
/>
|
|
));
|
|
ContextMenuSeparator.displayName = ContextMenuPrimitive.Separator.displayName;
|
|
|
|
const ContextMenuShortcut = ({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<'span'>) => (
|
|
<span
|
|
data-slot="context-menu-shortcut"
|
|
className={cn('ml-auto text-xs tracking-widest text-text-muted', className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
ContextMenuShortcut.displayName = 'ContextMenuShortcut';
|
|
|
|
export {
|
|
ContextMenu,
|
|
ContextMenuTrigger,
|
|
ContextMenuContent,
|
|
ContextMenuItem,
|
|
ContextMenuCheckboxItem,
|
|
ContextMenuRadioItem,
|
|
ContextMenuLabel,
|
|
ContextMenuSeparator,
|
|
ContextMenuShortcut,
|
|
ContextMenuGroup,
|
|
ContextMenuPortal,
|
|
ContextMenuSub,
|
|
ContextMenuSubContent,
|
|
ContextMenuSubTrigger,
|
|
ContextMenuRadioGroup,
|
|
};
|