| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- import { FC, useCallback, useState } from 'react';
- import type { IPagePopulatedToShowRevision } from '@growi/core';
- import { usePageSelectModal } from '~/stores/modal';
- import { EditorMode, useEditorMode } from '~/stores/ui';
- import { PagePathNav } from '../Common/PagePathNav';
- import { PageSelectModal } from '../PageSelectModal/PageSelectModal';
- import { TextInputForPageTitleAndPath } from './TextInputForPageTitleAndPath';
- import { usePagePathSubmitHandler } from './page-header-utils';
- type Props = {
- currentPagePath: string
- currentPage: IPagePopulatedToShowRevision
- }
- export const PagePathHeader: FC<Props> = (props) => {
- const { currentPagePath, currentPage } = props;
- const [isRenameInputShown, setRenameInputShown] = useState(false);
- const [isButtonsShown, setButtonShown] = useState(false);
- const [inputText, setInputText] = useState('');
- const { data: editorMode } = useEditorMode();
- const { data: PageSelectModalData, open: openPageSelectModal } = usePageSelectModal();
- const pagePathSubmitHandler = usePagePathSubmitHandler(currentPage, currentPagePath, setRenameInputShown);
- const stateHandler = { isRenameInputShown, setRenameInputShown };
- const isOpened = PageSelectModalData?.isOpened ?? false;
- const isViewMode = editorMode === EditorMode.View;
- const isEditorMode = !isViewMode;
- const PagePath = useCallback(() => {
- return (
- <>
- { currentPagePath != null && (
- <PagePathNav
- pageId={currentPage._id}
- pagePath={currentPagePath}
- isSingleLineMode={isEditorMode}
- />
- )}
- </>
- );
- }, [currentPage._id, currentPagePath, isEditorMode]);
- const handleInputChange = (inputText: string) => {
- setInputText(inputText);
- };
- console.log(inputText);
- return (
- <>
- <div onMouseLeave={() => setButtonShown(false)}>
- <div
- className="row"
- >
- <div
- className="col-4"
- onMouseEnter={() => setButtonShown(true)}
- >
- <TextInputForPageTitleAndPath
- currentPagePath={currentPagePath}
- currentPage={currentPage}
- stateHandler={stateHandler}
- inputValue={currentPagePath}
- CustomComponent={PagePath}
- handleInputChange={handleInputChange}
- />
- </div>
- { isButtonsShown
- && (
- <>
- <div className="col-4">
- {
- isRenameInputShown
- ? <button type="button" onClick={() => console.log('完了!')}>完了ボタン</button>
- : <button type="button" onClick={() => setRenameInputShown(true)}>編集ボタン</button>
- }
- </div>
- <div className="col-4">
- <button type="button" onClick={openPageSelectModal}>ページツリーボタン</button>
- </div>
- </>
- )}
- { isOpened
- && (
- <PageSelectModal />
- )}
- </div>
- </div>
- </>
- );
- };
|