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.
32 lines
802 B
32 lines
802 B
import React from 'react';
|
|
import CopyToClipboard from 'react-copy-to-clipboard';
|
|
import { Icon } from 'antd';
|
|
|
|
export default class CopyableIcon extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
justCopied: false,
|
|
};
|
|
}
|
|
|
|
onCopied = () => {
|
|
this.setState({ justCopied: true }, () => {
|
|
setTimeout(() => {
|
|
this.setState({ justCopied: false });
|
|
}, 2000);
|
|
});
|
|
}
|
|
|
|
render() {
|
|
const text = `<Icon type="${this.props.type}" />`;
|
|
return (
|
|
<CopyToClipboard text={text} onCopy={this.onCopied}>
|
|
<li className={this.state.justCopied ? 'copied' : ''}>
|
|
<Icon type={this.props.type} />
|
|
<span className="anticon-class">{this.props.type}</span>
|
|
</li>
|
|
</CopyToClipboard>
|
|
);
|
|
}
|
|
}
|
|
|