Flow, coding style

This commit is contained in:
Lyubo Marinov 2017-10-12 14:59:11 -05:00
parent 122be9e0e0
commit da03b49754
1 changed files with 20 additions and 16 deletions

View File

@ -1,3 +1,5 @@
// @flow
import { equals, set, ReducerRegistry } from '../redux';
import { SET_CALL_OVERLAY_VISIBLE, SET_JWT } from './actionTypes';
@ -7,6 +9,7 @@ import { SET_CALL_OVERLAY_VISIBLE, SET_JWT } from './actionTypes';
*
* @private
* @type {{
* callOverlayVisible: ?boolean
* isGuest: boolean
* }}
*/
@ -38,7 +41,8 @@ const _INITIAL_STATE = {
* specified {@code action}.
*/
ReducerRegistry.register(
'features/base/jwt', (state = _INITIAL_STATE, action) => {
'features/base/jwt',
(state = _INITIAL_STATE, action) => {
switch (action.type) {
case SET_CALL_OVERLAY_VISIBLE:
return set(state, 'callOverlayVisible', action.callOverlayVisible);
@ -56,4 +60,4 @@ ReducerRegistry.register(
}
return state;
});
});