-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
173 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
const bufferPx = 150 | ||
const observer = new IntersectionObserver(entries => { | ||
for (const entry of entries) { | ||
const slug = entry.target.id | ||
const tocEntryElement = document.querySelector(`a[data-for="${slug}"]`) | ||
const windowHeight = entry.rootBounds?.height | ||
if (windowHeight && tocEntryElement) { | ||
if (entry.boundingClientRect.y < windowHeight) { | ||
tocEntryElement.classList.add("in-view") | ||
} else { | ||
tocEntryElement.classList.remove("in-view") | ||
} | ||
} | ||
} | ||
}) | ||
|
||
function toggleCollapsible(this: HTMLElement) { | ||
this.classList.toggle("collapsed") | ||
const content = this.nextElementSibling as HTMLElement | ||
content.classList.toggle("collapsed") | ||
content.style.maxHeight = content.style.maxHeight === "0px" ? content.scrollHeight + "px" : "0px" | ||
} | ||
|
||
document.addEventListener("nav", () => { | ||
const toc = document.getElementById("toc")! | ||
const content = toc.nextElementSibling as HTMLElement | ||
content.style.maxHeight = content.scrollHeight + "px" | ||
toc.removeEventListener("click", toggleCollapsible) | ||
toc.addEventListener("click", toggleCollapsible) | ||
|
||
// update toc entry highlighting | ||
observer.disconnect() | ||
const headers = document.querySelectorAll("h1[id], h2[id], h3[id], h4[id], h5[id], h6[id]") | ||
headers.forEach(header => observer.observe(header)) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
details.toc { | ||
details#toc { | ||
& summary { | ||
cursor: pointer; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.