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

90 lines
2.7 KiB
TypeScript
Raw Normal View History

2018-09-01 14:05:47 +08:00
import * as React from 'react';
2018-09-30 21:39:12 +08:00
import { ThemeType } from '../../../../components/icon';
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';
2018-09-01 16:16:11 +08:00
import Category from './Category';
2018-09-30 21:39:12 +08:00
import { Radio, Icon } from 'antd';
2018-09-01 16:16:11 +08:00
import { RadioChangeEvent } from 'antd/lib/radio/interface';
import { FilledIcon, OutlinedIcon, TwoToneIcon } from './themeIcons';
import { categories, Categories, CategoriesKeys } from './fields';
import { injectIntl, InjectedIntlProps } from 'react-intl';
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;
}
2018-09-01 16:16:11 +08:00
class IconDisplay extends React.Component<IconDisplayProps, IconDisplayState> {
static cagetories: Categories = categories;
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',
};
2018-09-01 16:16:11 +08:00
getComputedDisplayList() {
return Object.keys(IconDisplay.cagetories)
2018-12-07 20:02:01 +08:00
.map((category: CategoriesKeys) => ({
category,
icons: IconDisplay.cagetories[category].filter(
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
2018-12-07 20:02:01 +08:00
renderCategories(list: Array<{ category: CategoriesKeys; icons: string[] }>) {
2018-09-01 16:16:11 +08:00
return list.map(({ category, icons }) => {
return (
<Category
key={category}
title={category}
icons={icons}
theme={this.state.theme}
newIcons={IconDisplay.newIconNames}
/>
);
});
}
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>
<Radio.Group value={this.state.theme} onChange={this.handleChangeTheme}>
<Radio.Button value="outlined">
2018-11-05 19:04:28 +08:00
<Icon component={OutlinedIcon} /> {messages['app.docs.components.icon.outlined']}
2018-09-01 16:16:11 +08:00
</Radio.Button>
2018-09-01 17:44:15 +08:00
<Radio.Button value="filled">
2018-11-05 19:04:28 +08:00
<Icon component={FilledIcon} /> {messages['app.docs.components.icon.filled']}
2018-09-01 17:44:15 +08:00
</Radio.Button>
2018-09-01 16:16:11 +08:00
<Radio.Button value="twoTone">
2018-11-05 19:04:28 +08:00
<Icon component={TwoToneIcon} /> {messages['app.docs.components.icon.two-tone']}
2018-09-01 16:16:11 +08:00
</Radio.Button>
</Radio.Group>
{this.renderCategories(list)}
</div>
);
2018-09-01 14:05:47 +08:00
}
}
2018-09-01 16:16:11 +08:00
export default injectIntl(IconDisplay);