| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299 |
- import React, { useState } from 'react';
- import PropTypes from 'prop-types';
- import { Modal, ModalHeader, ModalBody } from 'reactstrap';
- import { withTranslation } from 'react-i18next';
- import { format } from 'date-fns';
- import { pagePathUtils, pathUtils } from '@growi/core';
- import AppContainer from '~/client/services/AppContainer';
- import { withUnstatedContainers } from './UnstatedUtils';
- import { toastError } from '~/client/util/apiNotification';
- import { usePageCreateModalOpened } from '~/stores/ui';
- import PagePathAutoComplete from './PagePathAutoComplete';
- const {
- userPageRoot, isCreatablePage, generateEditorPath,
- } = pagePathUtils;
- const PageCreateModal = (props) => {
- const { t, appContainer } = props;
- const { data: isPageCreateModalOpened, mutate: mutatePageCreateModalOpened } = usePageCreateModalOpened();
- const config = appContainer.getConfig();
- const isReachable = config.isSearchServiceReachable;
- const pathname = decodeURI(window.location.pathname);
- const userPageRootPath = userPageRoot(appContainer.currentUser);
- const pageNameInputInitialValue = isCreatablePage(pathname) ? pathUtils.addTrailingSlash(pathname) : '/';
- const now = format(new Date(), 'yyyy/MM/dd');
- const [todayInput1, setTodayInput1] = useState(t('Memo'));
- const [todayInput2, setTodayInput2] = useState('');
- const [pageNameInput, setPageNameInput] = useState(pageNameInputInitialValue);
- const [template, setTemplate] = useState(null);
- function transitBySubmitEvent(e, transitHandler) {
- // prevent page transition by submit
- e.preventDefault();
- transitHandler();
- }
- /**
- * change todayInput1
- * @param {string} value
- */
- function onChangeTodayInput1Handler(value) {
- setTodayInput1(value);
- }
- /**
- * change todayInput2
- * @param {string} value
- */
- function onChangeTodayInput2Handler(value) {
- setTodayInput2(value);
- }
- /**
- * change pageNameInput
- * @param {string} value
- */
- function onChangePageNameInputHandler(value) {
- setPageNameInput(value);
- }
- /**
- * change template
- * @param {string} value
- */
- function onChangeTemplateHandler(value) {
- setTemplate(value);
- }
- /**
- * join path, check if creatable, then redirect
- * @param {string} paths
- */
- async function redirectToEditor(...paths) {
- try {
- const editorPath = await generateEditorPath(...paths);
- window.location.href = editorPath;
- }
- catch (err) {
- toastError(err);
- }
- }
- /**
- * access today page
- */
- function createTodayPage() {
- let tmpTodayInput1 = todayInput1;
- if (tmpTodayInput1 === '') {
- tmpTodayInput1 = t('Memo');
- }
- redirectToEditor(userPageRootPath, tmpTodayInput1, now, todayInput2);
- }
- /**
- * access input page
- */
- function createInputPage() {
- redirectToEditor(pageNameInput);
- }
- function ppacInputChangeHandler(value) {
- setPageNameInput(value);
- }
- function ppacSubmitHandler() {
- createInputPage();
- }
- /**
- * access template page
- */
- function createTemplatePage(e) {
- const pageName = (template === 'children') ? '_template' : '__template';
- redirectToEditor(pathname, pageName);
- }
- function renderCreateTodayForm() {
- return (
- <div className="row">
- <fieldset className="col-12 mb-4">
- <h3 className="grw-modal-head pb-2">{t("Create today's")}</h3>
- <div className="d-sm-flex align-items-center justify-items-between">
- <div className="d-flex align-items-center flex-fill flex-wrap flex-lg-nowrap">
- <div className="d-flex align-items-center">
- <span>{userPageRootPath}/</span>
- <form onSubmit={e => transitBySubmitEvent(e, createTodayPage)}>
- <input
- type="text"
- className="page-today-input1 form-control text-center mx-2"
- value={todayInput1}
- onChange={e => onChangeTodayInput1Handler(e.target.value)}
- />
- </form>
- <span className="page-today-suffix">/{now}/</span>
- </div>
- <form className="mt-1 mt-lg-0 ml-lg-2 w-100" onSubmit={e => transitBySubmitEvent(e, createTodayPage)}>
- <input
- type="text"
- className="page-today-input2 form-control w-100"
- id="page-today-input2"
- placeholder={t('Input page name (optional)')}
- value={todayInput2}
- onChange={e => onChangeTodayInput2Handler(e.target.value)}
- />
- </form>
- </div>
- <div className="d-flex justify-content-end mt-1 mt-sm-0">
- <button type="button" className="grw-btn-create-page btn btn-outline-primary rounded-pill text-nowrap ml-3" onClick={createTodayPage}>
- <i className="icon-fw icon-doc"></i>{t('Create')}
- </button>
- </div>
- </div>
- </fieldset>
- </div>
- );
- }
- function renderInputPageForm() {
- return (
- <div className="row">
- <fieldset className="col-12 mb-4">
- <h3 className="grw-modal-head pb-2">{t('Create under')}</h3>
- <div className="d-sm-flex align-items-center justify-items-between">
- <div className="flex-fill">
- {isReachable
- ? (
- <PagePathAutoComplete
- initializedPath={pageNameInput}
- addTrailingSlash
- onSubmit={ppacSubmitHandler}
- onInputChange={ppacInputChangeHandler}
- autoFocus
- />
- )
- : (
- <form onSubmit={e => transitBySubmitEvent(e, createInputPage)}>
- <input
- type="text"
- value={pageNameInput}
- className="form-control flex-fill"
- placeholder={t('Input page name')}
- onChange={e => onChangePageNameInputHandler(e.target.value)}
- required
- />
- </form>
- )}
- </div>
- <div className="d-flex justify-content-end mt-1 mt-sm-0">
- <button type="button" className="grw-btn-create-page btn btn-outline-primary rounded-pill text-nowrap ml-3" onClick={createInputPage}>
- <i className="icon-fw icon-doc"></i>{t('Create')}
- </button>
- </div>
- </div>
- </fieldset>
- </div>
- );
- }
- function renderTemplatePageForm() {
- return (
- <div className="row">
- <fieldset className="col-12">
- <h3 className="grw-modal-head pb-2">
- {t('template.modal_label.Create template under')}<br />
- <code className="h6">{pathname}</code>
- </h3>
- <div className="d-sm-flex align-items-center justify-items-between">
- <div id="dd-template-type" className="dropdown flex-fill">
- <button id="template-type" type="button" className="btn btn-secondary btn dropdown-toggle w-100" data-toggle="dropdown">
- {template == null && t('template.option_label.select')}
- {template === 'children' && t('template.children.label')}
- {template === 'decendants' && t('template.decendants.label')}
- </button>
- <div className="dropdown-menu" aria-labelledby="userMenu">
- <button className="dropdown-item" type="button" onClick={() => onChangeTemplateHandler('children')}>
- {t('template.children.label')} (_template)<br className="d-block d-md-none" />
- <small className="text-muted text-wrap">- {t('template.children.desc')}</small>
- </button>
- <button className="dropdown-item" type="button" onClick={() => onChangeTemplateHandler('decendants')}>
- {t('template.decendants.label')} (__template) <br className="d-block d-md-none" />
- <small className="text-muted">- {t('template.decendants.desc')}</small>
- </button>
- </div>
- </div>
- <div className="d-flex justify-content-end mt-1 mt-sm-0">
- <button
- type="button"
- className={`grw-btn-create-page btn btn-outline-primary rounded-pill text-nowrap ml-3 ${template == null && 'disabled'}`}
- onClick={createTemplatePage}
- >
- <i className="icon-fw icon-doc"></i>{t('Edit')}
- </button>
- </div>
- </div>
- </fieldset>
- </div>
- );
- }
- return (
- <Modal
- size="lg"
- isOpen={isPageCreateModalOpened}
- toggle={() => mutatePageCreateModalOpened(false)}
- className="grw-create-page"
- autoFocus={false}
- >
- <ModalHeader tag="h4" toggle={() => mutatePageCreateModalOpened(false)} className="bg-primary text-light">
- {t('New Page')}
- </ModalHeader>
- <ModalBody>
- {renderCreateTodayForm()}
- {renderInputPageForm()}
- {renderTemplatePageForm()}
- </ModalBody>
- </Modal>
- );
- };
- /**
- * Wrapper component for using unstated
- */
- const ModalControlWrapper = withUnstatedContainers(PageCreateModal, [AppContainer]);
- PageCreateModal.propTypes = {
- t: PropTypes.func.isRequired, // i18next
- appContainer: PropTypes.instanceOf(AppContainer).isRequired,
- };
- export default withTranslation()(ModalControlWrapper);
|