63 lines
1.6 KiB
JavaScript
63 lines
1.6 KiB
JavaScript
import { useState, useEffect } from "react";
|
|
|
|
/* Creates an Intersection Observer to keep track of headings intersecting
|
|
* a section of the viewport defined by the rootMargin */
|
|
const getIntersectionObserver = (callback) => {
|
|
return;
|
|
};
|
|
|
|
const useHeadingsObserver = () => {
|
|
const [activeHeading, setActiveHeading] = useState("");
|
|
const [observer, setObserver] = useState(null);
|
|
|
|
/* Runs only after the first render, in order to preserve the observer
|
|
* between component rerenderings (e.g. after activeHeading change). */
|
|
useEffect(() => {
|
|
const observer = new IntersectionObserver(
|
|
(entries) => {
|
|
// entries.forEach((entry) => {
|
|
// if (entry.isIntersecting) {
|
|
// setActiveHeading(entry.target.id);
|
|
// }
|
|
// });
|
|
const firstIntersectingHeading = entries.find(
|
|
(entry) => entry.isIntersecting
|
|
);
|
|
if (firstIntersectingHeading) {
|
|
setActiveHeading(firstIntersectingHeading.target.id);
|
|
}
|
|
},
|
|
{
|
|
root: null,
|
|
threshold: 0.55,
|
|
rootMargin: "-65px 0% -85% 0%", // 65px is a navbar height
|
|
}
|
|
);
|
|
|
|
setObserver(observer);
|
|
|
|
return () => {
|
|
observer.disconnect();
|
|
};
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
if (!activeHeading) {
|
|
return;
|
|
}
|
|
|
|
const tocLink = document.querySelector(
|
|
`.toc-link[href="#${activeHeading}"]`
|
|
);
|
|
tocLink.classList.add("active");
|
|
|
|
return () => {
|
|
tocLink.classList.remove("active");
|
|
};
|
|
}, [activeHeading]);
|
|
|
|
return observer;
|
|
};
|
|
|
|
export default useHeadingsObserver;
|