feat: support direct annotation links

This commit is contained in:
Solomon Victorino 2024-04-06 00:14:51 -06:00
parent a614f9b2a0
commit 42e0625695
5 changed files with 36 additions and 8 deletions

View file

@ -8,8 +8,17 @@ function showAbout() {
fullAbout && [fullAbout, summary].forEach(item => item.onclick = showAbout)
document.querySelectorAll("#lyrics a").forEach(item => {
item.addEventListener("click", getAnnotation)
window.addEventListener("load", () => {
document.querySelectorAll("#lyrics a").forEach(item => {
item.addEventListener("click", getAnnotation)
})
const linkedAnnotationId = window.location.pathname.match(new RegExp("/(\\d+)"))?.[1]
if (linkedAnnotationId) {
const target = document.querySelector(`a[href^="/${linkedAnnotationId}"][class^="ReferentFragmentdesktop__ClickTarget"] > span`)
target?.click()
target?.scrollIntoView()
}
})
function getAnnotation(e) {