p5.js-web-editor/client/modules/IDE/components/CopyableInput.jsx

95 lines
2.5 KiB
React
Raw Normal View History

import PropTypes from 'prop-types';
import React from 'react';
2017-10-30 19:38:41 +01:00
import Clipboard from 'clipboard';
2019-01-16 18:35:34 +01:00
import classNames from 'classnames';
import { withTranslation } from 'react-i18next';
2019-01-16 18:35:34 +01:00
2020-04-30 00:34:37 +02:00
import ShareIcon from '../../../images/share.svg';
2017-10-30 19:38:41 +01:00
class CopyableInput extends React.Component {
2017-10-30 22:24:43 +01:00
constructor(props) {
super(props);
this.onMouseLeaveHandler = this.onMouseLeaveHandler.bind(this);
}
2017-10-30 19:38:41 +01:00
componentDidMount() {
this.clipboard = new Clipboard(this.input, {
target: () => this.input
});
2017-10-30 22:24:43 +01:00
this.clipboard.on('success', (e) => {
this.tooltip.classList.add('tooltipped');
this.tooltip.classList.add('tooltipped-n');
});
2017-10-30 19:38:41 +01:00
}
componentWillUnmount() {
this.clipboard.destroy();
}
2017-10-30 22:24:43 +01:00
onMouseLeaveHandler() {
this.tooltip.classList.remove('tooltipped');
this.tooltip.classList.remove('tooltipped-n');
}
2017-10-30 19:38:41 +01:00
render() {
const {
label,
value,
hasPreviewLink
2017-10-30 19:38:41 +01:00
} = this.props;
2019-01-16 18:35:34 +01:00
const copyableInputClass = classNames({
'copyable-input': true,
'copyable-input--with-preview': hasPreviewLink
});
2017-10-30 19:38:41 +01:00
return (
2019-01-16 18:35:34 +01:00
<div className={copyableInputClass}>
2017-10-30 22:24:43 +01:00
<div
2017-10-30 22:38:30 +01:00
className="copyable-input__value-container tooltipped-no-delay"
aria-label={this.props.t('CopyableInput.CopiedARIA')}
2017-10-30 22:24:43 +01:00
ref={(element) => { this.tooltip = element; }}
onMouseLeave={this.onMouseLeaveHandler}
>
2018-05-09 03:35:18 +02:00
<label className="copyable-input__label" htmlFor={`copyable-input__value-${label}`}>
<div className="copyable-input__label-container">
2019-01-16 18:35:34 +01:00
{label}
</div>
2018-05-09 02:57:16 +02:00
<input
type="text"
className="copyable-input__value"
2018-05-09 03:35:18 +02:00
id={`copyable-input__value-${label}`}
2018-05-09 02:57:16 +02:00
value={value}
ref={(element) => { this.input = element; }}
readOnly
/>
</label>
2017-10-30 19:38:41 +01:00
</div>
2019-01-16 18:35:34 +01:00
{hasPreviewLink &&
<a
target="_blank"
rel="noopener noreferrer"
2019-01-16 18:35:34 +01:00
href={value}
className="copyable-input__preview"
aria-label={this.props.t('CopyableInput.CopiedARIA', { label })}
2019-01-16 18:35:34 +01:00
>
<ShareIcon focusable="false" aria-hidden="true" />
2019-01-16 18:35:34 +01:00
</a>
}
2017-10-30 19:38:41 +01:00
</div>
);
}
}
CopyableInput.propTypes = {
label: PropTypes.string.isRequired,
value: PropTypes.string.isRequired,
hasPreviewLink: PropTypes.bool,
t: PropTypes.func.isRequired
};
CopyableInput.defaultProps = {
hasPreviewLink: false
2017-10-30 19:38:41 +01:00
};
export default withTranslation()(CopyableInput);