diff --git a/src/views/list.twig b/src/views/list.twig index 93973b4..086dee6 100644 --- a/src/views/list.twig +++ b/src/views/list.twig @@ -22,9 +22,7 @@ {% for id, playlist in playlists %} - - {{ id }} - + {{ id }} loading {{ playlist.name }} @@ -42,8 +40,6 @@ {{ playlist.url }} @@ -84,11 +80,10 @@ let el_count = tr.querySelector('td.count') xhr.onreadystatechange = () => { if (xhr.readyState === XMLHttpRequest.DONE) { - console.log('[' + id + '] DONE', xhr.response) el_status.classList.remove('bg-secondary') - el_status.innerText = xhr.response.status.possibleStatus + el_status.innerText = xhr.response?.status.possibleStatus ?? 'error' el_count.innerText = xhr.response?.content.channelCount ?? 0 - switch (xhr.response.status.possibleStatus) { + switch (el_status.innerText) { case 'online': el_status.classList.add('bg-success') break @@ -99,24 +94,21 @@ el_status.classList.add('bg-danger') break } - if (xhr.response.error) { + if (xhr.response?.error) { el_status.title = '[' + xhr.response.error.code + '] ' + xhr.response.error.message } } } xhr.onerror = () => { - console.log('[' + id + '] ERROR', xhr.response) el_status.classList.add('bg-danger') el_status.innerText = 'error' el_count.innerText = 0 } xhr.onabort = () => { - console.log('[' + id + '] ABORTED', xhr.response) el_status.classList.add('bg-secondary') el_count.innerText = 0 } xhr.ontimeout = () => { - console.log('[' + id + '] TIMEOUT', xhr.response) el_status.classList.add('bg-secondary') el_status.innerText = 'timeout' el_count.innerText = 0