39 lines
1,004 B
JavaScript
39 lines
1,004 B
JavaScript
;(async function () {
|
|
const nowPlaying = document.getElementById('now-playing')
|
|
|
|
if (nowPlaying) {
|
|
const content = document.getElementById('now-playing-content')
|
|
const loading = document.getElementById('now-playing-loading')
|
|
|
|
const populateNowPlaying = (data) => {
|
|
loading.style.display = 'none'
|
|
content.innerText = data.text
|
|
content.classList.remove('hidden')
|
|
}
|
|
|
|
try {
|
|
const cache = JSON.parse(localStorage.getItem('now-playing'))
|
|
if (cache) populateNowPlaying(cache)
|
|
} catch (e) {
|
|
/* quiet catch */
|
|
}
|
|
|
|
const data = await fetch('/api/now-playing', {
|
|
type: 'json',
|
|
})
|
|
.then((data) => data.json())
|
|
.catch(() => {
|
|
loading.style.display = 'none'
|
|
})
|
|
|
|
try {
|
|
localStorage.setItem('now-playing', JSON.stringify(data))
|
|
} catch (e) {
|
|
/* quiet catch */
|
|
}
|
|
|
|
if (!JSON.parse(localStorage.getItem('now-playing')) && !data) nowPlaying.remove()
|
|
|
|
populateNowPlaying(data)
|
|
}
|
|
})()
|