mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-09 17:07:43 +01:00
51 lines
No EOL
954 B
Text
51 lines
No EOL
954 B
Text
function noop() {}
|
|
|
|
export default function (url, opts) {
|
|
opts = opts || {};
|
|
|
|
var ws, num=0, $={};
|
|
var max = opts.maxAttempts || Infinity;
|
|
|
|
$.open = function () {
|
|
ws = new WebSocket(url, opts.protocols || []);
|
|
|
|
ws.onmessage = opts.onmessage || noop;
|
|
|
|
ws.onopen = function (e) {
|
|
(opts.onopen || noop)(e);
|
|
num = 0;
|
|
};
|
|
|
|
ws.onclose = function (e) {
|
|
e.code === 1e3 || e.code === 1005 || $.reconnect(e);
|
|
(opts.onclose || noop)(e);
|
|
};
|
|
|
|
ws.onerror = function (e) {
|
|
(e && e.code==='ECONNREFUSED') ? $.reconnect(e) : (opts.onerror || noop)(e);
|
|
};
|
|
};
|
|
|
|
$.reconnect = function (e) {
|
|
(num++ < max) ? setTimeout(function () {
|
|
(opts.onreconnect || noop)(e);
|
|
$.open();
|
|
}, opts.timeout || 1e3) : (opts.onmaximum || noop)(e);
|
|
};
|
|
|
|
$.json = function (x) {
|
|
ws.send(JSON.stringify(x));
|
|
};
|
|
|
|
$.send = function (x) {
|
|
ws.send(x);
|
|
};
|
|
|
|
$.close = function (x, y) {
|
|
ws.close(x || 1e3, y);
|
|
};
|
|
|
|
$.open(); // init
|
|
|
|
return $;
|
|
} |