mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
194 lines
4.4 KiB
TypeScript
194 lines
4.4 KiB
TypeScript
import * as React from 'react';
|
|
import { ThemeType } from '../../../../components/icon';
|
|
import manifest from '@ant-design/icons/lib/manifest';
|
|
import { ThemeType as ThemeFolderType } from '@ant-design/icons/lib/types';
|
|
import Category from './Category';
|
|
import { Radio, Icon } from 'antd';
|
|
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';
|
|
|
|
interface IconDisplayProps extends InjectedIntlProps {}
|
|
|
|
interface IconDisplayState {
|
|
theme: ThemeType;
|
|
}
|
|
|
|
class IconDisplay extends React.Component<IconDisplayProps, IconDisplayState> {
|
|
static cagetories: Categories = categories;
|
|
|
|
static newIconNames: string[] = [
|
|
// direction
|
|
'border-bottom',
|
|
'border-horizontal',
|
|
'border-inner',
|
|
'border-outter',
|
|
'border-left',
|
|
'border-right',
|
|
'border-top',
|
|
'border-verticle',
|
|
'pic-center',
|
|
'pic-left',
|
|
'pic-right',
|
|
'radius-bottomleft',
|
|
'radius-bottomright',
|
|
'radius-upleft',
|
|
'radius-upleft',
|
|
'fullscreen',
|
|
'fullscreen-exit',
|
|
// suggestion
|
|
'issues-close',
|
|
'stop',
|
|
|
|
// edit
|
|
'scissor',
|
|
'snippets',
|
|
'diff',
|
|
'highlight',
|
|
'align-center',
|
|
'align-left',
|
|
'align-right',
|
|
'bg-colors',
|
|
'bold',
|
|
'italic',
|
|
'underline',
|
|
'redo',
|
|
'undo',
|
|
'zoom-in',
|
|
'zoom-out',
|
|
'font-colors',
|
|
'font-size',
|
|
'line-height',
|
|
'colum-height',
|
|
'colum-width',
|
|
'dash',
|
|
'small-dash',
|
|
'sort-ascending',
|
|
'sort-descending',
|
|
'drag',
|
|
'ordered-list',
|
|
'radius-setting',
|
|
|
|
// data
|
|
'radar-chart',
|
|
'heat-map',
|
|
'fall',
|
|
'rise',
|
|
'stock',
|
|
'box-plot',
|
|
'fund',
|
|
'sliders',
|
|
|
|
// other
|
|
'alert',
|
|
'audit',
|
|
'batch-folding',
|
|
'branches',
|
|
'build',
|
|
'border',
|
|
'crown',
|
|
'experiment',
|
|
'eye-invisible',
|
|
'fire',
|
|
'money-collect',
|
|
'property-safety',
|
|
'read',
|
|
'reconciliation',
|
|
'rest',
|
|
'security-scan',
|
|
'insurance',
|
|
'interation',
|
|
'safety-certificate',
|
|
'project',
|
|
'thunderbolt',
|
|
'block',
|
|
'cluster',
|
|
'deployment-unit',
|
|
'dollar',
|
|
'euro',
|
|
'pound',
|
|
'file-done',
|
|
'file-exclamation',
|
|
'file-protect',
|
|
'file-search',
|
|
'file-sync',
|
|
'gateway',
|
|
'gold',
|
|
'robot',
|
|
'strikethrough',
|
|
'shopping',
|
|
|
|
// logo
|
|
'alibaba',
|
|
'yahoo',
|
|
];
|
|
|
|
static themeTypeMapper: { [key: string]: ThemeFolderType } = {
|
|
filled: 'fill',
|
|
outlined: 'outline',
|
|
twoTone: 'twotone',
|
|
};
|
|
|
|
state: IconDisplayState = {
|
|
theme: 'outlined',
|
|
};
|
|
|
|
getComputedDisplayList() {
|
|
return Object.keys(IconDisplay.cagetories)
|
|
.map((category: CategoriesKeys) => ({
|
|
category,
|
|
icons: IconDisplay.cagetories[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,
|
|
});
|
|
};
|
|
|
|
renderCategories(list: Array<{ category: CategoriesKeys; icons: string[] }>) {
|
|
return list.map(({ category, icons }) => {
|
|
return (
|
|
<Category
|
|
key={category}
|
|
title={category}
|
|
icons={icons}
|
|
theme={this.state.theme}
|
|
newIcons={IconDisplay.newIconNames}
|
|
/>
|
|
);
|
|
});
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
intl: { messages },
|
|
} = this.props;
|
|
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">
|
|
<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>
|
|
{this.renderCategories(list)}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default injectIntl(IconDisplay);
|