mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-31 23:16:54 +00:00
fix catalog auto scroll
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
import React, { useCallback, useEffect, useRef, useState } from 'react'
|
import React, { useEffect, useRef, useState } from 'react'
|
||||||
import throttle from 'lodash.throttle'
|
import throttle from 'lodash.throttle'
|
||||||
import { uuidToId } from 'notion-utils'
|
import { uuidToId } from 'notion-utils'
|
||||||
import { useGlobal } from '@/lib/global'
|
import { useGlobal } from '@/lib/global'
|
||||||
@@ -12,51 +12,51 @@ import { useGlobal } from '@/lib/global'
|
|||||||
const Catalog = ({ toc }) => {
|
const Catalog = ({ toc }) => {
|
||||||
const { locale } = useGlobal()
|
const { locale } = useGlobal()
|
||||||
|
|
||||||
|
// 同步选中目录事件
|
||||||
|
const [activeSection, setActiveSection] = useState(null)
|
||||||
|
|
||||||
// 监听滚动事件
|
// 监听滚动事件
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
window.addEventListener('scroll', actionSectionScrollSpy)
|
const throttleMs = 200
|
||||||
|
const actionSectionScrollSpy = throttle(() => {
|
||||||
|
const sections = document.getElementsByClassName('notion-h')
|
||||||
|
let prevBBox = null
|
||||||
|
let currentSectionId = activeSection
|
||||||
|
for (let i = 0; i < sections.length; ++i) {
|
||||||
|
const section = sections[i]
|
||||||
|
if (!section || !(section instanceof Element)) continue
|
||||||
|
if (!currentSectionId) {
|
||||||
|
currentSectionId = section.getAttribute('data-id')
|
||||||
|
}
|
||||||
|
const bbox = section.getBoundingClientRect()
|
||||||
|
const prevHeight = prevBBox ? bbox.top - prevBBox.bottom : 0
|
||||||
|
const offset = Math.max(150, prevHeight / 4)
|
||||||
|
// GetBoundingClientRect returns values relative to viewport
|
||||||
|
if (bbox.top - offset < 0) {
|
||||||
|
currentSectionId = section.getAttribute('data-id')
|
||||||
|
prevBBox = bbox
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
// No need to continue loop, if last element has been detected
|
||||||
|
break
|
||||||
|
}
|
||||||
|
setActiveSection(currentSectionId)
|
||||||
|
const index = toc?.findIndex(obj => uuidToId(obj.id) === currentSectionId)
|
||||||
|
tRef?.current?.scrollTo({ top: 28 * index, behavior: 'smooth' })
|
||||||
|
}, throttleMs)
|
||||||
|
|
||||||
actionSectionScrollSpy()
|
actionSectionScrollSpy()
|
||||||
|
window.addEventListener('scroll', actionSectionScrollSpy)
|
||||||
return () => {
|
return () => {
|
||||||
window.removeEventListener('scroll', actionSectionScrollSpy)
|
window.removeEventListener('scroll', actionSectionScrollSpy)
|
||||||
}
|
}
|
||||||
}, [])
|
}, [toc])
|
||||||
|
|
||||||
// 目录自动滚动
|
// 目录自动滚动
|
||||||
const tRef = useRef(null)
|
const tRef = useRef(null)
|
||||||
const tocIds = []
|
|
||||||
|
|
||||||
// 同步选中目录事件
|
|
||||||
const [activeSection, setActiveSection] = useState(null)
|
|
||||||
const throttleMs = 200
|
|
||||||
const actionSectionScrollSpy = useCallback(throttle(() => {
|
|
||||||
const sections = document.getElementsByClassName('notion-h')
|
|
||||||
let prevBBox = null
|
|
||||||
let currentSectionId = activeSection
|
|
||||||
for (let i = 0; i < sections.length; ++i) {
|
|
||||||
const section = sections[i]
|
|
||||||
if (!section || !(section instanceof Element)) continue
|
|
||||||
if (!currentSectionId) {
|
|
||||||
currentSectionId = section.getAttribute('data-id')
|
|
||||||
}
|
|
||||||
const bbox = section.getBoundingClientRect()
|
|
||||||
const prevHeight = prevBBox ? bbox.top - prevBBox.bottom : 0
|
|
||||||
const offset = Math.max(150, prevHeight / 4)
|
|
||||||
// GetBoundingClientRect returns values relative to viewport
|
|
||||||
if (bbox.top - offset < 0) {
|
|
||||||
currentSectionId = section.getAttribute('data-id')
|
|
||||||
prevBBox = bbox
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
// No need to continue loop, if last element has been detected
|
|
||||||
break
|
|
||||||
}
|
|
||||||
setActiveSection(currentSectionId)
|
|
||||||
const index = tocIds.indexOf(currentSectionId) || 0
|
|
||||||
tRef?.current?.scrollTo({ top: 28 * index, behavior: 'smooth' })
|
|
||||||
}, throttleMs))
|
|
||||||
|
|
||||||
// 无目录就直接返回空
|
// 无目录就直接返回空
|
||||||
if (!toc || toc.length < 1) {
|
if (!toc || toc?.length < 1) {
|
||||||
return <></>
|
return <></>
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -66,7 +66,6 @@ const Catalog = ({ toc }) => {
|
|||||||
<nav ref={tRef} className='h-full overflow-y-auto overscroll-none scroll-hidden font-sans text-black'>
|
<nav ref={tRef} className='h-full overflow-y-auto overscroll-none scroll-hidden font-sans text-black'>
|
||||||
{toc.map((tocItem) => {
|
{toc.map((tocItem) => {
|
||||||
const id = uuidToId(tocItem.id)
|
const id = uuidToId(tocItem.id)
|
||||||
tocIds.push(id)
|
|
||||||
return (
|
return (
|
||||||
<a
|
<a
|
||||||
key={id}
|
key={id}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { useCallback, useEffect, useRef, useState } from 'react'
|
import { useEffect, useRef, useState } from 'react'
|
||||||
import throttle from 'lodash.throttle'
|
import throttle from 'lodash.throttle'
|
||||||
import { uuidToId } from 'notion-utils'
|
import { uuidToId } from 'notion-utils'
|
||||||
import { useGlobal } from '@/lib/global'
|
import { useGlobal } from '@/lib/global'
|
||||||
@@ -11,63 +11,58 @@ import { useGlobal } from '@/lib/global'
|
|||||||
*/
|
*/
|
||||||
const Catalog = ({ post }) => {
|
const Catalog = ({ post }) => {
|
||||||
const { locale } = useGlobal()
|
const { locale } = useGlobal()
|
||||||
|
// 目录自动滚动
|
||||||
|
const tRef = useRef(null)
|
||||||
|
// 同步选中目录事件
|
||||||
|
const [activeSection, setActiveSection] = useState(null)
|
||||||
|
|
||||||
// 监听滚动事件
|
// 监听滚动事件
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
const throttleMs = 200
|
||||||
|
const actionSectionScrollSpy = throttle(() => {
|
||||||
|
const sections = document.getElementsByClassName('notion-h')
|
||||||
|
let prevBBox = null
|
||||||
|
let currentSectionId = activeSection
|
||||||
|
for (let i = 0; i < sections.length; ++i) {
|
||||||
|
const section = sections[i]
|
||||||
|
if (!section || !(section instanceof Element)) continue
|
||||||
|
if (!currentSectionId) {
|
||||||
|
currentSectionId = section.getAttribute('data-id')
|
||||||
|
}
|
||||||
|
const bbox = section.getBoundingClientRect()
|
||||||
|
const prevHeight = prevBBox ? bbox.top - prevBBox.bottom : 0
|
||||||
|
const offset = Math.max(150, prevHeight / 4)
|
||||||
|
if (bbox.top - offset < 0) {
|
||||||
|
currentSectionId = section.getAttribute('data-id')
|
||||||
|
prevBBox = bbox
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
break
|
||||||
|
}
|
||||||
|
setActiveSection(currentSectionId)
|
||||||
|
const index = post?.toc?.findIndex(obj => uuidToId(obj.id) === currentSectionId)
|
||||||
|
tRef?.current?.scrollTo({ top: 28 * index, behavior: 'smooth' })
|
||||||
|
}, throttleMs)
|
||||||
|
|
||||||
window.addEventListener('scroll', actionSectionScrollSpy)
|
window.addEventListener('scroll', actionSectionScrollSpy)
|
||||||
actionSectionScrollSpy()
|
actionSectionScrollSpy()
|
||||||
return () => {
|
return () => {
|
||||||
window.removeEventListener('scroll', actionSectionScrollSpy)
|
window.removeEventListener('scroll', actionSectionScrollSpy)
|
||||||
}
|
}
|
||||||
}, [])
|
}, [post])
|
||||||
|
|
||||||
// 目录自动滚动
|
|
||||||
const tRef = useRef(null)
|
|
||||||
const tocIds = []
|
|
||||||
|
|
||||||
// 同步选中目录事件
|
|
||||||
const [activeSection, setActiveSection] = useState(null)
|
|
||||||
const throttleMs = 200
|
|
||||||
const actionSectionScrollSpy = useCallback(throttle(() => {
|
|
||||||
const sections = document.getElementsByClassName('notion-h')
|
|
||||||
let prevBBox = null
|
|
||||||
let currentSectionId = activeSection
|
|
||||||
for (let i = 0; i < sections.length; ++i) {
|
|
||||||
const section = sections[i]
|
|
||||||
if (!section || !(section instanceof Element)) continue
|
|
||||||
if (!currentSectionId) {
|
|
||||||
currentSectionId = section.getAttribute('data-id')
|
|
||||||
}
|
|
||||||
const bbox = section.getBoundingClientRect()
|
|
||||||
const prevHeight = prevBBox ? bbox.top - prevBBox.bottom : 0
|
|
||||||
const offset = Math.max(150, prevHeight / 4)
|
|
||||||
// GetBoundingClientRect returns values relative to viewport
|
|
||||||
if (bbox.top - offset < 0) {
|
|
||||||
currentSectionId = section.getAttribute('data-id')
|
|
||||||
prevBBox = bbox
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
// No need to continue loop, if last element has been detected
|
|
||||||
break
|
|
||||||
}
|
|
||||||
setActiveSection(currentSectionId)
|
|
||||||
const index = tocIds.indexOf(currentSectionId) || 0
|
|
||||||
tRef?.current?.scrollTo({ top: 28 * index, behavior: 'smooth' })
|
|
||||||
}, throttleMs))
|
|
||||||
|
|
||||||
// 无目录就直接返回空
|
// 无目录就直接返回空
|
||||||
if (!post || !post?.toc || post?.toc?.length < 1) {
|
if (!post || !post?.toc || post?.toc?.length < 1) {
|
||||||
return <></>
|
return <></>
|
||||||
}
|
}
|
||||||
const toc = post.toc
|
|
||||||
|
|
||||||
return <div className='px-3 '>
|
return <div className='px-3 '>
|
||||||
<div className='dark:text-white'><i className='mr-1 fas fa-stream' />{locale.COMMON.TABLE_OF_CONTENTS}</div>
|
<div className='dark:text-white'><i className='mr-1 fas fa-stream' />{locale.COMMON.TABLE_OF_CONTENTS}</div>
|
||||||
|
|
||||||
<div className='overflow-y-auto overscroll-none max-h-36 lg:max-h-96 scroll-hidden' ref={tRef}>
|
<div className='overflow-y-auto overscroll-none max-h-36 lg:max-h-96 scroll-hidden' ref={tRef}>
|
||||||
<nav className='h-full text-black'>
|
<nav className='h-full text-black'>
|
||||||
{toc.map((tocItem) => {
|
{post?.toc?.map((tocItem) => {
|
||||||
const id = uuidToId(tocItem.id)
|
const id = uuidToId(tocItem.id)
|
||||||
tocIds.push(id)
|
|
||||||
return (
|
return (
|
||||||
<a
|
<a
|
||||||
key={id}
|
key={id}
|
||||||
|
|||||||
Reference in New Issue
Block a user