You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
127 lines
4.0 KiB
127 lines
4.0 KiB
import * as React from 'react';
|
|
import { ThemeType, IconType } 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 as AntdIcon } 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';
|
|
|
|
const Icon: IconType = AntdIcon as any;
|
|
|
|
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', '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} /> Outlined
|
|
</Radio.Button>
|
|
<Radio.Button value="filled">
|
|
<Icon component={FilledIcon} /> Filled
|
|
</Radio.Button>
|
|
<Radio.Button value="twoTone">
|
|
<Icon component={TwoToneIcon} /> Two Tone
|
|
</Radio.Button>
|
|
</Radio.Group>
|
|
{this.renderCategories(list)}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default injectIntl(IconDisplay);
|
|
|