Show annotations in the frontend

This commit is contained in:
qvalentin 2023-09-09 18:11:00 +02:00
parent acb2695db0
commit e40ca5dca9
3 changed files with 15 additions and 5 deletions

View file

@ -15,16 +15,14 @@ document.querySelectorAll("#lyrics a").forEach(item => {
function getAnnotation(e) {
e.preventDefault()
const uri = e.target.parentElement.getAttribute("href")
console.log("Annotations are not yet implemented!", uri)
xhr = new XMLHttpRequest()
xhr.open("GET", uri + "/annotations")
xhr.send()
xhr.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
json = JSON.parse(this.responseText)
alert(json.html)
// TODO: display annotations properly
const parsedReponse = JSON.parse(this.responseText)
document.getElementById("annotations").innerHTML = parsedReponse.html
}
}
}