Blame view

redux/reducers/activitiesReducer.js 3.52 KB
jaymehta committed
1
import {
jaymehta committed
2
  ACTIVITY_FILTERS_CONSTANT,
jaymehta committed
3 4 5 6 7 8 9 10 11
  CREATE_ACTIVITY_FAIL,
  CREATE_ACTIVITY_REQUEST,
  CREATE_ACTIVITY_SUCCESS,
  GET_ACTIVITIES_FAIL,
  GET_ACTIVITIES_REQUEST,
  GET_ACTIVITIES_SUCCESS,
  GET_ACTIVITY_BY_ID_FAIL,
  GET_ACTIVITY_BY_ID_REQUEST,
  GET_ACTIVITY_BY_ID_SUCCESS,
jaymehta committed
12 13 14
  GET_WISHLISTS_FAIL,
  GET_WISHLISTS_REQUEST,
  GET_WISHLISTS_SUCCESS,
jaymehta committed
15 16 17 18
  UPDATE_ACTIVITY_BY_ID_FAIL,
  UPDATE_ACTIVITY_BY_ID_REQUEST,
  UPDATE_ACTIVITY_BY_ID_SUCCESS
} from "../constants/activitiesConstants";
jaymehta committed
19 20 21
import { CLEAR_ERRORS } from "../constants/vendorConstants";

export const createActivityReducer = (state = {}, action) => {
jaymehta committed
22 23 24
  switch (action.type) {
    case CREATE_ACTIVITY_REQUEST:
      return { loading: true };
jaymehta committed
25

jaymehta committed
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
    case CREATE_ACTIVITY_SUCCESS:
      return {
        loading: false,
        activityData: action.payload
      };

    case CREATE_ACTIVITY_FAIL:
      return {
        loading: false,
        error: action.payload.error.message
      };

    case CLEAR_ERRORS:
      return {
        ...state,
        error: null
      };

    default:
      return state;
  }
};
jaymehta committed
48 49 50 51 52 53 54 55 56

export const getActivitiesReducer = (state = {}, action) => {
  switch (action.type) {
    case GET_ACTIVITIES_REQUEST:
      return { loading: true };

    case GET_ACTIVITIES_SUCCESS:
      return {
        loading: false,
jaymehta committed
57 58 59
        allActivitiesData: action.payload,
        totalCount: action.payload.meta.pagination.total,
        resultsPerPage: action.payload.meta.pagination.pageSize
jaymehta committed
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
      };

    case GET_ACTIVITIES_FAIL:
      return {
        loading: false,
        error: action.payload.error.message
      };

    case CLEAR_ERRORS:
      return {
        ...state,
        error: null
      };

    default:
      return state;
  }
jaymehta committed
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
};

export const getActivityByIdReducer = (state = {}, action) => {
  switch (action.type) {
    case GET_ACTIVITY_BY_ID_REQUEST:
      return {
        loading: true
      };
    case GET_ACTIVITY_BY_ID_SUCCESS:
      return {
        loading: false,
        activityById: action.payload
      };
    case GET_ACTIVITY_BY_ID_FAIL:
      return {
        loading: false,
        error: action.payload.error.message
      };

    case CLEAR_ERRORS:
      return {
        ...state,
        error: null
      };

    default:
      return state;
  }
};

export const updateActivityByIdReducer = (state = {}, action) => {
  switch (action.type) {
    case UPDATE_ACTIVITY_BY_ID_REQUEST:
      return {
        loading: true
      };
    case UPDATE_ACTIVITY_BY_ID_SUCCESS:
      return {
        loading: true,
        updatedActivity: action.payload
      };
    case UPDATE_ACTIVITY_BY_ID_FAIL:
      return {
        loading: true,
        error: action.payload.error.message
      };
    case CLEAR_ERRORS:
      return {
        ...state,
        error: null
      };
    default:
      return state;
  }
};
jaymehta committed
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171

export const setActivityFilterReducer = (state = { activityFilters: {} }, action) => {
  switch (action.type) {
    case ACTIVITY_FILTERS_CONSTANT:
      return {
        activityFilters: action.payload
      };

    default:
      return state;
  }
};

export const getWishlistsReducer = (state = {}, action) => {
  switch (action.type) {
    case GET_WISHLISTS_REQUEST:
      return { loading: true };

    case GET_WISHLISTS_SUCCESS:
      return {
        loading: false,
        wishlists: action.payload
      };

    case GET_WISHLISTS_FAIL:
      return {
        loading: false,
        error: action.payload.error.message
      };

    case CLEAR_ERRORS:
      return {
        ...state,
        error: null
      };

    default:
      return state;
  }
};