1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul-website synced 2024-10-31 21:33:09 +00:00
strimertul-website/static/script/toc.js
2023-04-05 18:04:48 +02:00

41 lines
1.1 KiB
JavaScript

const toc = document.getElementById("TableOfContents");
const getHeaderId = (el) => {
do {
if (el.nodeName === "H1" || el.nodeName === "H2" || el.nodeName === "H3") {
const id = el.getAttribute("id");
if (id) {
return id;
}
}
el = el.previousElementSibling;
} while (el);
};
if (toc) {
if (toc.children.length < 1) {
toc.parentElement.remove();
} else {
const observer = new IntersectionObserver((entries) => {
const filtered = entries.filter(
(i) => getHeaderId(i.target) && i.intersectionRatio > 0
);
if (filtered.length > 0) {
toc
.querySelectorAll(`li.active`)
.forEach((entry) => entry.classList.remove("active"));
filtered.forEach((entry) => {
const id = getHeaderId(entry.target);
toc
.querySelector(`li a[href="#${id}"]`)
.parentElement.classList.add("active");
});
}
});
// Track all sections that have an `id` applied
document.querySelectorAll(".copy *").forEach((section) => {
observer.observe(section);
});
}
}