mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 21:37:38 +03:00
Show annotations in between lyrics
This commit is contained in:
parent
e40ca5dca9
commit
5158221f35
4 changed files with 47 additions and 14 deletions
|
@ -15,6 +15,11 @@ document.querySelectorAll("#lyrics a").forEach(item => {
|
|||
function getAnnotation(e) {
|
||||
e.preventDefault()
|
||||
const uri = e.target.parentElement.getAttribute("href")
|
||||
const presentAnnotation = document.getElementById(uri)
|
||||
if (presentAnnotation) {
|
||||
presentAnnotation.remove()
|
||||
return
|
||||
}
|
||||
|
||||
xhr = new XMLHttpRequest()
|
||||
xhr.open("GET", uri + "/annotations")
|
||||
|
@ -22,7 +27,11 @@ function getAnnotation(e) {
|
|||
xhr.onreadystatechange = function() {
|
||||
if (this.readyState == 4 && this.status == 200) {
|
||||
const parsedReponse = JSON.parse(this.responseText)
|
||||
document.getElementById("annotations").innerHTML = parsedReponse.html
|
||||
const annotationDiv = document.createElement('div');
|
||||
annotationDiv.innerHTML = parsedReponse.html
|
||||
annotationDiv.id = uri
|
||||
annotationDiv.className = "annotation"
|
||||
e.target.parentElement.insertAdjacentElement('afterend', annotationDiv)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue