homeReducer.js 2.07 KB
/**
 * # guideReducer.js
 *
 * The reducer for all the actions from the various log states
 */
'use strict';
/**
 * ## Imports
 *
 * InitialState
 */
import InitialState from './homeInitialState';

const {

	HOME_OVERVIEW_REQUEST,
    HOME_OVERVIEW_SUCCESS,
    HOME_OVERVIEW_FAILURE,

	HOME_BRABDRANK_REQUEST,
    HOME_BRABDRANK_SUCCESS,
    HOME_BRABDRANK_FAILURE,

    GO_TO_SALE_STATS,
    GO_TO_REFOUND_STATS,
    GO_TO_STOCK_STATS,
    GO_TO_DELIVERY_STATS,
    GO_TO_REQUEST_STATS,
    GO_TO_ACCOUNT_SETTLEMENT,

    SWITCH_SHOP,

} = require('../../constants/actionTypes').default;

const initialState = new InitialState;

/**
 * ## guideReducer function
 * @param {Object} state - initialState
 * @param {Object} action - type and payload
 */
export default function userReducer(state = initialState, action) {
    if (!(state instanceof InitialState)) return initialState.merge(state);

    switch (action.type) {

        case HOME_OVERVIEW_REQUEST:
		case HOME_BRABDRANK_REQUEST: {
			let nextState =  state.set('isFetching', true)
				.set('error', null)
				.set('brandId', action.payload);
			return nextState;
		}

		case HOME_OVERVIEW_SUCCESS: {
			let nextState =  state.set('isFetching', false)
				.set('error', null)
				.setIn(['overview', 'rank'], action.payload.rankNow)
				.setIn(['overview', 'rise'], action.payload.rankLevel)
				.setIn(['overview', 'riseCount'], action.payload.rankChange)
			return nextState;
		}

        case HOME_BRABDRANK_SUCCESS: {
			let nextState =  state.set('isFetching', false)
				.set('error', null)
				.setIn(['overview', 'goodsCount'], action.payload.orderAmount)
				.setIn(['overview', 'goodsAmount'], action.payload.buyNumbers);
			return nextState;
		}

		case HOME_OVERVIEW_FAILURE:
		case HOME_BRABDRANK_FAILURE:
	    	return state.set('isFetching', false)
	      		.set('error', action.payload);

      	case GO_TO_SALE_STATS:
        case GO_TO_REFOUND_STATS:
        case GO_TO_STOCK_STATS:
        case GO_TO_DELIVERY_STATS:
        case GO_TO_REQUEST_STATS:
        case GO_TO_ACCOUNT_SETTLEMENT:
        	return state;

    }

    return state;
}