import * as React from 'react'; import Icon, * as AntdIcons from '@ant-design/icons'; import { Radio, Input, Empty } from 'antd'; import type { RadioChangeEvent } from 'antd/es/radio/interface'; import { injectIntl } from 'react-intl'; import debounce from 'lodash/debounce'; import Category from './Category'; import IconPicSearcher from './IconPicSearcher'; import { FilledIcon, OutlinedIcon, TwoToneIcon } from './themeIcons'; import type { CategoriesKeys } from './fields'; import { categories } from './fields'; export enum ThemeType { Filled = 'Filled', Outlined = 'Outlined', TwoTone = 'TwoTone', } const allIcons: { [key: string]: any } = AntdIcons; interface IconDisplayProps { intl: any; } interface IconDisplayState { theme: ThemeType; searchKey: string; } const IconDisplay: React.FC = ({ intl }) => { const { messages } = intl; const [displayState, setDisplayState] = React.useState({ theme: ThemeType.Outlined, searchKey: '', }); const newIconNames: string[] = []; const handleSearchIcon = debounce((searchKey: string) => { setDisplayState(prevState => ({ ...prevState, searchKey })); }); const handleChangeTheme = (e: RadioChangeEvent) => { setDisplayState(prevState => ({ ...prevState, theme: e.target.value as ThemeType })); }; const renderCategories = () => { const { searchKey = '', theme } = displayState; const categoriesResult = Object.keys(categories) .map((key: CategoriesKeys) => { let iconList = categories[key]; if (searchKey) { const matchKey = searchKey // eslint-disable-next-line prefer-regex-literals .replace(new RegExp(`^<([a-zA-Z]*)\\s/>$`, 'gi'), (_, name) => name) .replace(/(Filled|Outlined|TwoTone)$/, '') .toLowerCase(); iconList = iconList.filter(iconName => iconName.toLowerCase().includes(matchKey)); } // CopyrightCircle is same as Copyright, don't show it iconList = iconList.filter(icon => icon !== 'CopyrightCircle'); return { category: key, icons: iconList.map(iconName => iconName + theme).filter(iconName => allIcons[iconName]), }; }) .filter(({ icons }) => !!icons.length) .map(({ category, icons }) => ( )); return categoriesResult.length === 0 ? : categoriesResult; }; return ( <>
{messages['app.docs.components.icon.outlined']} {messages['app.docs.components.icon.filled']} {messages['app.docs.components.icon.two-tone']} handleSearchIcon(e.currentTarget.value)} size="large" autoFocus suffix={} />
{renderCategories()} ); }; export default injectIntl(IconDisplay);