mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-13 03:13:47 +00:00
8756b396cc
* minimal * eslint-browser * dynamic port, reconnect socket, msTo string without Date * 404 on external not found
68 lines
2.0 KiB
JavaScript
68 lines
2.0 KiB
JavaScript
/*eslint-env browser*/
|
|
/**
|
|
* This is a very minimal example for a websocket client
|
|
* You could use this as a starting point to creating your own interfaces
|
|
*/
|
|
|
|
const mts = 1000; // millis to seconds
|
|
const mtm = 1000 * 60; // millis to minutes
|
|
const mth = 1000 * 60 * 60; // millis to hours
|
|
|
|
const leftPad = (number) => {
|
|
return Math.floor(number).toString().padStart(2, '0');
|
|
};
|
|
|
|
let reconnectTimeout;
|
|
const reconnectInterval = 1000;
|
|
let reconnectAttempts = 0;
|
|
|
|
const connectSocket = () => {
|
|
const websocket = new WebSocket(`ws://${window.location.hostname}:${window.location.port}/ws`);
|
|
|
|
websocket.onopen = () => {
|
|
clearTimeout(reconnectTimeout);
|
|
reconnectAttempts = 0;
|
|
console.info('WebSocket connected');
|
|
};
|
|
|
|
websocket.onclose = () => {
|
|
console.warn('WebSocket disconnected');
|
|
reconnectTimeout = setTimeout(() => {
|
|
console.warn(`WebSocket: attempting reconnect ${reconnectAttempts}`);
|
|
if (websocket && websocket.readyState === WebSocket.CLOSED) {
|
|
reconnectAttempts += 1;
|
|
connectSocket();
|
|
}
|
|
}, reconnectInterval);
|
|
};
|
|
websocket.onerror = (error) => {
|
|
console.error('WebSocket error:', error);
|
|
};
|
|
|
|
websocket.onmessage = (event) => {
|
|
const data = JSON.parse(event.data);
|
|
|
|
// all objects from ontime are structured with type and payload
|
|
const { type, payload } = data;
|
|
|
|
// we only need to read message type of ontime
|
|
if (type === 'ontime') {
|
|
// destructure known data from ontime
|
|
// see https://cpvalente.gitbook.io/ontime/control-and-feedback/websocket-api
|
|
const { timer, playback } = payload;
|
|
const timerElement = document.getElementById('timer');
|
|
if (playback == 'stop') {
|
|
timerElement.innerText = '--:--:--';
|
|
} else {
|
|
const millis = Math.abs(timer.current);
|
|
const isNegative = timer.current < 0;
|
|
timerElement.innerText = `${isNegative ? '-' : ''}${leftPad(millis / mth)}:${leftPad(
|
|
(millis % mth) / mtm,
|
|
)}:${leftPad((millis % mtm) / mts)}`;
|
|
}
|
|
}
|
|
};
|
|
};
|
|
|
|
connectSocket();
|