1
0
mirror of https://gitlab.crans.org/nounous/ghostream.git synced 2024-12-23 07:22:20 +00:00
ghostream/web/static/js/viewersCounter.js
2020-10-05 22:09:10 +02:00

13 lines
492 B
JavaScript

// Refresh viewer count by pulling metric from server
function refreshViewersCounter(period) {
// Distinguish oneDomainPerStream mode
fetch("/_stats/" + (location.pathname === "/" ? location.host : location.pathname.substring(1)))
.then(response => response.json())
.then((data) => document.getElementById("connected-people").innerText = data.ConnectedViewers)
.catch(console.log)
setTimeout(() => {
refreshViewersCounter(period)
}, period)
}