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
|
2025-03-30 17:35:20 -07:00
|
|
|
const tocEntryElements = document.querySelectorAll(`a[data-for="${slug}"]`)
|
2023-06-17 12:07:40 -07:00
|
|
|
const windowHeight = entry.rootBounds?.height
|
2025-03-30 17:35:20 -07:00
|
|
|
if (windowHeight && tocEntryElements.length > 0) {
|
2023-06-17 12:07:40 -07:00
|
|
|
if (entry.boundingClientRect.y < windowHeight) {
|
2025-03-30 17:35:20 -07:00
|
|
|
tocEntryElements.forEach((tocEntryElement) => tocEntryElement.classList.add("in-view"))
|
2023-06-17 12:07:40 -07:00
|
|
|
} else {
|
2025-03-30 17:35:20 -07:00
|
|
|
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")
|
2024-08-08 21:07:47 -04:00
|
|
|
this.setAttribute(
|
|
|
|
"aria-expanded",
|
|
|
|
this.getAttribute("aria-expanded") === "true" ? "false" : "true",
|
|
|
|
)
|
2024-01-29 00:56:12 -08:00
|
|
|
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() {
|
2025-03-10 11:39:08 -07:00
|
|
|
for (const toc of document.getElementsByClassName("toc")) {
|
2025-03-09 15:06:36 -07:00
|
|
|
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
|
|
|
})
|