|
|
@ -6,6 +6,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
window.Whisper = window.Whisper || {};
|
|
|
|
window.Whisper = window.Whisper || {};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const DISCONNECTED_DELAY = 30000;
|
|
|
|
|
|
|
|
|
|
|
|
Whisper.NetworkStatusView = Whisper.View.extend({
|
|
|
|
Whisper.NetworkStatusView = Whisper.View.extend({
|
|
|
|
className: 'network-status',
|
|
|
|
className: 'network-status',
|
|
|
|
templateName: 'networkStatus',
|
|
|
|
templateName: 'networkStatus',
|
|
|
@ -27,6 +29,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
this.model = new Backbone.Model();
|
|
|
|
this.model = new Backbone.Model();
|
|
|
|
this.listenTo(this.model, 'change', this.onChange);
|
|
|
|
this.listenTo(this.model, 'change', this.onChange);
|
|
|
|
|
|
|
|
this.connectedTimer = null;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
onReconnectTimer() {
|
|
|
|
onReconnectTimer() {
|
|
|
|
this.setSocketReconnectInterval(60000);
|
|
|
|
this.setSocketReconnectInterval(60000);
|
|
|
@ -55,20 +58,34 @@
|
|
|
|
case WebSocket.CONNECTING:
|
|
|
|
case WebSocket.CONNECTING:
|
|
|
|
message = i18n('connecting');
|
|
|
|
message = i18n('connecting');
|
|
|
|
this.setSocketReconnectInterval(null);
|
|
|
|
this.setSocketReconnectInterval(null);
|
|
|
|
|
|
|
|
window.clearTimeout(this.connectedTimer);
|
|
|
|
|
|
|
|
this.connectedTimer = null;
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
case WebSocket.OPEN:
|
|
|
|
case WebSocket.OPEN:
|
|
|
|
this.setSocketReconnectInterval(null);
|
|
|
|
this.setSocketReconnectInterval(null);
|
|
|
|
|
|
|
|
window.clearTimeout(this.connectedTimer);
|
|
|
|
|
|
|
|
this.connectedTimer = null;
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
case WebSocket.CLOSED:
|
|
|
|
case WebSocket.CLOSED:
|
|
|
|
message = i18n('disconnected');
|
|
|
|
if (!this.connectedTimer) {
|
|
|
|
instructions = i18n('checkNetworkConnection');
|
|
|
|
// Mark offline if disconnected for 30 seconds
|
|
|
|
hasInterruption = true;
|
|
|
|
this.connectedTimer = window.setTimeout(() => {
|
|
|
|
|
|
|
|
message = i18n('disconnected');
|
|
|
|
|
|
|
|
instructions = i18n('checkNetworkConnection');
|
|
|
|
|
|
|
|
hasInterruption = true;
|
|
|
|
|
|
|
|
}, DISCONNECTED_DELAY);
|
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
case WebSocket.CLOSING:
|
|
|
|
case WebSocket.CLOSING:
|
|
|
|
default:
|
|
|
|
default:
|
|
|
|
message = i18n('disconnected');
|
|
|
|
if (!this.connectedTimer) {
|
|
|
|
instructions = i18n('checkNetworkConnection');
|
|
|
|
// Mark offline if disconnected for 30 seconds
|
|
|
|
hasInterruption = true;
|
|
|
|
this.connectedTimer = window.setTimeout(() => {
|
|
|
|
|
|
|
|
message = i18n('disconnected');
|
|
|
|
|
|
|
|
instructions = i18n('checkNetworkConnection');
|
|
|
|
|
|
|
|
hasInterruption = true;
|
|
|
|
|
|
|
|
}, DISCONNECTED_DELAY);
|
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|