ant-design/site/theme/template/IconDisplay/index.tsx

123 lines
3.7 KiB
TypeScript
Raw Normal View History

2018-09-01 14:05:47 +08:00
import * as React from 'react';
2018-09-01 16:16:11 +08:00
import manifest from '@ant-design/icons/lib/manifest';
2018-09-01 16:48:48 +08:00
import { ThemeType as ThemeFolderType } from '@ant-design/icons/lib/types';
2019-04-06 13:20:22 +08:00
import { Radio, Icon, Input } from 'antd';
2018-09-01 16:16:11 +08:00
import { RadioChangeEvent } from 'antd/lib/radio/interface';
2019-04-06 13:20:22 +08:00
import { injectIntl, InjectedIntlProps } from 'react-intl';
import debounce from 'lodash/debounce';
import Category from './Category';
2018-09-01 16:16:11 +08:00
import { FilledIcon, OutlinedIcon, TwoToneIcon } from './themeIcons';
import { categories, Categories, CategoriesKeys } from './fields';
2019-04-06 13:20:22 +08:00
import { ThemeType } from '../../../../components/icon';
2018-09-01 14:05:47 +08:00
2018-12-07 20:02:01 +08:00
interface IconDisplayProps extends InjectedIntlProps {}
2018-09-01 14:05:47 +08:00
interface IconDisplayState {
theme: ThemeType;
2019-04-06 13:20:22 +08:00
searchKey: string;
2018-09-01 14:05:47 +08:00
}
2018-09-01 16:16:11 +08:00
class IconDisplay extends React.Component<IconDisplayProps, IconDisplayState> {
2019-04-06 13:20:22 +08:00
constructor(props: IconDisplayProps) {
super(props);
this.handleSearchIcon = debounce(this.handleSearchIcon, 300);
}
static categories: Categories = categories;
2018-09-01 16:16:11 +08:00
2019-02-17 12:18:40 +08:00
static newIconNames: string[] = [];
2018-09-01 16:16:11 +08:00
static themeTypeMapper: { [key: string]: ThemeFolderType } = {
filled: 'fill',
outlined: 'outline',
twoTone: 'twotone',
};
2018-09-01 14:05:47 +08:00
state: IconDisplayState = {
theme: 'outlined',
2019-04-06 13:20:22 +08:00
searchKey: '',
2018-09-01 14:05:47 +08:00
};
2018-09-01 16:16:11 +08:00
getComputedDisplayList() {
2019-04-06 13:20:22 +08:00
return Object.keys(IconDisplay.categories)
2018-12-07 20:02:01 +08:00
.map((category: CategoriesKeys) => ({
category,
2019-04-06 13:20:22 +08:00
icons: IconDisplay.categories[category].filter(
2018-12-07 20:02:01 +08:00
name => manifest[IconDisplay.themeTypeMapper[this.state.theme]].indexOf(name) !== -1,
),
}))
2018-09-01 16:16:11 +08:00
.filter(({ icons }) => Boolean(icons.length));
}
handleChangeTheme = (e: RadioChangeEvent) => {
this.setState({
theme: e.target.value as ThemeType,
});
2018-12-07 20:02:01 +08:00
};
2018-09-01 16:16:11 +08:00
2019-04-06 13:20:22 +08:00
handleSearchIcon = (searchKey: string) => {
this.setState(prevState => ({
...prevState,
searchKey,
}));
};
2018-12-07 20:02:01 +08:00
renderCategories(list: Array<{ category: CategoriesKeys; icons: string[] }>) {
2019-04-06 13:20:22 +08:00
const { searchKey } = this.state;
return list
.map(({ category, icons }) => {
const iconResult = icons.filter(name => name.includes(searchKey));
if (iconResult.length === 0) {
return null;
}
return (
<Category
key={category}
title={category}
icons={iconResult}
theme={this.state.theme}
newIcons={IconDisplay.newIconNames}
/>
);
})
.filter(category => !!category);
2018-09-01 16:16:11 +08:00
}
2018-09-01 14:05:47 +08:00
render() {
2018-12-07 20:02:01 +08:00
const {
intl: { messages },
} = this.props;
2018-09-01 16:16:11 +08:00
const list = this.getComputedDisplayList();
return (
<div>
<h3>{messages['app.docs.components.icon.pick-theme']}</h3>
2019-04-06 13:20:22 +08:00
<div style={{ display: 'flex', justifyContent: 'space-between' }}>
<Radio.Group value={this.state.theme} onChange={this.handleChangeTheme} size="large">
<Radio.Button value="outlined">
<Icon component={OutlinedIcon} /> {messages['app.docs.components.icon.outlined']}
</Radio.Button>
<Radio.Button value="filled">
<Icon component={FilledIcon} /> {messages['app.docs.components.icon.filled']}
</Radio.Button>
<Radio.Button value="twoTone">
<Icon component={TwoToneIcon} /> {messages['app.docs.components.icon.two-tone']}
</Radio.Button>
</Radio.Group>
<Input.Search
placeholder="icon name"
style={{ marginLeft: 10, flex: 1 }}
allowClear
onChange={e => this.handleSearchIcon(e.currentTarget.value)}
size="large"
/>
</div>
2018-09-01 16:16:11 +08:00
{this.renderCategories(list)}
</div>
);
2018-09-01 14:05:47 +08:00
}
}
2018-09-01 16:16:11 +08:00
export default injectIntl(IconDisplay);