| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- import React, { useState } from 'react';
- import PropTypes from 'prop-types';
- import {
- Modal, ModalHeader, ModalBody, ModalFooter,
- } from 'reactstrap';
- import { withTranslation } from 'react-i18next';
- import { usePutBackPageMOdal } from '~/stores/modal';
- import { apiPost } from '~/client/util/apiv1-client';
- import ApiErrorMessageList from './PageManagement/ApiErrorMessageList';
- const PutBackPageModal = (props) => {
- const {
- t,
- } = props;
- const { data: pageDataToRevert, close: closePutBackPageModal } = usePutBackPageMOdal();
- const { isOpened, pageId, path } = pageDataToRevert;
- const [errs, setErrs] = useState(null);
- const [isPutbackRecursively, setIsPutbackRecursively] = useState(true);
- function changeIsPutbackRecursivelyHandler() {
- setIsPutbackRecursively(!isPutbackRecursively);
- }
- async function putbackPage() {
- setErrs(null);
- try {
- // control flag
- // If is it not true, Request value must be `null`.
- const recursively = isPutbackRecursively ? true : null;
- const response = await apiPost('/pages.revertRemove', {
- page_id: pageId,
- recursively,
- });
- const putbackPagePath = response.page.path;
- window.location.href = encodeURI(putbackPagePath);
- }
- catch (err) {
- setErrs(err);
- }
- }
- async function putbackPageButtonHandler() {
- putbackPage();
- }
- return (
- <Modal isOpen={isOpened} toggle={closePutBackPageModal} className="grw-create-page">
- <ModalHeader tag="h4" toggle={closePutBackPageModal} className="bg-info text-light">
- <i className="icon-action-undo mr-2" aria-hidden="true"></i> { t('modal_putback.label.Put Back Page') }
- </ModalHeader>
- <ModalBody>
- <div className="form-group">
- <label>{t('modal_putback.label.Put Back Page')}:</label><br />
- <code>{path}</code>
- </div>
- <div className="custom-control custom-checkbox custom-checkbox-warning">
- <input
- className="custom-control-input"
- id="cbPutBackRecursively"
- type="checkbox"
- checked={isPutbackRecursively}
- onChange={changeIsPutbackRecursivelyHandler}
- />
- <label htmlFor="cbPutBackRecursively" className="custom-control-label">
- { t('modal_putback.label.recursively') }
- </label>
- <p className="form-text text-muted mt-0">
- <code>{ path }</code>{ t('modal_putback.help.recursively') }
- </p>
- </div>
- </ModalBody>
- <ModalFooter>
- <ApiErrorMessageList errs={errs} />
- <button type="button" className="btn btn-info" onClick={putbackPageButtonHandler}>
- <i className="icon-action-undo mr-2" aria-hidden="true"></i> { t('Put Back') }
- </button>
- </ModalFooter>
- </Modal>
- );
- };
- PutBackPageModal.propTypes = {
- t: PropTypes.func.isRequired, // i18next
- };
- export default withTranslation()(PutBackPageModal);
|