2016-11-03 22:22:53 +01:00
|
|
|
// Copyright 2015, 2016 Ethcore (UK) Ltd.
|
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import React, { Component, PropTypes } from 'react';
|
|
|
|
import { IconButton } from 'material-ui';
|
2016-11-10 18:47:17 +01:00
|
|
|
import Snackbar from 'material-ui/Snackbar';
|
2016-11-03 22:22:53 +01:00
|
|
|
import Clipboard from 'react-copy-to-clipboard';
|
|
|
|
import CopyIcon from 'material-ui/svg-icons/content/content-copy';
|
|
|
|
import Theme from '../Theme';
|
2016-11-10 18:47:17 +01:00
|
|
|
import { darkBlack } from 'material-ui/styles/colors';
|
2016-11-03 22:22:53 +01:00
|
|
|
const { textColor, disabledTextColor } = Theme.flatButton;
|
|
|
|
|
2016-11-10 18:47:17 +01:00
|
|
|
import styles from './copyToClipboard.css';
|
|
|
|
|
2016-11-03 22:22:53 +01:00
|
|
|
export default class CopyToClipboard extends Component {
|
|
|
|
static propTypes = {
|
|
|
|
data: PropTypes.string.isRequired,
|
|
|
|
onCopy: PropTypes.func,
|
|
|
|
size: PropTypes.number, // in px
|
|
|
|
cooldown: PropTypes.number // in ms
|
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
|
|
|
className: '',
|
|
|
|
onCopy: () => {},
|
|
|
|
size: 16,
|
|
|
|
cooldown: 1000
|
|
|
|
};
|
|
|
|
|
|
|
|
state = {
|
2016-11-10 17:26:45 +01:00
|
|
|
copied: false,
|
|
|
|
timeout: null
|
2016-11-03 22:22:53 +01:00
|
|
|
};
|
|
|
|
|
2016-11-10 17:26:45 +01:00
|
|
|
componentWillUnmount () {
|
|
|
|
const { timeoutId } = this.state;
|
|
|
|
if (timeoutId) {
|
|
|
|
window.clearTimeout(timeoutId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-03 22:22:53 +01:00
|
|
|
render () {
|
2016-11-14 11:39:36 +01:00
|
|
|
const { data, size } = this.props;
|
2016-11-03 22:22:53 +01:00
|
|
|
const { copied } = this.state;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Clipboard onCopy={ this.onCopy } text={ data }>
|
2016-11-14 11:39:36 +01:00
|
|
|
<div className={ styles.wrapper }>
|
2016-11-10 18:47:17 +01:00
|
|
|
<Snackbar
|
|
|
|
open={ copied }
|
|
|
|
message={
|
|
|
|
<div>copied <code className={ styles.data }>{ data }</code> to clipboard</div>
|
|
|
|
}
|
|
|
|
autoHideDuration={ 2000 }
|
|
|
|
bodyStyle={ { backgroundColor: darkBlack } }
|
|
|
|
/>
|
|
|
|
<IconButton
|
|
|
|
disableTouchRipple
|
|
|
|
style={ { width: size, height: size, padding: '0' } }
|
|
|
|
iconStyle={ { width: size, height: size } }
|
|
|
|
>
|
|
|
|
<CopyIcon color={ copied ? disabledTextColor : textColor } />
|
|
|
|
</IconButton>
|
|
|
|
</div>
|
2016-11-03 22:22:53 +01:00
|
|
|
</Clipboard>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
onCopy = () => {
|
|
|
|
const { cooldown, onCopy } = this.props;
|
|
|
|
|
2016-11-10 17:26:45 +01:00
|
|
|
this.setState({
|
|
|
|
copied: true,
|
|
|
|
timeout: setTimeout(() => {
|
|
|
|
this.setState({ copied: false, timeout: null });
|
|
|
|
}, cooldown)
|
|
|
|
});
|
2016-11-03 22:22:53 +01:00
|
|
|
onCopy();
|
|
|
|
}
|
|
|
|
}
|