owncast/web/components/video/viewer-ping.ts
2022-05-09 13:06:17 -07:00

28 lines
377 B
TypeScript

const URL = '/api/ping';
const INTERVAL = 4000;
function ping() {
try {
fetch(URL);
} catch (e) {
console.error(e);
}
}
class ViewerPing {
timer: ReturnType<typeof setInterval>;
start() {
this.stop();
this.timer = setInterval(() => {
ping();
}, INTERVAL);
}
stop() {
clearInterval(this.timer);
}
}
export default ViewerPing;