notes/quartz/components/scripts/toc.inline.ts

45 lines
1.5 KiB
TypeScript
Raw Normal View History

2023-07-22 17:27:41 -07:00
const observer = new IntersectionObserver((entries) => {
2023-06-17 12:07:40 -07:00
for (const entry of entries) {
const slug = entry.target.id
const tocEntryElements = document.querySelectorAll(`a[data-for="${slug}"]`)
2023-06-17 12:07:40 -07:00
const windowHeight = entry.rootBounds?.height
if (windowHeight && tocEntryElements.length > 0) {
2023-06-17 12:07:40 -07:00
if (entry.boundingClientRect.y < windowHeight) {
tocEntryElements.forEach((tocEntryElement) => tocEntryElement.classList.add("in-view"))
2023-06-17 12:07:40 -07:00
} else {
tocEntryElements.forEach((tocEntryElement) => tocEntryElement.classList.remove("in-view"))
2023-06-17 12:07:40 -07:00
}
}
}
})
2023-06-17 14:36:06 -07:00
function toggleToc(this: HTMLElement) {
2023-06-17 12:07:40 -07:00
this.classList.toggle("collapsed")
this.setAttribute(
"aria-expanded",
this.getAttribute("aria-expanded") === "true" ? "false" : "true",
)
const content = this.nextElementSibling as HTMLElement | undefined
if (!content) return
2023-06-17 12:07:40 -07:00
content.classList.toggle("collapsed")
}
2023-06-17 14:36:06 -07:00
function setupToc() {
for (const toc of document.getElementsByClassName("toc")) {
const button = toc.querySelector(".toc-header")
const content = toc.querySelector(".toc-content")
if (!button || !content) return
button.addEventListener("click", toggleToc)
window.addCleanup(() => button.removeEventListener("click", toggleToc))
2023-06-17 16:05:46 -07:00
}
2023-06-17 14:36:06 -07:00
}
document.addEventListener("nav", () => {
setupToc()
2023-06-17 12:07:40 -07:00
// update toc entry highlighting
observer.disconnect()
const headers = document.querySelectorAll("h1[id], h2[id], h3[id], h4[id], h5[id], h6[id]")
2023-07-22 17:27:41 -07:00
headers.forEach((header) => observer.observe(header))
2023-06-17 12:07:40 -07:00
})