File size: 4,380 Bytes
4e1096a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | import clsx from 'clsx';
import React from 'react';
import { IconType } from 'react-icons';
import { MdCheck } from 'react-icons/md';
import { useTranslation } from '@/hooks/useTranslation';
import { useResponsiveSize } from '@/hooks/useResponsiveSize';
interface MenuItemProps {
label: string;
toggled?: boolean;
description?: string;
tooltip?: string;
buttonClass?: string;
labelClass?: string;
shortcut?: string;
disabled?: boolean;
noIcon?: boolean;
transient?: boolean;
Icon?: React.ReactNode | IconType;
iconClassName?: string;
children?: React.ReactNode;
siblings?: React.ReactNode;
detailsOpen?: boolean;
onClick?: () => void;
setIsDropdownOpen?: (isOpen: boolean) => void;
}
const MenuItem: React.FC<MenuItemProps> = ({
label,
toggled,
description,
tooltip,
buttonClass,
labelClass,
shortcut,
disabled,
noIcon = false,
transient = false,
Icon,
iconClassName,
children,
siblings,
detailsOpen = false,
onClick,
setIsDropdownOpen,
}) => {
const _ = useTranslation();
const iconSize = useResponsiveSize(16);
const [isDetailsOpen, setIsDetailsOpen] = React.useState(detailsOpen);
const IconType = Icon || (toggled !== undefined ? (toggled ? MdCheck : undefined) : undefined);
const handleClick = () => {
onClick?.();
if (transient) {
setIsDropdownOpen?.(false);
}
};
const buttonContent = (
<>
<div className='flex w-full items-center justify-between'>
<div className='flex min-w-0 items-center'>
{!noIcon && (
<span style={{ minWidth: `${iconSize}px` }}>
{typeof IconType === 'function' ? (
<IconType
className={clsx(disabled ? 'text-gray-400' : 'text-base-content', iconClassName)}
size={iconSize}
/>
) : (
IconType
)}
</span>
)}
<span
className={clsx('mx-2 flex-1 truncate text-base sm:text-sm', labelClass)}
style={{ minWidth: 0 }}
>
{label}
</span>
</div>
{shortcut && (
<kbd
className={clsx(
'border-base-300/40 bg-base-300/75 hidden rounded-md border shadow-sm sm:flex',
'shrink-0 px-1.5 py-0.5 text-xs font-medium',
disabled ? 'text-gray-400' : 'text-neutral-content',
)}
>
{shortcut}
</kbd>
)}
</div>
<div className='flex w-full'>
{description && (
<span
className='mt-1 truncate text-start text-xs text-gray-500'
style={{ minWidth: 0, paddingInlineStart: noIcon ? '0' : `${iconSize + 8}px` }}
>
{description}
</span>
)}
</div>
</>
);
if (children) {
return (
<ul className='menu rounded-box m-0 p-0'>
<li aria-label={label}>
<details open={detailsOpen} onToggle={(e) => setIsDetailsOpen(e.currentTarget.open)}>
<summary
role='button'
tabIndex={-1}
aria-expanded={isDetailsOpen}
className={clsx(
'hover:bg-base-300 text-base-content cursor-pointer rounded-md p-1 py-[10px] pr-3',
disabled && 'btn-disabled cursor-not-allowed text-gray-400',
buttonClass,
)}
title={tooltip ? tooltip : ''}
>
{buttonContent}
</summary>
{children}
</details>
</li>
</ul>
);
}
return (
<div className='flex'>
<button
role={disabled ? 'none' : 'menuitem'}
aria-label={
toggled !== undefined ? `${label} - ${toggled ? _('ON') : _('OFF')}` : undefined
}
aria-live={toggled === undefined ? 'polite' : 'off'}
tabIndex={disabled ? -1 : 0}
className={clsx(
'hover:bg-base-300 text-base-content flex w-full flex-col items-center justify-center rounded-md p-1 py-[10px]',
disabled && 'btn-disabled text-gray-400',
buttonClass,
)}
title={tooltip ? tooltip : ''}
onClick={handleClick}
disabled={disabled}
>
{buttonContent}
</button>
{siblings}
</div>
);
};
export default MenuItem;
|