Updated random int function to use helper numbers util in ws stream.js

• Updated:
- random int function to use helper numbers util in ws stream.js
This commit is contained in:
mgabdev 2021-02-10 23:21:35 -05:00
parent 72162affcf
commit d73b4afa28
1 changed files with 3 additions and 4 deletions

View File

@ -1,8 +1,7 @@
'use strict';
import WebSocketClient from '@gamestdio/websocket';
const randomIntUpTo = max => Math.floor(Math.random() * Math.floor(max));
import { getRandomInt } from './utils/numbers'
export function connectStream(path, pollingRefresh = null, callbacks = () => ({ onConnect() { }, onDisconnect() { }, onReceive() { } })) {
return (dispatch, getState) => {
@ -14,7 +13,7 @@ export function connectStream(path, pollingRefresh = null, callbacks = () => ({
const setupPolling = () => {
pollingRefresh(dispatch, () => {
polling = setTimeout(() => setupPolling(), 20000 + randomIntUpTo(20000));
polling = setTimeout(() => setupPolling(), 20000 + getRandomInt(0, 20000));
});
};
@ -36,7 +35,7 @@ export function connectStream(path, pollingRefresh = null, callbacks = () => ({
disconnected() {
if (pollingRefresh) {
polling = setTimeout(() => setupPolling(), randomIntUpTo(40000));
polling = setTimeout(() => setupPolling(), getRandomInt(0, 40000));
}
onDisconnect();