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.

37 lines
1.0 KiB

6 years ago
import * as React from 'react';
import CopyToClipboard from 'react-copy-to-clipboard';
import { Icon as AntdIcon, Badge } from 'antd';
import { ThemeType, IconProps } from '../../../../components/icon';
const Icon: React.SFC<IconProps> = AntdIcon;
6 years ago
export interface CopyableIconProps {
type: string;
theme: ThemeType;
isNew: boolean;
justCopied: string | null;
onCopied: (type: string, text: string) => any;
6 years ago
}
const CopyableIcon: React.SFC<CopyableIconProps> = ({
type, theme, isNew, justCopied, onCopied,
}) => {
return (
<CopyToClipboard
text={theme === 'outlined' ? `<Icon type="${type}" />` : `<Icon type="${type}" theme="${theme}" />`}
onCopy={(text: string) => onCopied(type, text)}
6 years ago
>
<li className={justCopied === type ? 'copied' : ''}>
<Icon type={type} theme={theme}/>
6 years ago
<span className="anticon-class">
<Badge dot={isNew}>
{type}
</Badge>
</span>
</li>
</CopyToClipboard>
);
};
export default CopyableIcon;