1
0
mirror of https://gitlab.crans.org/nounous/ghostream.git synced 2024-12-23 14:22:20 +00:00
ghostream/web/static/js/viewersCounter.js

20 lines
642 B
JavaScript
Raw Normal View History

// 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)
}