2018-04-17 19:50:23 +00:00
|
|
|
import { assign, ReducerRegistry } from '../redux';
|
2018-03-07 15:23:04 +00:00
|
|
|
|
|
|
|
import { SET_CONNECTION_STATE } from './actionTypes';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The initial state of the feature testing.
|
|
|
|
*
|
|
|
|
* @type {{
|
|
|
|
* connectionState: string
|
|
|
|
* }}
|
|
|
|
*/
|
|
|
|
const INITIAL_STATE = {
|
|
|
|
connectionState: ''
|
|
|
|
};
|
|
|
|
|
|
|
|
ReducerRegistry.register(
|
|
|
|
'features/testing',
|
|
|
|
(state = INITIAL_STATE, action) => {
|
|
|
|
switch (action.type) {
|
|
|
|
case SET_CONNECTION_STATE:
|
|
|
|
return _setConnectionState(state, action);
|
|
|
|
|
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reduces a specific Redux action SET_CONNECTION_STATE of the feature
|
|
|
|
* testing.
|
|
|
|
*
|
|
|
|
* @param {Object} state - The Redux state of the feature base/logging.
|
|
|
|
* @param {Action} action - The Redux action SET_CONNECTION_STATE to reduce.
|
|
|
|
* @private
|
|
|
|
* @returns {Object} The new state of the feature testing after the
|
|
|
|
* reduction of the specified action.
|
|
|
|
*/
|
|
|
|
function _setConnectionState(state, action) {
|
|
|
|
return assign(state, { connectionState: action.connectionState });
|
|
|
|
}
|