You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
2.3 KiB
91 lines
2.3 KiB
import * as React from 'react';
|
|
import classNames from 'classnames';
|
|
import throttle from 'lodash/throttle';
|
|
import { Tabs } from 'antd';
|
|
import scrollTo from '../../../../components/_util/scrollTo';
|
|
|
|
import './AffixTabs.less';
|
|
|
|
const VIEW_BALANCE = 32;
|
|
const { TabPane } = Tabs;
|
|
|
|
export default () => {
|
|
const containerRef = React.useRef<HTMLDivElement>(null);
|
|
const idsRef = React.useRef<string[]>([]);
|
|
const [loaded, setLoaded] = React.useState(false);
|
|
const [fixedId, setFixedId] = React.useState<string | null>(null);
|
|
|
|
function scrollToId(id: string) {
|
|
const targetNode = document.getElementById(id);
|
|
|
|
if (targetNode) {
|
|
const newTop = targetNode.offsetTop - containerRef.current!.offsetHeight - VIEW_BALANCE;
|
|
scrollTo(newTop);
|
|
}
|
|
}
|
|
|
|
React.useEffect(() => {
|
|
idsRef.current = Array.from(document.querySelectorAll('h2[id]')).map(({ id }) => id);
|
|
setLoaded(true);
|
|
}, []);
|
|
|
|
React.useEffect(() => {
|
|
const hashId = decodeURIComponent((location.hash || '').slice(1));
|
|
if (hashId) {
|
|
scrollToId(hashId);
|
|
}
|
|
}, [loaded]);
|
|
|
|
const onSyncAffix = React.useMemo(() => {
|
|
function doSync() {
|
|
const { scrollY } = window;
|
|
const containerHeight = containerRef.current!.offsetHeight;
|
|
|
|
for (let i = idsRef.current.length - 1; i >= 0; i -= 1) {
|
|
const id = idsRef.current[i];
|
|
const current = document.getElementById(id)!;
|
|
const offsetTop = current.offsetTop - containerHeight - VIEW_BALANCE;
|
|
|
|
if (offsetTop <= scrollY) {
|
|
setFixedId(id);
|
|
return;
|
|
}
|
|
}
|
|
|
|
setFixedId(null);
|
|
}
|
|
|
|
return throttle(doSync);
|
|
}, []);
|
|
|
|
React.useEffect(() => {
|
|
window.addEventListener('scroll', onSyncAffix);
|
|
window.addEventListener('resize', onSyncAffix);
|
|
onSyncAffix();
|
|
|
|
return () => {
|
|
window.removeEventListener('scroll', onSyncAffix);
|
|
window.removeEventListener('resize', onSyncAffix);
|
|
};
|
|
}, []);
|
|
|
|
return (
|
|
<div
|
|
className={classNames('resource-affix-tabs', {
|
|
'resource-affix-tabs-fixed': fixedId,
|
|
})}
|
|
ref={containerRef}
|
|
>
|
|
<Tabs
|
|
activeKey={fixedId || undefined}
|
|
onChange={key => {
|
|
scrollToId(key);
|
|
}}
|
|
>
|
|
{idsRef.current.map(id => (
|
|
<TabPane key={id} tab={id.replace(/-/g, ' ')} />
|
|
))}
|
|
</Tabs>
|
|
</div>
|
|
);
|
|
};
|
|
|