mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
8452e8b777
* Fixed duplication kve bug * Some changes * Add proptypes linting * Fixed proptypes even more * Filename linting
59 lines
1.2 KiB
JavaScript
59 lines
1.2 KiB
JavaScript
import React, {PureComponent, PropTypes} from 'react';
|
|
import autobind from 'autobind-decorator';
|
|
const {clipboard} = require('electron');
|
|
|
|
@autobind
|
|
class CopyButton extends PureComponent {
|
|
constructor (props) {
|
|
super(props);
|
|
this.state = {
|
|
showConfirmation: false
|
|
};
|
|
}
|
|
|
|
_handleClick (e) {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
|
|
clipboard.writeText(this.props.content);
|
|
|
|
this.setState({showConfirmation: true});
|
|
|
|
this._triggerTimeout = setTimeout(() => {
|
|
this.setState({showConfirmation: false});
|
|
}, 2000);
|
|
}
|
|
|
|
componentWillUnmount () {
|
|
clearTimeout(this._triggerTimeout);
|
|
}
|
|
|
|
render () {
|
|
const {
|
|
content, // eslint-disable-line no-unused-vars
|
|
children,
|
|
...other
|
|
} = this.props;
|
|
const {showConfirmation} = this.state;
|
|
|
|
return (
|
|
<button {...other} onClick={this._handleClick}>
|
|
{showConfirmation
|
|
? <span>Copied <i className="fa fa-check-circle-o"/></span>
|
|
: (children || 'Copy to Clipboard')
|
|
}
|
|
</button>
|
|
);
|
|
}
|
|
}
|
|
|
|
CopyButton.propTypes = {
|
|
// Required
|
|
content: PropTypes.string.isRequired,
|
|
|
|
// Optional
|
|
children: PropTypes.node
|
|
};
|
|
|
|
export default CopyButton;
|