import * as React from 'react'; import manifest from '@ant-design/icons/lib/manifest'; import { ThemeType as ThemeFolderType } from '@ant-design/icons/lib/types'; import { Radio, Icon, Input } from 'antd'; import { RadioChangeEvent } from 'antd/lib/radio/interface'; import { injectIntl, InjectedIntlProps } from 'react-intl'; import debounce from 'lodash/debounce'; import Category from './Category'; import { FilledIcon, OutlinedIcon, TwoToneIcon } from './themeIcons'; import { categories, Categories, CategoriesKeys } from './fields'; import { ThemeType } from 'antd/lib/icon'; interface IconDisplayProps extends InjectedIntlProps {} interface IconDisplayState { theme: ThemeType; searchKey: string; } class IconDisplay extends React.Component { static categories: Categories = categories; static newIconNames: string[] = []; static themeTypeMapper: { [key: string]: ThemeFolderType } = { filled: 'fill', outlined: 'outline', twoTone: 'twotone', }; state: IconDisplayState = { theme: 'outlined', searchKey: '', }; constructor(props: IconDisplayProps) { super(props); this.handleSearchIcon = debounce(this.handleSearchIcon, 300); } getComputedDisplayList() { return Object.keys(IconDisplay.categories) .map((category: CategoriesKeys) => ({ category, icons: (IconDisplay.categories[category] || []).filter( name => manifest[IconDisplay.themeTypeMapper[this.state.theme]].indexOf(name) !== -1, ), })) .filter(({ icons }) => Boolean(icons.length)); } handleChangeTheme = (e: RadioChangeEvent) => { this.setState({ theme: e.target.value as ThemeType, }); }; handleSearchIcon = (searchKey: string) => { this.setState(prevState => ({ ...prevState, searchKey, })); }; renderCategories(list: Array<{ category: CategoriesKeys; icons: string[] }>) { const { searchKey, theme } = this.state; const otherIcons = categories.all.filter(icon => { return list .filter(({ category }) => category !== 'all') .every(item => !item.icons.includes(icon)); }); return list .filter(({ category }) => category !== 'all') .concat({ category: 'other', icons: otherIcons }) .map(({ category, icons }) => ({ category, icons: icons .filter(name => name.includes(searchKey)) .filter(name => manifest[IconDisplay.themeTypeMapper[theme]].includes(name)), })) .filter(({ icons }) => !!icons.length) .map(({ category, icons }) => ( )); } render() { const { intl: { messages }, } = this.props; const list = this.getComputedDisplayList(); return ( <>
{messages['app.docs.components.icon.outlined']} {messages['app.docs.components.icon.filled']} {messages['app.docs.components.icon.two-tone']} this.handleSearchIcon(e.currentTarget.value)} size="large" autoFocus />
{this.renderCategories(list)} ); } } export default injectIntl(IconDisplay);