| 12345678910111213141516171819202122232425262728293031323334353637383940 | import { assign, ReducerRegistry } from '../redux';
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 });
}
 |