2016-07-22 20:02:17 +00:00
|
|
|
import React, {Component, PropTypes} from 'react';
|
|
|
|
const {clipboard} = require('electron');
|
|
|
|
|
|
|
|
class CopyButton extends Component {
|
2016-11-26 08:29:16 +00:00
|
|
|
state = {showConfirmation: false};
|
|
|
|
|
2016-11-29 21:28:22 +00:00
|
|
|
_handleClick = e => {
|
2016-07-22 20:02:17 +00:00
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
clipboard.writeText(this.props.content);
|
|
|
|
|
|
|
|
this.setState({showConfirmation: true});
|
|
|
|
|
2016-11-22 19:42:10 +00:00
|
|
|
this._triggerTimeout = setTimeout(() => {
|
2016-07-22 20:02:17 +00:00
|
|
|
this.setState({showConfirmation: false});
|
|
|
|
}, 2000);
|
2016-11-29 21:28:22 +00:00
|
|
|
};
|
2016-07-22 20:02:17 +00:00
|
|
|
|
2016-11-26 08:29:16 +00:00
|
|
|
componentWillUnmount () {
|
2016-11-22 19:42:10 +00:00
|
|
|
clearTimeout(this._triggerTimeout);
|
2016-07-22 20:02:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const {content, ...other} = this.props;
|
|
|
|
const {showConfirmation} = this.state;
|
|
|
|
|
|
|
|
return (
|
2016-11-29 21:28:22 +00:00
|
|
|
<button onClick={this._handleClick} {...other}>
|
|
|
|
{showConfirmation ?
|
|
|
|
<span>Copied <i className="fa fa-check-circle-o"></i></span> :
|
|
|
|
'Copy to Clipboard'
|
|
|
|
}
|
2016-07-22 20:02:17 +00:00
|
|
|
</button>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CopyButton.propTypes = {
|
|
|
|
content: PropTypes.string.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
export default CopyButton;
|