mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 21:37:38 +03:00
Add api for annotations
this only returns the first available annotation for now annotation content is returned in html format, so it can easily be inserted in the frontend displaying the annotation in the frontend is still a TODO
This commit is contained in:
parent
ab19250c66
commit
71e3b6e029
3 changed files with 118 additions and 2 deletions
|
@ -14,6 +14,17 @@ 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!")
|
||||
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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue