import React, { useMemo } from 'react'; import { pagePathUtils } from '@growi/core'; import { useTranslation } from 'next-i18next'; import dynamic from 'next/dynamic'; // import { smoothScrollIntoView } from '~/client/util/smooth-scroll'; import { useCurrentPagePath, useIsSharedUser, useIsEditable, useIsUserPage, useShareLinkId, useIsNotFound, } from '~/stores/context'; import { useDescendantsPageListModal } from '~/stores/modal'; import { useSWRxCurrentPage } from '~/stores/page'; import { EditorMode, useEditorMode } from '~/stores/ui'; import CountBadge from '../Common/CountBadge'; import CustomTabContent from '../CustomNavigation/CustomTabContent'; import PageListIcon from '../Icons/PageListIcon'; import { Page } from '../Page'; import TableOfContents from '../TableOfContents'; import styles from './DisplaySwitcher.module.scss'; const { isTopPage } = pagePathUtils; const PageEditor = dynamic(() => import('../PageEditor'), { ssr: false }); const PageEditorByHackmd = dynamic(() => import('../PageEditorByHackmd').then(mod => mod.PageEditorByHackmd), { ssr: false }); const EditorNavbarBottom = dynamic(() => import('../PageEditor/EditorNavbarBottom'), { ssr: false }); const HashChanged = dynamic(() => import('../EventListeneres/HashChanged'), { ssr: false }); const ContentLinkButtons = dynamic(() => import('../ContentLinkButtons').then(mod => mod.ContentLinkButtons), { ssr: false }); const NotFoundPage = dynamic(() => import('../NotFoundPage'), { ssr: false }); const UserInfo = dynamic(() => import('../User/UserInfo').then(mod => mod.UserInfo), { ssr: false }); const PageView = React.memo((): JSX.Element => { const { t } = useTranslation(); const { data: currentPagePath } = useCurrentPagePath(); const { data: isSharedUser } = useIsSharedUser(); const { data: shareLinkId } = useShareLinkId(); const { data: isUserPage } = useIsUserPage(); const { data: isNotFound } = useIsNotFound(); const { data: currentPage } = useSWRxCurrentPage(shareLinkId ?? undefined); const { open: openDescendantPageListModal } = useDescendantsPageListModal(); const isTopPagePath = isTopPage(currentPagePath ?? ''); return (
{ isUserPage && } { !isNotFound && } { isNotFound && }
{ !isNotFound && (
{/* Page list */}
{ currentPagePath != null && !isSharedUser && ( ) }
{/* Comments */} {/* { getCommentListDom != null && !isTopPagePath && ( */} { !isTopPagePath && (
) }
{ isUserPage && }
) }
); }); PageView.displayName = 'PageView'; const DisplaySwitcher = React.memo((): JSX.Element => { // get element for smoothScroll // const getCommentListDom = useMemo(() => { return document.getElementById('page-comments-list') }, []); const { data: isEditable } = useIsEditable(); const { data: editorMode = EditorMode.View } = useEditorMode(); const isViewMode = editorMode === EditorMode.View; const navTabMapping = useMemo(() => { return { [EditorMode.View]: { Content: () => (
), }, [EditorMode.Editor]: { Content: () => ( isEditable ? (
) : <> ), }, [EditorMode.HackMD]: { Content: () => ( isEditable ? (
) : <> ), }, }; }, [isEditable]); return ( <> { isEditable && !isViewMode && } { isEditable && } ); }); DisplaySwitcher.displayName = 'DisplaySwitcher'; export default DisplaySwitcher;