mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
Initialize and close WebSocket more accurately and consistently (#3683)
This commit is contained in:
committed by
Christopher Speller
parent
199c55b566
commit
fc7ae6ba65
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user