| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247 |
- import React from 'react';
- import PropTypes from 'prop-types';
- import { withTranslation } from 'react-i18next';
- import {
- Modal, ModalHeader, ModalBody, ModalFooter,
- } from 'reactstrap';
- import * as toastr from 'toastr';
- import { withUnstatedContainers } from '../../UnstatedUtils';
- import AppContainer from '../../../services/AppContainer';
- // import { toastSuccess, toastError } from '../../../util/apiNotification';
- const GROUPS_PAGE = [
- 'pages', 'revisions', 'tags', 'pagetagrelations',
- ];
- const GROUPS_USER = [
- 'users', 'externalaccounts', 'usergroups', 'usergrouprelations',
- ];
- const GROUPS_CONFIG = [
- 'configs', 'updateposts', 'globalnotificationsettings',
- ];
- const ALL_GROUPED_COLLECTIONS = GROUPS_PAGE.concat(GROUPS_USER).concat(GROUPS_CONFIG);
- class SelectCollectionsModal extends React.Component {
- constructor(props) {
- super(props);
- this.state = {
- selectedCollections: new Set(),
- };
- this.toggleCheckbox = this.toggleCheckbox.bind(this);
- this.checkAll = this.checkAll.bind(this);
- this.uncheckAll = this.uncheckAll.bind(this);
- this.export = this.export.bind(this);
- this.validateForm = this.validateForm.bind(this);
- }
- toggleCheckbox(e) {
- const { target } = e;
- const { name, checked } = target;
- this.setState((prevState) => {
- const selectedCollections = new Set(prevState.selectedCollections);
- if (checked) {
- selectedCollections.add(name);
- }
- else {
- selectedCollections.delete(name);
- }
- return { selectedCollections };
- });
- }
- checkAll() {
- this.setState({ selectedCollections: new Set(this.props.collections) });
- }
- uncheckAll() {
- this.setState({ selectedCollections: new Set() });
- }
- async export(e) {
- e.preventDefault();
- try {
- // TODO: use appContainer.apiv3.post
- const result = await this.props.appContainer.apiPost('/v3/export', { collections: Array.from(this.state.selectedCollections) });
- // TODO: toastSuccess, toastError
- if (!result.ok) {
- throw new Error('Error occured.');
- }
- // TODO: toastSuccess, toastError
- toastr.success(undefined, 'Export process has requested.', {
- closeButton: true,
- progressBar: true,
- newestOnTop: false,
- showDuration: '100',
- hideDuration: '100',
- timeOut: '1200',
- extendedTimeOut: '150',
- });
- this.props.onExportingRequested();
- this.props.onClose();
- this.setState({ selectedCollections: new Set() });
- }
- catch (err) {
- // TODO: toastSuccess, toastError
- toastr.error(err, 'Error', {
- closeButton: true,
- progressBar: true,
- newestOnTop: false,
- showDuration: '100',
- hideDuration: '100',
- timeOut: '3000',
- });
- }
- }
- validateForm() {
- return this.state.selectedCollections.size > 0;
- }
- renderWarnForUser() {
- // whether this.state.selectedCollections includes one of GROUPS_USER
- const isUserRelatedDataSelected = GROUPS_USER.some((collectionName) => {
- return this.state.selectedCollections.has(collectionName);
- });
- if (!isUserRelatedDataSelected) {
- return <></>;
- }
- const html = this.props.t('admin:export_management.desc_password_seed');
- // eslint-disable-next-line react/no-danger
- return <div className="card well" dangerouslySetInnerHTML={{ __html: html }}></div>;
- }
- renderGroups(groupList, color) {
- const collectionNames = groupList.filter((collectionName) => {
- return this.props.collections.includes(collectionName);
- });
- return this.renderCheckboxes(collectionNames, color);
- }
- renderOthers() {
- const collectionNames = this.props.collections.filter((collectionName) => {
- return !ALL_GROUPED_COLLECTIONS.includes(collectionName);
- });
- return this.renderCheckboxes(collectionNames);
- }
- renderCheckboxes(collectionNames, color) {
- const checkboxColor = color ? `custom-checkbox-${color}` : 'custom-checkbox-info';
- return (
- <div className={`custom-control custom-checkbox ${checkboxColor}`}>
- <div className="row">
- {collectionNames.map((collectionName) => {
- return (
- <div className="col-sm-6 my-1" key={collectionName}>
- <input
- type="checkbox"
- className="custom-control-input"
- id={collectionName}
- name={collectionName}
- value={collectionName}
- checked={this.state.selectedCollections.has(collectionName)}
- onChange={this.toggleCheckbox}
- />
- <label className="text-capitalize custom-control-label ml-3" htmlFor={collectionName}>
- {collectionName}
- </label>
- </div>
- );
- })}
- </div>
- </div>
- );
- }
- render() {
- const { t } = this.props;
- return (
- <Modal isOpen={this.props.isOpen} toggle={this.props.onClose}>
- <ModalHeader tag="h4" toggle={this.props.onClose} className="bg-info text-light">
- {t('admin:export_management.export_collections')}
- </ModalHeader>
- <form onSubmit={this.export}>
- <ModalBody>
- <div className="row">
- <div className="col-sm-12">
- <button type="button" className="btn btn-sm btn-outline-secondary mr-2" onClick={this.checkAll}>
- <i className="fa fa-check-square-o"></i> {t('admin:export_management.check_all')}
- </button>
- <button type="button" className="btn btn-sm btn-outline-secondary mr-2" onClick={this.uncheckAll}>
- <i className="fa fa-square-o"></i> {t('admin:export_management.uncheck_all')}
- </button>
- </div>
- </div>
- <div className="row mt-4">
- <div className="col-sm-12">
- <h3 className="admin-setting-header">MongoDB Page Collections</h3>
- {this.renderGroups(GROUPS_PAGE)}
- </div>
- </div>
- <div className="row mt-4">
- <div className="col-sm-12">
- <h3 className="admin-setting-header">MongoDB User Collections</h3>
- {this.renderGroups(GROUPS_USER, 'danger')}
- {this.renderWarnForUser()}
- </div>
- </div>
- <div className="row mt-4">
- <div className="col-sm-12">
- <h3 className="admin-setting-header">MongoDB Config Collections</h3>
- {this.renderGroups(GROUPS_CONFIG)}
- </div>
- </div>
- <div className="row mt-4">
- <div className="col-sm-12">
- <h3 className="admin-setting-header">MongoDB Other Collections</h3>
- {this.renderOthers()}
- </div>
- </div>
- </ModalBody>
- <ModalFooter>
- <button type="button" className="btn btn-sm btn-outline-secondary" onClick={this.props.onClose}>{t('admin:export_management.cancel')}</button>
- <button type="submit" className="btn btn-sm btn-primary" disabled={!this.validateForm()}>{t('admin:export_management.export')}</button>
- </ModalFooter>
- </form>
- </Modal>
- );
- }
- }
- SelectCollectionsModal.propTypes = {
- t: PropTypes.func.isRequired, // i18next
- appContainer: PropTypes.instanceOf(AppContainer).isRequired,
- isOpen: PropTypes.bool.isRequired,
- onExportingRequested: PropTypes.func.isRequired,
- onClose: PropTypes.func.isRequired,
- collections: PropTypes.arrayOf(PropTypes.string).isRequired,
- };
- /**
- * Wrapper component for using unstated
- */
- const SelectCollectionsModalWrapper = withUnstatedContainers(SelectCollectionsModal, [AppContainer]);
- export default withTranslation()(SelectCollectionsModalWrapper);
|