| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- import React, { useState, useCallback } from 'react';
- import { useTranslation } from 'next-i18next';
- import {
- Modal, ModalHeader, ModalBody, ModalFooter,
- } from 'reactstrap';
- import { apiPost } from '~/client/util/apiv1-client';
- import { usePutBackPageModal } from '~/stores/modal';
- import { mutateAllPageInfo } from '~/stores/page';
- import ApiErrorMessageList from './PageManagement/ApiErrorMessageList';
- const PutBackPageModal = () => {
- const { t } = useTranslation();
- const { data: pageDataToRevert, close: closePutBackPageModal } = usePutBackPageModal();
- const { isOpened, page } = pageDataToRevert;
- const { pageId, path } = page;
- const onPutBacked = pageDataToRevert.opts?.onPutBacked;
- const [errs, setErrs] = useState(null);
- const [targetPath, setTargetPath] = useState(null);
- const [isPutbackRecursively, setIsPutbackRecursively] = useState(true);
- function changeIsPutbackRecursivelyHandler() {
- setIsPutbackRecursively(!isPutbackRecursively);
- }
- async function putbackPageButtonHandler() {
- 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,
- });
- mutateAllPageInfo();
- if (onPutBacked != null) {
- onPutBacked(response.page.path);
- }
- closePutBackPageModal();
- }
- catch (err) {
- setTargetPath(err.data);
- setErrs([err]);
- }
- }
- const HeaderContent = () => {
- if (!isOpened) {
- return <></>;
- }
- return (
- <>
- <span className="material-symbols-outlined" aria-hidden="true">undo</span> { t('modal_putback.label.Put Back Page') }
- </>
- );
- };
- const BodyContent = () => {
- if (!isOpened) {
- return <></>;
- }
- return (
- <>
- <div>
- <label className="form-label">{t('modal_putback.label.Put Back Page')}:</label><br />
- <code>{path}</code>
- </div>
- <div className="form-check form-check-warning">
- <input
- className="form-check-input"
- id="cbPutBackRecursively"
- type="checkbox"
- checked={isPutbackRecursively}
- onChange={changeIsPutbackRecursivelyHandler}
- />
- <label htmlFor="cbPutBackRecursively" className="form-label form-check-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>
- </>
- );
- };
- const FooterContent = () => {
- if (!isOpened) {
- return <></>;
- }
- return (
- <>
- <ApiErrorMessageList errs={errs} targetPath={targetPath} />
- <button type="button" className="btn btn-info" onClick={putbackPageButtonHandler} data-testid="put-back-execution-button">
- <span className="material-symbols-outlined" aria-hidden="true">undo</span> { t('Put Back') }
- </button>
- </>
- );
- };
- const closeModalHandler = useCallback(() => {
- closePutBackPageModal();
- setErrs(null);
- }, [closePutBackPageModal]);
- return (
- <Modal isOpen={isOpened} toggle={closeModalHandler} data-testid="put-back-page-modal">
- <ModalHeader tag="h4" toggle={closeModalHandler} className="bg-info text-light">
- <HeaderContent />
- </ModalHeader>
- <ModalBody>
- <BodyContent />
- </ModalBody>
- <ModalFooter>
- <FooterContent />
- </ModalFooter>
- </Modal>
- );
- };
- export default PutBackPageModal;
|