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

37 lines
992 B
TypeScript
Raw Normal View History

2018-09-01 16:16:11 +08:00
import * as React from 'react';
import CopyToClipboard from 'react-copy-to-clipboard';
2018-09-01 16:48:48 +08:00
import { Icon as AntdIcon, Badge } from 'antd';
import { ThemeType, IconProps } from '../../../../components/icon';
const Icon: React.SFC<IconProps> = AntdIcon;
2018-09-01 16:16:11 +08:00
export interface CopyableIconProps {
type: string;
theme: ThemeType;
isNew: boolean;
justCopied: string | null;
onCopied: (type: string) => any;
}
const CopyableIcon: React.SFC<CopyableIconProps> = ({
type, theme, isNew, justCopied, onCopied,
}) => {
return (
<CopyToClipboard
2018-11-05 19:04:28 +08:00
text={theme === 'outlined' ? <Icon type="${type}" /> : `<Icon type="${type}" theme="${theme}" />`}
2018-09-01 16:16:11 +08:00
onCopy={() => onCopied(type)}
>
<li className={justCopied === type ? 'copied' : ''}>
2018-09-01 17:44:15 +08:00
<Icon type={type} theme={theme}/>
2018-09-01 16:16:11 +08:00
<span className="anticon-class">
<Badge dot={isNew}>
{type}
</Badge>
</span>
</li>
</CopyToClipboard>
);
};
export default CopyableIcon;