import React from 'react'; import { pagePathUtils } from '@growi/core'; import { useTranslation } from 'next-i18next'; import dynamic from 'next/dynamic'; import { TabContent, TabPane } from 'reactstrap'; // import { smoothScrollIntoView } from '~/client/util/smooth-scroll'; import { useCurrentPagePath, useIsSharedUser, useIsEditable, useIsUserPage, usePageUser, useShareLinkId, useIsNotFound, useIsNotCreatable, } 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 PageListIcon from '../Icons/PageListIcon'; import { Page } from '../Page'; // import PageEditorByHackmd from '../PageEditorByHackmd'; import TableOfContents from '../TableOfContents'; import { UserInfoProps } from '../User/UserInfo'; import styles from './DisplaySwitcher.module.scss'; const WIKI_HEADER_LINK = 120; const { isTopPage } = pagePathUtils; const PageEditor = dynamic(() => import('../PageEditor'), { ssr: false }); const EditorNavbarBottom = dynamic(() => import('../PageEditor/EditorNavbarBottom'), { ssr: false }); const HashChanged = dynamic(() => import('../EventListeneres/HashChanged'), { ssr: false }); const ContentLinkButtons = dynamic(() => import('../ContentLinkButtons'), { ssr: false }); const NotFoundPage = dynamic(() => import('../NotFoundPage'), { ssr: false }); const UserInfo = dynamic(() => import('../User/UserInfo').then(mod => mod.UserInfo), { ssr: false }); const DisplaySwitcher = React.memo((): JSX.Element => { const { t } = useTranslation(); // get element for smoothScroll // const getCommentListDom = useMemo(() => { return document.getElementById('page-comments-list') }, []); const { data: currentPagePath } = useCurrentPagePath(); const { data: isSharedUser } = useIsSharedUser(); const { data: shareLinkId } = useShareLinkId(); const { data: isUserPage } = useIsUserPage(); const { data: isEditable } = useIsEditable(); const { data: pageUser } = usePageUser(); const { data: isNotFound } = useIsNotFound(); const { data: isNotCreatable } = useIsNotCreatable(); const { data: currentPage } = useSWRxCurrentPage(shareLinkId ?? undefined); const { data: editorMode } = useEditorMode(); const { open: openDescendantPageListModal } = useDescendantsPageListModal(); const isViewMode = editorMode === EditorMode.View; const isTopPagePath = isTopPage(currentPagePath ?? ''); const revision = currentPage?.revision; return ( <>
{ isUserPage && } { !isNotFound && } { isNotFound && }
{ !isNotFound && (
{/* Page list */}
{ currentPagePath != null && !isSharedUser && ( ) }
{/* Comments */} {/* { getCommentListDom != null && !isTopPagePath && ( */} { !isTopPagePath && (
) }
) }
{ isEditable && (
) } { isEditable && (
{/* */}
) }
{ isEditable && !isViewMode && } { isEditable && } ); }); DisplaySwitcher.displayName = 'DisplaySwitcher'; export default DisplaySwitcher;