xphong/marvel-app

View on GitHub
client/reducers/powerLevels.js

Summary

Maintainability
A
0 mins
Test Coverage
import * as types from '../constants/ActionTypes';

const INITIAL_STATE = {
  isLoading: false,
  data: [],
  error: false
};

export default function powerLevelsReducer(state = INITIAL_STATE, action = null) {
  switch (action.type) {
    case types.RECEIVE_POWERLEVELS_ERROR:
      return Object.assign({}, state, { isLoading: false, data: action.payload.data, error: true });
    case types.RECEIVE_POWERLEVELS:
      return Object.assign({}, state, { isLoading: false, data: action.payload.data, error: false });
    case types.REQUEST_POWERLEVELS:
      return Object.assign({}, state, { isLoading: true, error: false });
    default:
      return state;
  }
}