You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.8 KiB
68 lines
1.8 KiB
import React from 'react';
|
|
import DownOutlined from '@ant-design/icons/DownOutlined';
|
|
import LoadingOutlined from '@ant-design/icons/LoadingOutlined';
|
|
import CheckOutlined from '@ant-design/icons/CheckOutlined';
|
|
import CloseOutlined from '@ant-design/icons/CloseOutlined';
|
|
import CloseCircleFilled from '@ant-design/icons/CloseCircleFilled';
|
|
import SearchOutlined from '@ant-design/icons/SearchOutlined';
|
|
|
|
export default function getIcons({
|
|
suffixIcon,
|
|
clearIcon,
|
|
menuItemSelectedIcon,
|
|
removeIcon,
|
|
loading,
|
|
multiple,
|
|
}: {
|
|
suffixIcon?: React.ReactNode;
|
|
clearIcon?: React.ReactNode;
|
|
menuItemSelectedIcon?: React.ReactNode;
|
|
removeIcon?: React.ReactNode;
|
|
loading?: boolean;
|
|
multiple?: boolean;
|
|
}) {
|
|
// Clear Icon
|
|
let mergedClearIcon = clearIcon;
|
|
if (!clearIcon) {
|
|
mergedClearIcon = <CloseCircleFilled />;
|
|
}
|
|
|
|
// Arrow item icon
|
|
let mergedSuffixIcon = null;
|
|
if (suffixIcon !== undefined) {
|
|
mergedSuffixIcon = suffixIcon;
|
|
} else if (loading) {
|
|
mergedSuffixIcon = <LoadingOutlined spin />;
|
|
} else {
|
|
mergedSuffixIcon = ({ open, showSearch }: { open: boolean; showSearch: boolean }) => {
|
|
if (open && showSearch) {
|
|
return <SearchOutlined />;
|
|
}
|
|
return <DownOutlined />;
|
|
};
|
|
}
|
|
|
|
// Checked item icon
|
|
let mergedItemIcon = null;
|
|
if (menuItemSelectedIcon !== undefined) {
|
|
mergedItemIcon = menuItemSelectedIcon;
|
|
} else if (multiple) {
|
|
mergedItemIcon = <CheckOutlined />;
|
|
} else {
|
|
mergedItemIcon = null;
|
|
}
|
|
|
|
let mergedRemoveIcon = null;
|
|
if (removeIcon !== undefined) {
|
|
mergedRemoveIcon = removeIcon;
|
|
} else {
|
|
mergedRemoveIcon = <CloseOutlined />;
|
|
}
|
|
|
|
return {
|
|
clearIcon: mergedClearIcon,
|
|
suffixIcon: mergedSuffixIcon,
|
|
itemIcon: mergedItemIcon,
|
|
removeIcon: mergedRemoveIcon,
|
|
};
|
|
}
|
|
|