mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-04 07:10:06 +08:00
51 lines
1.2 KiB
JavaScript
51 lines
1.2 KiB
JavaScript
import { React, PropTypes, Utils } from 'mailspring-exports';
|
|
import { clipboard } from 'electron';
|
|
|
|
class CopyButton extends React.Component {
|
|
static propTypes = {
|
|
btnLabel: PropTypes.string,
|
|
copyValue: PropTypes.string,
|
|
};
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
btnLabel: props.btnLabel,
|
|
};
|
|
this._timeout = null;
|
|
}
|
|
|
|
componentWillReceiveProps(nextProps) {
|
|
clearTimeout(this._timeout);
|
|
this._timeout = null;
|
|
this.setState({ btnLabel: nextProps.btnLabel });
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
clearTimeout(this._timeout);
|
|
}
|
|
|
|
_onCopy = () => {
|
|
if (this._timeout) {
|
|
return;
|
|
}
|
|
const { copyValue, btnLabel } = this.props;
|
|
clipboard.writeText(copyValue);
|
|
this.setState({ btnLabel: 'Copied!' });
|
|
this._timeout = setTimeout(() => {
|
|
this._timeout = null;
|
|
this.setState({ btnLabel: btnLabel });
|
|
}, 2000);
|
|
};
|
|
|
|
render() {
|
|
const { btnLabel } = this.state;
|
|
const otherProps = Utils.fastOmit(this.props, Object.keys(CopyButton.propTypes));
|
|
return (
|
|
<button onClick={this._onCopy} {...otherProps}>
|
|
{btnLabel}
|
|
</button>
|
|
);
|
|
}
|
|
}
|
|
export default CopyButton;
|