From 86755013b4b55612dab3eb4783a64d08638594bf Mon Sep 17 00:00:00 2001 From: fantasticit Date: Fri, 3 Jun 2022 01:51:44 +0800 Subject: [PATCH] tiptap: improve tocs add resizeobserver, scroll active anchor into view --- .../client/src/tiptap/editor/tocs/index.tsx | 28 ++++++++++++++++--- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/packages/client/src/tiptap/editor/tocs/index.tsx b/packages/client/src/tiptap/editor/tocs/index.tsx index 47fc7fae..8f34290a 100644 --- a/packages/client/src/tiptap/editor/tocs/index.tsx +++ b/packages/client/src/tiptap/editor/tocs/index.tsx @@ -2,7 +2,8 @@ import { Anchor, Tooltip } from '@douyinfe/semi-ui'; import cls from 'classnames'; import { throttle } from 'helpers/throttle'; import { useToggle } from 'hooks/use-toggle'; -import React, { useCallback, useEffect, useState } from 'react'; +import React, { useCallback, useEffect, useRef, useState } from 'react'; +import scrollIntoView from 'scroll-into-view-if-needed'; import { TableOfContents } from 'tiptap/core/extensions/table-of-contents'; import { Editor } from 'tiptap/editor/react'; import { findNode } from 'tiptap/prose-utils'; @@ -42,6 +43,7 @@ const Toc = ({ toc, collapsed }) => { const TOCS_WIDTH = 156 + 16 * 2; // 目录展开的宽度 export const Tocs: React.FC<{ editor: Editor; getContainer: () => HTMLElement }> = ({ editor, getContainer }) => { + const $container = useRef(); const [collapsed, toggleCollapsed] = useToggle(true); const [headings, setHeadings] = useState([]); const [nestedHeadings, setNestedHeadings] = useState([]); @@ -51,19 +53,36 @@ export const Tocs: React.FC<{ editor: Editor; getContainer: () => HTMLElement }> if (!el) return; - const handler = () => { + const handler = throttle(() => { const diffWidth = (el.offsetWidth - (el.firstChild as HTMLDivElement).offsetWidth) / 2; toggleCollapsed(diffWidth <= TOCS_WIDTH); - }; + }, 200); handler(); const observer = new MutationObserver(handler); observer.observe(el, { attributes: true, childList: true, subtree: true }); + const resizeObserver = new ResizeObserver(handler); + resizeObserver.observe(el); window.addEventListener('resize', handler); + const scrollHandler = throttle(() => { + const container = $container.current; + if (!container) return; + + const activeAnchor = container.querySelector('.semi-anchor-link-title-active'); + if (!activeAnchor) return; + + scrollIntoView(activeAnchor, { behavior: 'smooth', scrollMode: 'if-needed' }); + }, 200); + + el.addEventListener('scroll', scrollHandler); + return () => { observer.disconnect(); + resizeObserver.disconnect(); window.removeEventListener('resize', handler); + + el.removeEventListener('scroll', scrollHandler); }; }, [getContainer, toggleCollapsed]); @@ -125,7 +144,7 @@ export const Tocs: React.FC<{ editor: Editor; getContainer: () => HTMLElement }> if (!headings || !headings.length) return null; return ( -
+
HTMLElement }> width: collapsed ? 56 : 156, overflow: 'auto', }} + scrollMotion > {collapsed ? headings.map((toc) => {