1
0
mirror of https://gitlab.crans.org/nounous/ghostream.git synced 2024-12-23 08:32:19 +00:00
ghostream/web/static/js/viewersCounter.js
2020-09-29 18:44:32 +02:00

20 lines
642 B
JavaScript

// Refresh viewer count by pulling metric from server
function refreshViewersCounter(period) {
let xhr = new XMLHttpRequest()
xhr.open("GET", "/_stats/", true)
xhr.onload = function () {
console.log(xhr.response)
if (xhr.status === 200) {
let data = JSON.parse(xhr.response)
document.getElementById("connected-people").innerText = data.ConnectedViewers
}
else
console.log("WARNING: status code " + xhr.status + " was returned while fetching connected viewers.")
}
xhr.send()
setTimeout(() => {
refreshViewersCounter(period)
}, period)
}