buster/web/src/components/ui/dropdown/DropdownBase.tsx

294 lines
9.6 KiB
TypeScript
Raw Normal View History

2025-02-25 02:18:44 +08:00
'use client';
import * as React from 'react';
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
2025-02-26 07:47:49 +08:00
import {
ArrowRight,
ArrowUpRight,
CaretRight,
Check3 as Check,
ChevronRight
} from '../icons/NucleoIconOutlined';
2025-02-25 02:18:44 +08:00
import { cn } from '@/lib/classMerge';
2025-02-26 07:24:53 +08:00
import { Checkbox } from '../checkbox/Checkbox';
2025-02-26 07:47:49 +08:00
import { Button } from '../buttons/Button';
import Link from 'next/link';
2025-02-25 02:18:44 +08:00
const DropdownMenu = DropdownMenuPrimitive.Root;
const DropdownMenuTrigger = DropdownMenuPrimitive.Trigger;
const DropdownMenuGroup = DropdownMenuPrimitive.Group;
const DropdownMenuPortal = DropdownMenuPrimitive.Portal;
const DropdownMenuSub = DropdownMenuPrimitive.Sub;
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(
2025-02-25 03:55:35 +08:00
'focus:bg-item-hover data-[state=open]:bg-item-hover flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none select-none [&_svg]:pointer-events-none [&_svg]:shrink-0',
2025-02-25 02:18:44 +08:00
inset && 'pl-8',
className
)}
{...props}>
{children}
2025-02-25 03:55:35 +08:00
<div className="ml-auto !text-sm">
2025-02-25 02:18:44 +08:00
<ChevronRight />
</div>
</DropdownMenuPrimitive.SubTrigger>
));
DropdownMenuSubTrigger.displayName = DropdownMenuPrimitive.SubTrigger.displayName;
2025-02-27 14:25:53 +08:00
const baseContentClass = cn(
`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 z-50 min-w-[8rem] overflow-hidden `,
'bg-background text-foreground ',
'rounded-md border p-1'
);
2025-02-26 07:24:53 +08:00
2025-02-25 02:18:44 +08:00
const DropdownMenuSubContent = React.forwardRef<
React.ElementRef<typeof DropdownMenuPrimitive.SubContent>,
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.SubContent>
>(({ className, ...props }, ref) => (
<DropdownMenuPrimitive.SubContent
ref={ref}
2025-02-26 07:24:53 +08:00
className={cn(baseContentClass, 'shadow-lg', className)}
2025-02-25 02:18:44 +08:00
{...props}
/>
));
DropdownMenuSubContent.displayName = DropdownMenuPrimitive.SubContent.displayName;
const DropdownMenuContent = React.forwardRef<
React.ElementRef<typeof DropdownMenuPrimitive.Content>,
2025-02-27 14:25:53 +08:00
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Content> & {
footerContent?: React.ReactNode;
}
>(({ className, children, sideOffset = 4, footerContent, ...props }, ref) => {
2025-03-04 12:36:12 +08:00
const NodeWrapper = footerContent ? 'div' : 'span';
2025-03-05 03:01:27 +08:00
const nodeWrapperProps = footerContent ? { className: 'p-2' } : { className: '' };
2025-02-27 14:25:53 +08:00
return (
<DropdownMenuPrimitive.Portal>
<DropdownMenuPrimitive.Content
ref={ref}
sideOffset={sideOffset}
2025-02-28 03:43:48 +08:00
className={cn(baseContentClass, 'shadow', footerContent && 'p-0', className)}
2025-02-27 14:25:53 +08:00
{...props}>
2025-03-02 12:00:19 +08:00
<NodeWrapper {...nodeWrapperProps}>{children}</NodeWrapper>
2025-02-27 14:25:53 +08:00
{footerContent && <div className="border-t p-2">{footerContent}</div>}
</DropdownMenuPrimitive.Content>
</DropdownMenuPrimitive.Portal>
);
});
2025-02-25 02:18:44 +08:00
DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName;
const DropdownMenuItem = React.forwardRef<
React.ElementRef<typeof DropdownMenuPrimitive.Item>,
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Item> & {
inset?: boolean;
2025-02-25 03:55:35 +08:00
closeOnSelect?: boolean;
selectType?: string;
2025-02-26 05:59:21 +08:00
truncate?: boolean;
2025-02-25 02:18:44 +08:00
}
2025-02-26 05:59:21 +08:00
>(({ className, closeOnSelect = true, onClick, inset, selectType, truncate, ...props }, ref) => (
2025-02-25 02:18:44 +08:00
<DropdownMenuPrimitive.Item
ref={ref}
className={cn(
2025-03-12 01:15:37 +08:00
'relative flex cursor-pointer items-center gap-2 rounded-sm px-2 py-1.5 text-base outline-none select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0',
2025-03-04 01:07:07 +08:00
'focus:bg-item-hover focus:text-foreground',
2025-02-25 02:18:44 +08:00
inset && 'pl-8',
2025-02-26 05:59:21 +08:00
truncate && 'overflow-hidden',
2025-02-26 07:47:49 +08:00
'group',
2025-02-25 02:18:44 +08:00
className
)}
2025-02-25 03:55:35 +08:00
onClick={(e) => {
2025-02-25 04:12:02 +08:00
if (!closeOnSelect) {
2025-02-25 03:55:35 +08:00
e.stopPropagation();
e.preventDefault();
}
onClick?.(e);
}}
2025-02-25 02:18:44 +08:00
{...props}
/>
));
DropdownMenuItem.displayName = DropdownMenuPrimitive.Item.displayName;
2025-02-26 07:24:53 +08:00
const itemClass = cn(
'focus:bg-item-hover focus:text-foreground',
2025-03-04 03:49:27 +08:00
'relative flex cursor-pointer items-center rounded-sm py-1.5 text-sm outline-none select-none',
2025-03-04 10:07:21 +08:00
'data-[disabled]:pointer-events-none data-[disabled]:opacity-50',
2025-02-26 07:47:49 +08:00
'gap-1.5'
2025-02-26 07:24:53 +08:00
);
const DropdownMenuCheckboxItemSingle = React.forwardRef<
2025-02-25 02:18:44 +08:00
React.ElementRef<typeof DropdownMenuPrimitive.CheckboxItem>,
2025-02-25 04:00:53 +08:00
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.CheckboxItem> & {
closeOnSelect?: boolean;
2025-02-26 04:58:01 +08:00
selectType?: boolean;
2025-03-04 10:07:21 +08:00
index?: number;
2025-02-25 04:00:53 +08:00
}
2025-03-04 10:07:21 +08:00
>(
(
{ className, children, onClick, checked, closeOnSelect = true, selectType, index, ...props },
ref
) => (
<DropdownMenuPrimitive.CheckboxItem
ref={ref}
className={cn(itemClass, 'data-[state=checked]:bg-item-hover', 'pr-6 pl-2', className)}
checked={checked}
onClick={(e) => {
if (closeOnSelect) {
e.stopPropagation();
e.preventDefault();
}
onClick?.(e);
}}
{...props}>
{children}
<span className="absolute right-2 flex h-3.5 w-3.5 items-center justify-center">
<DropdownMenuPrimitive.ItemIndicator>
<div className="flex h-4 w-4 items-center justify-center">
<Check />
</div>
</DropdownMenuPrimitive.ItemIndicator>
{index !== undefined && (
<span className="text-gray-dark ml-auto w-2 text-center">{index}</span>
)}
</span>
</DropdownMenuPrimitive.CheckboxItem>
)
);
2025-02-26 07:24:53 +08:00
DropdownMenuCheckboxItemSingle.displayName = DropdownMenuPrimitive.CheckboxItem.displayName;
const DropdownMenuCheckboxItemMultiple = React.forwardRef<
React.ElementRef<typeof DropdownMenuPrimitive.CheckboxItem>,
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.CheckboxItem> & {
closeOnSelect?: boolean;
selectType?: boolean;
}
>(
(
{ className, children, onClick, checked = false, closeOnSelect = true, selectType, ...props },
ref
) => {
return (
<DropdownMenuPrimitive.CheckboxItem
ref={ref}
className={cn(itemClass, 'group pr-2 pl-7', className)}
checked={checked}
onClick={(e) => {
if (closeOnSelect) {
e.stopPropagation();
e.preventDefault();
}
onClick?.(e);
}}
{...props}>
<span
className={cn(
'absolute left-2 flex h-3.5 w-3.5 items-center justify-center opacity-0 group-hover:opacity-100',
checked && 'opacity-100'
)}>
<Checkbox size="sm" checked={checked} />
</span>
{children}
</DropdownMenuPrimitive.CheckboxItem>
);
}
);
DropdownMenuCheckboxItemMultiple.displayName = 'DropdownMenuCheckboxItemMultiple';
2025-02-25 02:18:44 +08:00
const DropdownMenuLabel = React.forwardRef<
React.ElementRef<typeof DropdownMenuPrimitive.Label>,
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Label> & {
inset?: boolean;
}
>(({ className, inset, ...props }, ref) => (
<DropdownMenuPrimitive.Label
ref={ref}
2025-02-26 07:47:49 +08:00
className={cn('text-gray-dark px-2 py-1.5 text-sm', inset && 'pl-8', className)}
2025-02-25 02:18:44 +08:00
{...props}
/>
));
DropdownMenuLabel.displayName = DropdownMenuPrimitive.Label.displayName;
const DropdownMenuSeparator = React.forwardRef<
React.ElementRef<typeof DropdownMenuPrimitive.Separator>,
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Separator>
>(({ className, ...props }, ref) => (
<DropdownMenuPrimitive.Separator
ref={ref}
2025-02-26 05:59:21 +08:00
className={cn(
'bg-border dropdown-separator -mx-1 my-1 h-[0.5px]',
2025-02-26 07:24:53 +08:00
'[&.dropdown-separator:first-child]:hidden [&.dropdown-separator:has(+.dropdown-separator)]:hidden [&.dropdown-separator:last-child]:hidden',
2025-02-26 05:59:21 +08:00
className
)}
2025-02-25 02:18:44 +08:00
{...props}
/>
));
DropdownMenuSeparator.displayName = DropdownMenuPrimitive.Separator.displayName;
const DropdownMenuShortcut = ({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>) => {
return (
<span className={cn('ml-auto text-xs tracking-widest opacity-60', className)} {...props} />
);
};
DropdownMenuShortcut.displayName = 'DropdownMenuShortcut';
2025-02-26 07:47:49 +08:00
const DropdownMenuLink: React.FC<{
className?: string;
2025-03-02 12:17:45 +08:00
link: string | null;
2025-02-26 07:47:49 +08:00
linkIcon?: 'arrow-right' | 'arrow-external' | 'caret-right';
2025-02-28 03:43:48 +08:00
}> = ({ className, link, linkIcon = 'arrow-external', ...props }) => {
2025-02-26 07:47:49 +08:00
const icon = React.useMemo(() => {
if (linkIcon === 'arrow-right') return <ArrowRight />;
if (linkIcon === 'arrow-external') return <ArrowUpRight />;
if (linkIcon === 'caret-right') return <CaretRight />;
}, [linkIcon]);
const isExternal = link?.startsWith('http');
2025-03-02 12:17:45 +08:00
const content = (
<Button
prefix={icon}
variant="ghost"
size="small"
rounding={'default'}
className={cn('text-gray-dark hover:bg-gray-dark/8')}
/>
);
if (!link) return <div className={className}>{content}</div>;
2025-02-26 07:47:49 +08:00
return (
<Link className={className} href={link} target={isExternal ? '_blank' : '_self'}>
2025-03-02 12:17:45 +08:00
{content}
2025-02-26 07:47:49 +08:00
</Link>
);
};
DropdownMenuLink.displayName = 'DropdownMenuLink';
2025-02-25 02:18:44 +08:00
export {
DropdownMenu,
DropdownMenuTrigger,
DropdownMenuContent,
DropdownMenuItem,
2025-02-26 07:24:53 +08:00
DropdownMenuCheckboxItemSingle,
2025-02-25 02:18:44 +08:00
DropdownMenuLabel,
DropdownMenuSeparator,
DropdownMenuShortcut,
DropdownMenuGroup,
DropdownMenuPortal,
DropdownMenuSub,
DropdownMenuSubContent,
2025-02-26 07:24:53 +08:00
DropdownMenuSubTrigger,
2025-02-26 07:47:49 +08:00
DropdownMenuCheckboxItemMultiple,
DropdownMenuLink
2025-02-25 02:18:44 +08:00
};