import type { FC } from 'react'; import React, { useCallback, useEffect, useRef, } from 'react'; import { getIdStringForRef } from '@growi/core'; import type { IPageToDeleteWithMeta, IPageToRenameWithMeta } from '@growi/core'; import { useTranslation } from 'next-i18next'; import dynamic from 'next/dynamic'; import { animateScroll } from 'react-scroll'; import { DropdownItem } from 'reactstrap'; import { debounce } from 'throttle-debounce'; import { exportAsMarkdown } from '~/client/services/page-operation'; import { toastSuccess } from '~/client/util/toastr'; import { PagePathNav } from '~/components/Common/PagePathNav'; import type { IPageWithSearchMeta } from '~/interfaces/search'; import type { OnDuplicatedFunction, OnRenamedFunction, OnDeletedFunction } from '~/interfaces/ui'; import { useShouldExpandContent } from '~/services/layout/use-should-expand-content'; import { useCurrentUser } from '~/stores-universal/context'; import { usePageDuplicateModal, usePageRenameModal, usePageDeleteModal, } from '~/stores/modal'; import { mutatePageList, mutatePageTree, mutateRecentlyUpdated } from '~/stores/page-listing'; import { useSearchResultOptions } from '~/stores/renderer'; import { mutateSearching } from '~/stores/search'; import type { AdditionalMenuItemsRendererProps, ForceHideMenuItems } from '../Common/Dropdown/PageItemControl'; import type { RevisionLoaderProps } from '../Page/RevisionLoader'; import styles from './SearchResultContent.module.scss'; const moduleClass = styles['search-result-content']; const _fluidLayoutClass = styles['fluid-layout']; const PageControls = dynamic(() => import('../PageControls').then(mod => mod.PageControls), { ssr: false }); const RevisionLoader = dynamic(() => import('../Page/RevisionLoader').then(mod => mod.RevisionLoader), { ssr: false }); const PageComment = dynamic(() => import('../PageComment').then(mod => mod.PageComment), { ssr: false }); const PageContentFooter = dynamic( () => import('~/components/PageView/PageContentFooter').then(mod => mod.PageContentFooter), { ssr: false }, ); type AdditionalMenuItemsProps = AdditionalMenuItemsRendererProps & { pageId: string, revisionId: string, } const AdditionalMenuItems = (props: AdditionalMenuItemsProps): JSX.Element => { const { t } = useTranslation(); const { pageId, revisionId } = props; return ( // Export markdown exportAsMarkdown(pageId, revisionId, 'md')} className="grw-page-control-dropdown-item" > cloud_download {t('page_export.export_page_markdown')} ); }; const SCROLL_OFFSET_TOP = 30; const MUTATION_OBSERVER_CONFIG = { childList: true, subtree: true }; // omit 'subtree: true' type Props ={ pageWithMeta : IPageWithSearchMeta, highlightKeywords?: string[], showPageControlDropdown?: boolean, forceHideMenuItems?: ForceHideMenuItems, } const scrollToFirstHighlightedKeyword = (scrollElement: HTMLElement): void => { // use querySelector to intentionally get the first element found const toElem = scrollElement.querySelector('.highlighted-keyword') as HTMLElement | null; if (toElem == null) { return; } const distance = toElem.getBoundingClientRect().top - scrollElement.getBoundingClientRect().top - SCROLL_OFFSET_TOP; animateScroll.scrollMore(distance, { containerId: scrollElement.id, duration: 200, }); }; const scrollToFirstHighlightedKeywordDebounced = debounce(500, scrollToFirstHighlightedKeyword); export const SearchResultContent: FC = (props: Props) => { const scrollElementRef = useRef(null); // *************************** Auto Scroll *************************** useEffect(() => { const scrollElement = scrollElementRef.current; if (scrollElement == null) return; const observer = new MutationObserver(() => { scrollToFirstHighlightedKeywordDebounced(scrollElement); }); observer.observe(scrollElement, MUTATION_OBSERVER_CONFIG); // no cleanup function -- 2023.07.31 Yuki Takei // see: https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver/observe // > You can call observe() multiple times on the same MutationObserver // > to watch for changes to different parts of the DOM tree and/or different types of changes. }); // ******************************* end ******************************* const { pageWithMeta, highlightKeywords, showPageControlDropdown, forceHideMenuItems, } = props; const { t } = useTranslation(); const page = pageWithMeta.data; const { open: openDuplicateModal } = usePageDuplicateModal(); const { open: openRenameModal } = usePageRenameModal(); const { open: openDeleteModal } = usePageDeleteModal(); const { data: rendererOptions } = useSearchResultOptions(pageWithMeta.data.path, highlightKeywords); const { data: currentUser } = useCurrentUser(); const shouldExpandContent = useShouldExpandContent(page); const duplicateItemClickedHandler = useCallback(async(pageToDuplicate) => { // eslint-disable-next-line @typescript-eslint/no-unused-vars const duplicatedHandler: OnDuplicatedFunction = (fromPath, toPath) => { toastSuccess(t('duplicated_pages', { fromPath })); mutatePageTree(); mutateRecentlyUpdated(); mutateSearching(); mutatePageList(); }; openDuplicateModal(pageToDuplicate, { onDuplicated: duplicatedHandler }); }, [openDuplicateModal, t]); const renameItemClickedHandler = useCallback((pageToRename: IPageToRenameWithMeta) => { const renamedHandler: OnRenamedFunction = (path) => { toastSuccess(t('renamed_pages', { path })); mutatePageTree(); mutateRecentlyUpdated(); mutateSearching(); mutatePageList(); }; openRenameModal(pageToRename, { onRenamed: renamedHandler }); }, [openRenameModal, t]); const onDeletedHandler: OnDeletedFunction = useCallback((pathOrPathsToDelete, isRecursively, isCompletely) => { if (typeof pathOrPathsToDelete !== 'string') { return; } const path = pathOrPathsToDelete; if (isCompletely) { toastSuccess(t('deleted_pages_completely', { path })); } else { toastSuccess(t('deleted_pages', { path })); } mutatePageTree(); mutateRecentlyUpdated(); mutateSearching(); mutatePageList(); }, [t]); const deleteItemClickedHandler = useCallback((pageToDelete: IPageToDeleteWithMeta) => { openDeleteModal([pageToDelete], { onDeleted: onDeletedHandler }); }, [onDeletedHandler, openDeleteModal]); const RightComponent = useCallback(() => { if (page == null) { return <>; } const revisionId = page.revision != null ? getIdStringForRef(page.revision) : null; const additionalMenuItemRenderer = revisionId != null ? props => : undefined; return (
); }, [page, shouldExpandContent, showPageControlDropdown, forceHideMenuItems, duplicateItemClickedHandler, renameItemClickedHandler, deleteItemClickedHandler]); const fluidLayoutClass = shouldExpandContent ? _fluidLayoutClass : ''; return (
{ page.revision != null && rendererOptions != null && ( )} { page.revision != null && ( )}
); };