Form/Input: use CopyToClipboard
This commit is contained in:
parent
acbaed59c0
commit
87c39f066c
@ -24,8 +24,4 @@
|
|||||||
|
|
||||||
.copy {
|
.copy {
|
||||||
margin-right: 0.5em;
|
margin-right: 0.5em;
|
||||||
|
|
||||||
svg {
|
|
||||||
transition: all .5s ease-in-out;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -15,11 +15,9 @@
|
|||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
import React, { Component, PropTypes } from 'react';
|
import React, { Component, PropTypes } from 'react';
|
||||||
|
import { TextField } from 'material-ui';
|
||||||
|
|
||||||
import CopyToClipboard from 'react-copy-to-clipboard';
|
import CopyToClipboard from '../../CopyToClipboard';
|
||||||
import CopyIcon from 'material-ui/svg-icons/content/content-copy';
|
|
||||||
import { TextField, IconButton } from 'material-ui';
|
|
||||||
import { lightWhite, fullWhite } from 'material-ui/styles/colors';
|
|
||||||
|
|
||||||
import styles from './input.css';
|
import styles from './input.css';
|
||||||
|
|
||||||
@ -77,9 +75,7 @@ export default class Input extends Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
state = {
|
state = {
|
||||||
value: this.props.value || '',
|
value: this.props.value || ''
|
||||||
timeoutId: null,
|
|
||||||
copied: false
|
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillReceiveProps (newProps) {
|
componentWillReceiveProps (newProps) {
|
||||||
@ -88,14 +84,6 @@ export default class Input extends Component {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillUnmount () {
|
|
||||||
const { timeoutId } = this.state;
|
|
||||||
|
|
||||||
if (timeoutId) {
|
|
||||||
window.clearTimeout(timeoutId);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
render () {
|
render () {
|
||||||
const { value } = this.state;
|
const { value } = this.state;
|
||||||
const { children, className, hideUnderline, disabled, error, label, hint, multiLine, rows, type } = this.props;
|
const { children, className, hideUnderline, disabled, error, label, hint, multiLine, rows, type } = this.props;
|
||||||
@ -151,7 +139,7 @@ export default class Input extends Component {
|
|||||||
|
|
||||||
renderCopyButton () {
|
renderCopyButton () {
|
||||||
const { allowCopy, hideUnderline, label, hint, floatCopy } = this.props;
|
const { allowCopy, hideUnderline, label, hint, floatCopy } = this.props;
|
||||||
const { copied, value } = this.state;
|
const { value } = this.state;
|
||||||
|
|
||||||
if (!allowCopy) {
|
if (!allowCopy) {
|
||||||
return null;
|
return null;
|
||||||
@ -165,8 +153,6 @@ export default class Input extends Component {
|
|||||||
? allowCopy
|
? allowCopy
|
||||||
: value;
|
: value;
|
||||||
|
|
||||||
const scale = copied ? 'scale(1.15)' : 'scale(1)';
|
|
||||||
|
|
||||||
if (hideUnderline && !label) {
|
if (hideUnderline && !label) {
|
||||||
style.marginBottom = 2;
|
style.marginBottom = 2;
|
||||||
} else if (label && !hint) {
|
} else if (label && !hint) {
|
||||||
@ -184,49 +170,11 @@ export default class Input extends Component {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={ styles.copy } style={ style }>
|
<div className={ styles.copy } style={ style }>
|
||||||
<CopyToClipboard
|
<CopyToClipboard data={ text } />
|
||||||
onCopy={ this.handleCopy }
|
|
||||||
text={ text } >
|
|
||||||
<IconButton
|
|
||||||
tooltip={ `${copied ? 'Copied' : 'Copy'} to clipboard` }
|
|
||||||
tooltipPosition='bottom-right'
|
|
||||||
style={ {
|
|
||||||
width: 16,
|
|
||||||
height: 16,
|
|
||||||
padding: 0
|
|
||||||
} }
|
|
||||||
iconStyle={ {
|
|
||||||
width: 16,
|
|
||||||
height: 16,
|
|
||||||
transform: scale
|
|
||||||
} }
|
|
||||||
tooltipStyles={ {
|
|
||||||
top: 16
|
|
||||||
} }
|
|
||||||
>
|
|
||||||
<CopyIcon
|
|
||||||
color={ copied ? lightWhite : fullWhite }
|
|
||||||
/>
|
|
||||||
</IconButton>
|
|
||||||
</CopyToClipboard>
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
handleCopy = () => {
|
|
||||||
if (this.state.timeoutId) {
|
|
||||||
window.clearTimeout(this.state.timeoutId);
|
|
||||||
}
|
|
||||||
|
|
||||||
this.setState({ copied: true }, () => {
|
|
||||||
const timeoutId = window.setTimeout(() => {
|
|
||||||
this.setState({ copied: false });
|
|
||||||
}, 500);
|
|
||||||
|
|
||||||
this.setState({ timeoutId });
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
onChange = (event, value) => {
|
onChange = (event, value) => {
|
||||||
this.setValue(value);
|
this.setValue(value);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user