* update eslint's `comma-dangle` rule to `always-multiline` * add check and fix scripts to package.json * Invoke `yarn fix` to adopt the updated eslint rules. No other changes are included.
34 lines
972 B
JavaScript
34 lines
972 B
JavaScript
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import {GeneralTypes, UserTypes} from 'mattermost-redux/action_types';
|
|
|
|
function getInitialState() {
|
|
return {
|
|
connected: false,
|
|
lastConnectAt: 0,
|
|
lastDisconnectAt: 0,
|
|
};
|
|
}
|
|
|
|
export default function(state = getInitialState(), action) {
|
|
if (!state.connected && action.type === GeneralTypes.WEBSOCKET_SUCCESS) {
|
|
return {
|
|
...state,
|
|
connected: true,
|
|
lastConnectAt: new Date().getTime(),
|
|
};
|
|
} else if (state.connected && (action.type === GeneralTypes.WEBSOCKET_FAILURE || action.type === GeneralTypes.WEBSOCKET_CLOSED)) {
|
|
return {
|
|
...state,
|
|
connected: false,
|
|
lastDisconnectAt: new Date().getTime(),
|
|
};
|
|
}
|
|
|
|
if (action.type === UserTypes.LOGOUT_SUCCESS) {
|
|
return getInitialState();
|
|
}
|
|
|
|
return state;
|
|
}
|