Initial support for annotations

This commit is contained in:
rramiachraf 2023-04-26 17:43:56 +01:00
parent 7a5a8392c7
commit 28440c6c56
5 changed files with 106 additions and 7 deletions

View file

@ -12,8 +12,32 @@ document.querySelectorAll("#lyrics a").forEach(item => {
item.addEventListener("click", getAnnotation)
})
function getAnnotation(e) {
e.preventDefault()
//const uri = e.target.parentElement.getAttribute("href")
console.log("Annotations are not yet implemented!")
//const annotationContainer = document.getElementById("annotation-container")
/**
annotationContainer.onclick = (e) => {
const isVisible = e.target.style.display !== "none"
if (isVisible) {
e.target.style.display = "none"
}
}
**/
const card = document.getElementById("annotation")
async function getAnnotation(e) {
e.preventDefault()
const path = e.target.parentElement.getAttribute("href")
const annotationId = path.match(/\/(\d+)\/.*$/)[1]
console.log(e.offsetLeft)
try {
const res = await fetch(`/annotation/${annotationId}`)
const data = await res.json()
card.style.top = `${e.offsetY}px`
card.style.left = `${e.offsetX}px`
card.style.display = "block"
card.innerHTML = data.Annotations[0].Body.HTML
} catch (e) {
console.error(e)
}
}