GetJobOfUserReducer.js 1.11 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46

import ActionType from '../../actions/types'
// khởi tạo một init state
const initialState = {
    isLoading: false,
}

// bắt từng action type
function GetJobOfUserReducer(state = initialState, action) {
    switch (action.type) {
        case ActionType.START_GET_JOB_OF_USER:
            return {
                ...state,
                isLoading: true,
            }

        case ActionType.GET_JOB_OF_USER_SUCCESS:
            return {
                isLoading: false,
            }
        case ActionType.GET_JOB_OF_USER_FAILED:
            return {
                ...state,
                isLoading: false,
            }
        case ActionType.START_POST_JOB_OF_USER:
            return {
                ...state,
                isLoading: true,
            }

        case ActionType.POST_JOB_OF_USER_SUCCESS:
            return {
                isLoading: false,
            }
        case ActionType.POST_JOB_OF_USER_FAILED:
            return {
                ...state,
                isLoading: false,
            }
        default:
            return state
    }
}

export default GetJobOfUserReducer