File size: 1,927 Bytes
68ed806 ddd1aa2 8441328 4a674c0 8441328 ddd1aa2 942993f 4a674c0 f43283a 8fb1944 8441328 ddd1aa2 942993f 4a674c0 f43283a 8fb1944 8441328 8fb1944 8441328 4a674c0 8441328 ddd1aa2 f43283a 942993f f43283a ddd1aa2 8441328 |
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 |
import { useShowDeleteConfirm } from '@/hooks/common-hooks';
import { DeleteOutlined, MoreOutlined } from '@ant-design/icons';
import { Dropdown, MenuProps, Space } from 'antd';
import { useTranslation } from 'react-i18next';
import React, { useMemo } from 'react';
import styles from './index.less';
interface IProps {
deleteItem: () => Promise<any> | void;
iconFontSize?: number;
iconFontColor?: string;
items?: MenuProps['items'];
height?: number;
needsDeletionValidation?: boolean;
}
const OperateDropdown = ({
deleteItem,
children,
iconFontSize = 30,
iconFontColor = 'gray',
items: otherItems = [],
height = 24,
needsDeletionValidation = true,
}: React.PropsWithChildren<IProps>) => {
const { t } = useTranslation();
const showDeleteConfirm = useShowDeleteConfirm();
const handleDelete = () => {
if (needsDeletionValidation) {
showDeleteConfirm({ onOk: deleteItem });
} else {
deleteItem();
}
};
const handleDropdownMenuClick: MenuProps['onClick'] = ({ domEvent, key }) => {
domEvent.preventDefault();
domEvent.stopPropagation();
if (key === '1') {
handleDelete();
}
};
const items: MenuProps['items'] = useMemo(() => {
return [
{
key: '1',
label: (
<Space>
{t('common.delete')}
<DeleteOutlined />
</Space>
),
},
...otherItems,
];
}, [t, otherItems]);
return (
<Dropdown
menu={{
items,
onClick: handleDropdownMenuClick,
}}
>
{children || (
<span className={styles.delete}>
<MoreOutlined
rotate={90}
style={{
fontSize: iconFontSize,
color: iconFontColor,
cursor: 'pointer',
height,
}}
/>
</span>
)}
</Dropdown>
);
};
export default OperateDropdown;
|