Initialize and close WebSocket more accurately and consistently (#3683)

This commit is contained in:
Joram Wilander
2016-07-27 09:54:43 -04:00
committed by Christopher Speller
parent 199c55b566
commit fc7ae6ba65
2 changed files with 6 additions and 11 deletions

View File

@@ -10,7 +10,6 @@ export default class WebSocketClient {
this.conn = null;
this.sequence = 1;
this.connectFailCount = 0;
this.manuallyClosed = false;
this.eventCallback = null;
this.responseCallbacks = {};
this.reconnectCallback = null;
@@ -27,8 +26,6 @@ export default class WebSocketClient {
console.log('websocket connecting to ' + connectionUrl); //eslint-disable-line no-console
}
this.manuallyClosed = false;
this.conn = new WebSocket(connectionUrl);
this.conn.onopen = () => {
@@ -51,10 +48,6 @@ export default class WebSocketClient {
console.log('websocket closed'); //eslint-disable-line no-console
}
if (this.manuallyClosed) {
return;
}
this.connectFailCount++;
if (this.closeCallback) {
@@ -124,11 +117,13 @@ export default class WebSocketClient {
}
close() {
this.manuallyClosed = true;
this.connectFailCount = 0;
this.sequence = 1;
if (this.conn && this.conn.readyState === WebSocket.OPEN) {
this.conn.onclose = () => {}; //eslint-disable-line no-empty-function
this.conn.close();
this.conn = null;
console.log('websocket closed'); //eslint-disable-line no-console
}
}

View File

@@ -25,9 +25,6 @@ export default class LoggedIn extends React.Component {
this.onUserChanged = this.onUserChanged.bind(this);
this.setupUser = this.setupUser.bind(this);
// Initalize websocket
WebSocketActions.initialize();
// Force logout of all tabs if one tab is logged out
$(window).bind('storage', (e) => {
// when one tab on a browser logs out, it sets __logout__ in localStorage to trigger other tabs to log out
@@ -105,6 +102,9 @@ export default class LoggedIn extends React.Component {
}
componentDidMount() {
// Initalize websocket
WebSocketActions.initialize();
// Listen for user
UserStore.addChangeListener(this.onUserChanged);