import React, { useState, useEffect, useCallback } from 'react'; import PropTypes from 'prop-types'; import { Modal, ModalHeader, ModalBody, ModalFooter, } from 'reactstrap'; import { withTranslation } from 'react-i18next'; import { withUnstatedContainers } from './UnstatedUtils'; import AppContainer from '../services/AppContainer'; import PageContainer from '../services/PageContainer'; import PagePathAutoComplete from './PagePathAutoComplete'; import ApiErrorMessageList from './PageManagement/ApiErrorMessageList'; const PageDuplicateModal = (props) => { const { t, appContainer, pageContainer } = props; const config = appContainer.getConfig(); const isReachable = config.isSearchServiceReachable; const { pageId, path } = pageContainer.state; const { crowi } = appContainer.config; const [pageNameInput, setPageNameInput] = useState(path); const [errs, setErrs] = useState(null); const [getSubordinatedError, setGetSuborinatedError] = useState(null); const [isDuplicateRecursively, setIsDuplicateRecursively] = useState(true); const [isDuplicateRecursivelyWithoutExistPath, setIsDuplicateRecursivelyWithoutExistPath] = useState(true); const [isDuplicateExist, setIsDuplicateExist] = useState([]); /** * change pageNameInput for PagePathAutoComplete * @param {string} value */ function ppacInputChangeHandler(value) { createSubordinatedList(value); setPageNameInput(value); } /** * change pageNameInput * @param {string} value */ function inputChangeHandler(value) { setPageNameInput(value); } function changeIsDuplicateRecursivelyHandler() { setIsDuplicateRecursively(!isDuplicateRecursively); } function changeIsDuplicateRecursivelyWithoutExistPathHandler() { setIsDuplicateRecursivelyWithoutExistPath(!isDuplicateRecursivelyWithoutExistPath); } // function changeIsExistHandler() { // setIsExist(true); // } function createSubordinatedList(value) { // ToDo: get the duplicated list from sever // below is psuedo code // let duplicatedList = get.apiv3...... // duplicatedList = duplicatedList.map((value) => //
{path}