ipv4.army/src/back/utilities/sockets/Hyperate.ts
seth 3bc40382d6
Some checks failed
Code quality checks / biome (push) Has been cancelled
blah blah help me
2025-05-18 18:49:17 -04:00

89 lines
1.9 KiB
TypeScript

import ReconnectingWebSocket from "reconnecting-websocket";
export default class {
private _socket: ReconnectingWebSocket;
private _keepAlive: NodeJS.Timeout | null;
private _interval: NodeJS.Timeout | null;
private _callback: (data: number) => void;
constructor(callback: (data: number) => void) {
this._socket = new ReconnectingWebSocket(
"wss://app.hyperate.io/socket/websocket?token=wv39nM6iyrNJulvpmMQrimYPIXy2dVrYRjkuHpbRapKT2VSh65ngDGHdCdCtmEN9",
);
this._keepAlive = null;
this._interval = null;
this._callback = callback;
this._socket.binaryType = "arraybuffer";
this._socket.onopen = () => {
console.log("Hyperate socket opened");
this._socket.send(
JSON.stringify({
topic: "hr:84aa0f",
event: "phx_join",
payload: {},
ref: 0,
}),
);
this._keepAlive = setInterval(() => {
this._socket.send(
JSON.stringify({
topic: "phoenix",
event: "heartbeat",
payload: {},
ref: 0,
}),
);
}, 10000 - 1000);
};
this._socket.onmessage = ({ data }: MessageEvent) => {
data = JSON.parse(data);
switch (data.event) {
case "hr_update": {
this._callback(data.payload.hr);
this.heartbeat();
break;
}
}
};
this._socket.onerror = () => {
console.error("Hyperate socket error");
if (this._keepAlive) {
clearInterval(this._keepAlive);
this._keepAlive = null;
}
if (this._interval) {
clearInterval(this._interval);
this._interval = null;
}
};
this._socket.onclose = () => {
console.log("Hyperate socket closed");
if (this._keepAlive) {
clearInterval(this._keepAlive);
this._keepAlive = null;
}
if (this._interval) {
clearInterval(this._interval);
this._interval = null;
}
};
}
private heartbeat() {
if (this._interval) {
clearTimeout(this._interval);
this._interval = null;
}
this._interval = setTimeout(() => {
this._callback(0);
}, 6000);
}
}