openethereum/js/src/ui/CopyToClipboard/copyToClipboard.js

113 lines
2.9 KiB
JavaScript
Raw Normal View History

// Copyright 2015-2017 Parity Technologies (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';
2016-11-25 15:52:23 +01:00
import { connect } from 'react-redux';
import { bindActionCreators } from 'redux';
import { IconButton } from 'material-ui';
import Clipboard from 'react-copy-to-clipboard';
import CopyIcon from 'material-ui/svg-icons/content/content-copy';
import Theme from '../Theme';
2016-11-25 15:52:23 +01:00
import { showSnackbar } from '~/redux/providers/snackbarActions';
2016-11-25 15:52:23 +01:00
const { textColor, disabledTextColor } = Theme.flatButton;
2016-11-10 18:47:17 +01:00
import styles from './copyToClipboard.css';
2016-11-25 15:52:23 +01:00
class CopyToClipboard extends Component {
static propTypes = {
2016-11-25 15:52:23 +01:00
showSnackbar: PropTypes.func.isRequired,
data: PropTypes.string.isRequired,
2016-11-25 15:52:23 +01:00
onCopy: PropTypes.func,
size: PropTypes.number, // in px
cooldown: PropTypes.number // in ms
};
static defaultProps = {
className: '',
onCopy: () => {},
size: 16,
cooldown: 1000
};
state = {
copied: false,
2016-11-25 15:52:23 +01:00
timeoutId: null
};
componentWillUnmount () {
const { timeoutId } = this.state;
2016-11-25 15:52:23 +01:00
if (timeoutId) {
window.clearTimeout(timeoutId);
}
}
render () {
2016-11-14 11:39:36 +01:00
const { data, size } = this.props;
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
<IconButton
disableTouchRipple
style={ { width: size, height: size, padding: '0' } }
iconStyle={ { width: size, height: size } }
>
<CopyIcon color={ copied ? disabledTextColor : textColor } />
</IconButton>
</div>
</Clipboard>
);
}
onCopy = () => {
2016-11-25 15:52:23 +01:00
const { data, onCopy, cooldown, showSnackbar } = this.props;
const message = (
<div className={ styles.container }>
<span>copied </span>
<code className={ styles.data }> { data } </code>
<span> to clipboard</span>
</div>
);
this.setState({
copied: true,
2016-11-25 15:52:23 +01:00
timeoutId: setTimeout(() => {
this.setState({ copied: false, timeoutId: null });
}, cooldown)
});
2016-11-25 15:52:23 +01:00
showSnackbar(message, cooldown);
onCopy();
}
}
2016-11-25 15:52:23 +01:00
function mapDispatchToProps (dispatch) {
return bindActionCreators({
showSnackbar
}, dispatch);
}
export default connect(
null,
mapDispatchToProps
)(CopyToClipboard);