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

73 lines
1.5 KiB
TypeScript
Raw Normal View History

2018-09-01 16:16:11 +08:00
import * as React from 'react';
2018-11-08 17:29:56 +08:00
import { message } from 'antd';
import { injectIntl } from 'react-intl';
use ant design icons 4.0 (#18217) * feat: use @ant-design/icons@4.0 * feat: use createFromIconfontCN to make site works * feat: update doc for Icon * feat: use icon in component Alert * feat: use icon in component Avatar * feat: use icon in component Breadcrumb * feat: use icon in component Button * feat: use icon in component Cascader * feat: use icon in component Collapse * feat: use icon in component Datepicker * feat: use icon in component Dropdown * feat: use icon in component Form * feat: use icon in component Input * feat: use icon in component InputNumber * feat: use icon in component Layout * feat: use icon in component Mention * feat: use icon in component Message * feat: use icon in component Modal * feat: use icon in component Notification * feat: use icon in component PageHeader * feat: use icon in component Pagination * feat: use icon in component Popconfirm * feat: use icon in component Progress * feat: use icon in component Rate * feat: use icon in component Result * feat: use icon in component Select * feat: use icon in component Step * feat: use icon in component Switch * feat: use icon in component Table * feat: use icon in component Tab * feat: use icon in component Tag * feat: handle rest component which using Icon * fix: remove unused vars * feat: use latest alpha ant design icons * fix: failed test in uploadlist.test.js * test: update snapshot for icons * doc: add Icon for site * doc: use @ant-design/icons in site * chore: use latest icons * fix: tslint issue * fix: test cases * fix: types for react * fix: lint rules for import orders * fix: use @ant-design/icons@4.0.0-alpha.5 to avoid insert css in server render * fix: eslint error in demo/**.md * inject antd icons * update snapshot * fix site * doc: update docs * fix: code snippets icon in site * feat: use latest @ant-design/icons * fix: icon props in message
2019-08-13 14:07:17 +08:00
import CopyableIcon from './CopyableIcon';
2019-12-25 14:42:15 +08:00
import { ThemeType } from './index';
2018-09-01 16:16:11 +08:00
import { CategoriesKeys } from './fields';
interface CategoryProps {
2018-09-01 16:16:11 +08:00
title: CategoriesKeys;
icons: string[];
2019-12-25 14:42:15 +08:00
theme: ThemeType;
2018-09-01 16:16:11 +08:00
newIcons: string[];
intl: any;
2018-09-01 16:16:11 +08:00
}
interface CategoryState {
justCopied: string | null;
}
class Category extends React.Component<CategoryProps, CategoryState> {
2019-03-15 17:29:57 +08:00
copyId?: number;
2018-09-01 16:16:11 +08:00
state = {
justCopied: null,
};
2019-08-14 18:21:24 +08:00
componentWillUnmount() {
window.clearTimeout(this.copyId);
}
2018-11-08 17:29:56 +08:00
onCopied = (type: string, text: string) => {
2018-12-07 16:17:45 +08:00
message.success(
<span>
<code className="copied-code">{text}</code> copied 🎉
</span>,
);
2018-09-01 16:16:11 +08:00
this.setState({ justCopied: type }, () => {
2019-03-15 17:12:30 +08:00
this.copyId = window.setTimeout(() => {
2018-09-01 16:16:11 +08:00
this.setState({ justCopied: null });
}, 2000);
});
2018-12-07 16:17:45 +08:00
};
2018-09-01 16:16:11 +08:00
render() {
const {
2018-12-07 16:17:45 +08:00
icons,
title,
newIcons,
2019-12-25 14:42:15 +08:00
theme,
2018-09-01 16:16:11 +08:00
intl: { messages },
} = this.props;
const items = icons.map(name => (
<CopyableIcon
key={name}
name={name}
theme={theme}
isNew={newIcons.indexOf(name) >= 0}
justCopied={this.state.justCopied}
onCopied={this.onCopied}
/>
));
2019-09-03 12:15:43 +08:00
2018-09-01 16:16:11 +08:00
return (
<div>
<h3>{messages[`app.docs.components.icon.category.${title}`]}</h3>
2019-08-14 18:21:24 +08:00
<ul className="anticons-list">{items}</ul>
2018-09-01 16:16:11 +08:00
</div>
);
}
}
export default injectIntl(Category);