| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- import React, {
- memo, useCallback, useEffect, useMemo, useRef, useState,
- } from 'react';
- import { useTranslation } from 'next-i18next';
- import { debounce } from 'throttle-debounce';
- import { useTargetAndAncestors, useIsGuestUser, useIsReadOnlyUser } from '~/stores/context';
- import { useCurrentPagePath, useCurrentPageId } from '~/stores/page';
- import {
- mutatePageTree, useSWRxPageAncestorsChildren, useSWRxRootPage, useSWRxV5MigrationStatus,
- } from '~/stores/page-listing';
- import { useSidebarScrollerRef } from '~/stores/ui';
- import loggerFactory from '~/utils/logger';
- import { ItemsTree } from '../../ItemsTree/ItemsTree';
- import { PageTreeItem } from '../PageTreeItem';
- import { SidebarHeaderReloadButton } from '../SidebarHeaderReloadButton';
- import { PrivateLegacyPagesLink } from './PrivateLegacyPagesLink';
- const logger = loggerFactory('growi:cli:PageTreeSubstance');
- type HeaderProps = {
- isWipPageShown: boolean,
- onWipPageShownChange?: () => void
- }
- export const PageTreeHeader = memo(({ isWipPageShown, onWipPageShownChange }: HeaderProps) => {
- const { t } = useTranslation();
- const { mutate: mutateRootPage } = useSWRxRootPage({ suspense: true });
- useSWRxV5MigrationStatus({ suspense: true });
- const mutate = useCallback(() => {
- mutateRootPage();
- mutatePageTree();
- }, [mutateRootPage]);
- return (
- <>
- <SidebarHeaderReloadButton onClick={() => mutate()} />
- <div className="me-1">
- <button
- color="transparent"
- className="btn p-0 border-0"
- type="button"
- data-bs-toggle="dropdown"
- data-bs-auto-close="outside"
- aria-expanded="false"
- >
- <span className="material-symbols-outlined">more_horiz</span>
- </button>
- <ul className="dropdown-menu">
- <li className="dropdown-item">
- <div className="form-check form-switch flex-fill d-flex">
- <input
- id="show-wip-page-checkbox"
- className="form-check-input"
- type="checkbox"
- defaultChecked={isWipPageShown}
- onChange={onWipPageShownChange}
- />
- <label className="form-check-label flex-grow-1 ms-2" htmlFor="show-wip-page-checkbox">
- {t('sidebar_header.show_wip_page')}
- </label>
- </div>
- </li>
- </ul>
- </div>
- </>
- );
- });
- PageTreeHeader.displayName = 'PageTreeHeader';
- const PageTreeUnavailable = () => {
- const { t } = useTranslation();
- // TODO : improve design
- // Story : https://redmine.weseek.co.jp/issues/83755
- return (
- <div className="mt-5 mx-2 text-center">
- <h3 className="text-gray">{t('v5_page_migration.page_tree_not_avaliable')}</h3>
- <a href="/admin">{t('v5_page_migration.go_to_settings')}</a>
- </div>
- );
- };
- type PageTreeContentProps = {
- isWipPageShown: boolean,
- }
- export const PageTreeContent = memo(({ isWipPageShown }: PageTreeContentProps) => {
- const { data: isGuestUser } = useIsGuestUser();
- const { data: isReadOnlyUser } = useIsReadOnlyUser();
- const { data: currentPath } = useCurrentPagePath();
- const { data: targetId } = useCurrentPageId();
- const { data: targetAndAncestorsData } = useTargetAndAncestors();
- const { data: migrationStatus } = useSWRxV5MigrationStatus({ suspense: true });
- const targetPathOrId = targetId || currentPath;
- const path = currentPath || '/';
- const { data: ancestorsChildrenResult } = useSWRxPageAncestorsChildren(path, { suspense: true });
- const { data: rootPageResult } = useSWRxRootPage({ suspense: true });
- const { data: sidebarScrollerRef } = useSidebarScrollerRef();
- const [isInitialScrollCompleted, setIsInitialScrollCompleted] = useState(false);
- const rootElemRef = useRef(null);
- // *************************** Scroll on init ***************************
- const scrollOnInit = useCallback(() => {
- const scrollTargetElement = document.getElementById('grw-pagetree-current-page-item');
- if (sidebarScrollerRef?.current == null || scrollTargetElement == null) {
- return;
- }
- logger.debug('scrollOnInit has invoked');
- const scrollElement = sidebarScrollerRef.current;
- // NOTE: could not use scrollIntoView
- // https://stackoverflow.com/questions/11039885/scrollintoview-causing-the-whole-page-to-move
- // calculate the center point
- const scrollTop = scrollTargetElement.offsetTop - scrollElement.getBoundingClientRect().height / 2;
- scrollElement.scrollTo({ top: scrollTop });
- setIsInitialScrollCompleted(true);
- }, [sidebarScrollerRef]);
- const scrollOnInitDebounced = useMemo(() => debounce(500, scrollOnInit), [scrollOnInit]);
- useEffect(() => {
- if (isInitialScrollCompleted || ancestorsChildrenResult == null || rootPageResult == null) {
- return;
- }
- const rootElement = rootElemRef.current as HTMLElement | null;
- if (rootElement == null) {
- return;
- }
- const observerCallback = (mutationRecords: MutationRecord[]) => {
- mutationRecords.forEach(() => scrollOnInitDebounced());
- };
- const observer = new MutationObserver(observerCallback);
- observer.observe(rootElement, { childList: true, subtree: true });
- // first call for the situation that all rendering is complete at this point
- scrollOnInitDebounced();
- return () => {
- observer.disconnect();
- };
- }, [isInitialScrollCompleted, scrollOnInitDebounced, ancestorsChildrenResult, rootPageResult]);
- // ******************************* end *******************************
- if (!migrationStatus?.isV5Compatible) {
- return <PageTreeUnavailable />;
- }
- /*
- * dependencies
- */
- if (isGuestUser == null) {
- return null;
- }
- return (
- <div ref={rootElemRef} className="pt-4">
- <ItemsTree
- isEnableActions={!isGuestUser}
- isReadOnlyUser={!!isReadOnlyUser}
- isWipPageShown={isWipPageShown}
- targetPath={path}
- targetPathOrId={targetPathOrId}
- targetAndAncestorsData={targetAndAncestorsData}
- CustomTreeItem={PageTreeItem}
- />
- {!isGuestUser && !isReadOnlyUser && migrationStatus?.migratablePagesCount != null && migrationStatus.migratablePagesCount !== 0 && (
- <div className="grw-pagetree-footer border-top mt-4 py-2 w-100">
- <div className="private-legacy-pages-link px-3 py-2">
- <PrivateLegacyPagesLink />
- </div>
- </div>
- )}
- </div>
- );
- });
- PageTreeContent.displayName = 'PageTreeContent';
|