| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 |
- 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<RevisionLoaderProps>(() => 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
- <DropdownItem
- onClick={() => exportAsMarkdown(pageId, revisionId, 'md')}
- className="grw-page-control-dropdown-item"
- >
- <span className="material-symbols-outlined me-1 grw-page-control-dropdown-icon">cloud_download</span>
- {t('page_export.export_page_markdown')}
- </DropdownItem>
- );
- };
- 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: Props) => {
- const scrollElementRef = useRef<HTMLDivElement|null>(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 => <AdditionalMenuItems {...props} pageId={page._id} revisionId={revisionId} />
- : undefined;
- return (
- <div className="d-flex flex-column flex-row-reverse flex px-2 py-1">
- <PageControls
- pageId={page._id}
- revisionId={revisionId}
- path={page.path}
- expandContentWidth={shouldExpandContent}
- showPageControlDropdown={showPageControlDropdown}
- forceHideMenuItems={forceHideMenuItems}
- additionalMenuItemRenderer={additionalMenuItemRenderer}
- onClickDuplicateMenuItem={duplicateItemClickedHandler}
- onClickRenameMenuItem={renameItemClickedHandler}
- onClickDeleteMenuItem={deleteItemClickedHandler}
- />
- </div>
- );
- }, [page, shouldExpandContent, showPageControlDropdown, forceHideMenuItems,
- duplicateItemClickedHandler, renameItemClickedHandler, deleteItemClickedHandler]);
- const fluidLayoutClass = shouldExpandContent ? _fluidLayoutClass : '';
- return (
- <div
- key={page._id}
- data-testid="search-result-content"
- className={`dynamic-layout-root ${moduleClass} ${fluidLayoutClass}`}
- >
- <RightComponent />
- <div className="container-lg grw-container-convertible pt-2 pb-2">
- <PagePathNav pageId={page._id} pagePath={page.path} formerLinkClassName="small" latterLinkClassName="fs-3 text-truncate" />
- </div>
- <div
- id="search-result-content-body-container"
- ref={scrollElementRef}
- className="search-result-content-body-container container-lg grw-container-convertible overflow-y-scroll"
- >
- { page.revision != null && rendererOptions != null && (
- <RevisionLoader
- rendererOptions={rendererOptions}
- pageId={page._id}
- revisionId={page.revision}
- />
- )}
- { page.revision != null && (
- <PageComment
- rendererOptions={rendererOptions}
- pageId={page._id}
- pagePath={page.path}
- revision={page.revision}
- currentUser={currentUser}
- isReadOnly
- />
- )}
- <PageContentFooter
- page={page}
- />
- </div>
- </div>
- );
- };
|