UI Action Handler Changes, Misc Fixes

This commit is contained in:
Qstick 2017-11-26 15:09:45 -05:00
parent 7825319d89
commit cd5b658196
193 changed files with 6992 additions and 6341 deletions

View file

@ -72,7 +72,7 @@ class SignalRConnector extends Component {
this.signalRconnectionOptions = { transport: ['webSockets', 'longPolling'] };
this.signalRconnection = null;
this.retryInterval = 5;
this.retryInterval = 1;
this.retryTimeoutId = null;
this.disconnectedTime = null;
}
@ -107,7 +107,7 @@ class SignalRConnector extends Component {
this.retryTimeoutId = setTimeout(() => {
this.signalRconnection.start(this.signalRconnectionOptions);
this.retryInterval = Math.min(this.retryInterval + 5, 30);
this.retryInterval = Math.min(this.retryInterval + 1, 10);
}, this.retryInterval * 1000);
}
@ -262,7 +262,7 @@ class SignalRConnector extends Component {
}
handleQueueStatus = (body) => {
this.props.update({ section: 'queueStatus', data: body.resource });
this.props.update({ section: 'queue.status', data: body.resource });
}
handleVersion = (body) => {