2016-07-22 20:02:17 +00:00
|
|
|
import React, {Component, PropTypes} from 'react';
|
|
|
|
const {clipboard} = require('electron');
|
|
|
|
|
|
|
|
class CopyButton extends Component {
|
|
|
|
constructor (props) {
|
|
|
|
super(props);
|
|
|
|
this.state = {
|
|
|
|
showConfirmation: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_handleClick (e) {
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
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 (
|
|
|
|
<button onClick={this._handleClick.bind(this)} {...other}>
|
2016-08-15 17:04:36 +00:00
|
|
|
{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;
|