appReducer.js 863 Bytes
'use strict';

import InitialState from './appInitialState';

const {
    SET_PLATFORM,
    SET_HOST,
    SET_SERVICE_HOST,
    SET_UNIONTYPE,
    SET_UID,
} = require('../../constants/actionTypes').default;

const initialState = new InitialState;

export default function appReducer(state = initialState, action) {
    if (!(state instanceof InitialState)) return initialState.merge(state);

    switch (action.type) {
        case SET_UID:
            return state.set('uid', action.payload);
        case SET_UNIONTYPE:
            return state.set('unionType', action.payload);
        case SET_PLATFORM:
            return state.set('platform', action.payload);
        case SET_HOST:
            return state.set('host', action.payload);
        case SET_SERVICE_HOST:
            return state.set('serviceHost', action.payload);
    }

    return state;
}