| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- import React, { Fragment } from 'react';
- import PropTypes from 'prop-types';
- import { withTranslation } from 'react-i18next';
- import * as toastr from 'toastr';
- 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);
- this.resetState = this.resetState.bind(this);
- }
- handleUpload({ meta, fileName, fileStats }) {
- this.setState({
- fileName,
- fileStats,
- });
- }
- async discardData() {
- try {
- const { fileName } = this.state;
- await this.props.appContainer.apiDelete(`/v3/import/${this.state.fileName}`, {});
- this.resetState();
- // TODO: toastSuccess, toastError
- toastr.success(undefined, `Deleted ${fileName}`, {
- closeButton: true,
- progressBar: true,
- newestOnTop: false,
- showDuration: '100',
- hideDuration: '100',
- timeOut: '1200',
- extendedTimeOut: '150',
- });
- }
- catch (err) {
- // TODO: toastSuccess, toastError
- toastr.error(err, 'Error', {
- closeButton: true,
- progressBar: true,
- newestOnTop: false,
- showDuration: '100',
- hideDuration: '100',
- timeOut: '3000',
- });
- }
- }
- resetState() {
- this.setState(this.initialState);
- }
- render() {
- const { t } = this.props;
- return (
- <Fragment>
- <legend>{t('importer_management.import_form_growi')}</legend>
- <div className="alert alert-warning">
- <i className="icon-exclamation"></i> { t('importer_management.beta_warning') }
- </div>
- <div className="well well-sm small">
- <ul>
- <li>{t('importer_management.growi_settings.overwrite_documents')}</li>
- </ul>
- </div>
- {this.state.fileName ? (
- <Fragment>
- <GrowiZipImportForm
- fileName={this.state.fileName}
- fileStats={this.state.fileStats}
- onDiscard={this.discardData}
- onPostImport={this.resetState}
- />
- </Fragment>
- ) : (
- <GrowiZipUploadForm
- onUpload={this.handleUpload}
- />
- )}
- </Fragment>
- );
- }
- }
- 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);
|