You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.3 KiB
45 lines
1.3 KiB
const { Component } = require('react')
|
|
const PropTypes = require('prop-types')
|
|
const h = require('react-hyperscript')
|
|
const copyToClipboard = require('copy-to-clipboard')
|
|
const { exportAsFile } = require('../../util')
|
|
|
|
class ExportTextContainer extends Component {
|
|
render () {
|
|
const { text = '', filename = '' } = this.props
|
|
const { t } = this.context
|
|
|
|
return (
|
|
h('.export-text-container', [
|
|
h('.export-text-container__text-container', [
|
|
h('.export-text-container__text', text),
|
|
]),
|
|
h('.export-text-container__buttons-container', [
|
|
h('.export-text-container__button.export-text-container__button--copy', {
|
|
onClick: () => copyToClipboard(text),
|
|
}, [
|
|
h('img', { src: 'images/copy-to-clipboard.svg' }),
|
|
h('.export-text-container__button-text', t('copyToClipboard')),
|
|
]),
|
|
h('.export-text-container__button', {
|
|
onClick: () => exportAsFile(filename, text),
|
|
}, [
|
|
h('img', { src: 'images/download.svg' }),
|
|
h('.export-text-container__button-text', t('saveAsCsvFile')),
|
|
]),
|
|
]),
|
|
])
|
|
)
|
|
}
|
|
}
|
|
|
|
ExportTextContainer.propTypes = {
|
|
text: PropTypes.string,
|
|
filename: PropTypes.string,
|
|
}
|
|
|
|
ExportTextContainer.contextTypes = {
|
|
t: PropTypes.func,
|
|
}
|
|
|
|
module.exports = ExportTextContainer
|
|
|