import React, { Fragment } from 'react'; import PropTypes from 'prop-types'; import { withTranslation } from 'react-i18next'; import GrowiZipUploadForm from './GrowiZipUploadForm'; import GrowiZipImportForm from './GrowiZipImportForm'; import { createSubscribedElement } from '../../UnstatedUtils'; import AppContainer from '../../../services/AppContainer'; // import { toastSuccess, toastError } from '../../../util/apiNotification'; class GrowiZipImportSection extends React.Component { constructor(props) { super(props); this.initialState = { fileName: '', fileStats: [], }; this.state = this.initialState; this.handleUpload = this.handleUpload.bind(this); this.discardData = this.discardData.bind(this); } handleUpload({ meta, fileName, fileStats }) { this.setState({ fileName, fileStats, }); } discardData() { this.setState(this.initialState); } render() { const { t } = this.props; return ( {t('importer_management.import_form_growi')}
{this.state.fileName ? ( ) : ( )}
); } } GrowiZipImportSection.propTypes = { t: PropTypes.func.isRequired, // i18next appContainer: PropTypes.instanceOf(AppContainer).isRequired, }; /** * Wrapper component for using unstated */ const GrowiZipImportSectionWrapper = (props) => { return createSubscribedElement(GrowiZipImportSection, props, [AppContainer]); }; export default withTranslation()(GrowiZipImportSectionWrapper);