2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-11-03 22:22:53 +01:00
|
|
|
// 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/>.
|
|
|
|
|
2017-07-17 18:37:33 +02:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2017-02-28 14:20:43 +01:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2017-01-27 15:33:02 +01:00
|
|
|
import Clipboard from 'react-copy-to-clipboard';
|
2016-11-25 15:52:23 +01:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { bindActionCreators } from 'redux';
|
|
|
|
|
2017-05-09 12:01:44 +02:00
|
|
|
import { showSnackbar } from '@parity/shared/redux/providers/snackbarActions';
|
2016-11-25 15:52:23 +01:00
|
|
|
|
2017-07-21 15:46:53 +02:00
|
|
|
import { CopyIcon } from '../Icons';
|
2016-11-03 22:22:53 +01:00
|
|
|
|
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 {
|
2016-11-03 22:22:53 +01:00
|
|
|
static propTypes = {
|
2016-11-25 15:52:23 +01:00
|
|
|
showSnackbar: PropTypes.func.isRequired,
|
2016-11-03 22:22:53 +01:00
|
|
|
data: PropTypes.string.isRequired,
|
2016-11-25 15:52:23 +01:00
|
|
|
|
2016-11-03 22:22:53 +01:00
|
|
|
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,
|
2016-11-25 15:52:23 +01:00
|
|
|
timeoutId: null
|
2016-11-03 22:22:53 +01:00
|
|
|
};
|
|
|
|
|
2016-11-10 17:26:45 +01:00
|
|
|
componentWillUnmount () {
|
|
|
|
const { timeoutId } = this.state;
|
2016-11-25 15:52:23 +01:00
|
|
|
|
2016-11-10 17:26:45 +01:00
|
|
|
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
|
|
|
|
|
|
|
return (
|
2017-02-28 14:20:43 +01:00
|
|
|
<Clipboard
|
|
|
|
onCopy={ this.onCopy }
|
|
|
|
text={ data }
|
|
|
|
>
|
|
|
|
<div
|
2017-05-10 13:23:14 +02:00
|
|
|
className={ styles.icon }
|
2017-02-28 14:20:43 +01:00
|
|
|
onClick={ this.onClick }
|
2017-05-10 13:23:14 +02:00
|
|
|
style={ {
|
|
|
|
height: size,
|
|
|
|
width: size
|
|
|
|
} }
|
2017-02-28 14:20:43 +01:00
|
|
|
>
|
2017-05-10 13:23:14 +02:00
|
|
|
<CopyIcon />
|
2016-11-10 18:47:17 +01:00
|
|
|
</div>
|
2016-11-03 22:22:53 +01:00
|
|
|
</Clipboard>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
onCopy = () => {
|
2016-11-25 15:52:23 +01:00
|
|
|
const { data, onCopy, cooldown, showSnackbar } = this.props;
|
2016-12-08 15:53:29 +01:00
|
|
|
const message = (
|
|
|
|
<div className={ styles.container }>
|
2017-02-28 14:20:43 +01:00
|
|
|
<FormattedMessage
|
|
|
|
id='ui.copyToClipboard.copied'
|
|
|
|
defaultMessage='copied {data} to clipboard'
|
|
|
|
values={ {
|
|
|
|
data: <code className={ styles.data }> { data } </code>
|
|
|
|
} }
|
|
|
|
/>
|
2016-12-08 15:53:29 +01:00
|
|
|
</div>
|
|
|
|
);
|
2016-11-03 22:22:53 +01:00
|
|
|
|
2016-11-10 17:26:45 +01:00
|
|
|
this.setState({
|
|
|
|
copied: true,
|
2016-11-25 15:52:23 +01:00
|
|
|
timeoutId: setTimeout(() => {
|
|
|
|
this.setState({ copied: false, timeoutId: null });
|
2016-11-10 17:26:45 +01:00
|
|
|
}, cooldown)
|
|
|
|
});
|
2016-11-25 15:52:23 +01:00
|
|
|
|
|
|
|
showSnackbar(message, cooldown);
|
2016-11-03 22:22:53 +01:00
|
|
|
onCopy();
|
|
|
|
}
|
2017-02-28 14:20:43 +01:00
|
|
|
|
|
|
|
onClick = (event) => {
|
|
|
|
event.stopPropagation();
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
2016-11-03 22:22:53 +01:00
|
|
|
}
|
2016-11-25 15:52:23 +01:00
|
|
|
|
|
|
|
function mapDispatchToProps (dispatch) {
|
|
|
|
return bindActionCreators({
|
|
|
|
showSnackbar
|
|
|
|
}, dispatch);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(
|
|
|
|
null,
|
|
|
|
mapDispatchToProps
|
|
|
|
)(CopyToClipboard);
|