React – All about side effect (1)

Redux Thunk

actions.js

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
export const gettingAsyncList = () => {
return {
type: GETTING_ASYNC_LIST,
}
}
export const getAsyncListSuccess = (data) => {
return {
type: GET_ASYNC_LIST_SUCCESS,
data: data,
}
}
export const getAsyncListFailure= (error) => {
return {
type: GET_ASYNC_LIST_FAILURE,
data: error,
}
}
export const gettingAsyncList = () => { return { type: GETTING_ASYNC_LIST, } } export const getAsyncListSuccess = (data) => { return { type: GET_ASYNC_LIST_SUCCESS, data: data, } } export const getAsyncListFailure= (error) => { return { type: GET_ASYNC_LIST_FAILURE, data: error, } }
export const gettingAsyncList = () => {
    return {
        type: GETTING_ASYNC_LIST,
    }
}

export const getAsyncListSuccess = (data) => {
    return {
      type: GET_ASYNC_LIST_SUCCESS,
      data: data,
    }
}

export const getAsyncListFailure= (error) => {
    return {
      type: GET_ASYNC_LIST_FAILURE,
      data: error,
    }
}
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
export const fetchAsyncList = () => {
return (dispatch) => {
// Call an action
dispatch(gettingAsyncList())
// Fetch data
fetchSomeDataHere()
.then((response) => {
dispatch(getAsyncListSuccess(response))
})
.catch((error) => {
dispatch(getAsyncListFailure(error));
})
}
}
export const fetchAsyncList = () => { return (dispatch) => { // Call an action dispatch(gettingAsyncList()) // Fetch data fetchSomeDataHere() .then((response) => { dispatch(getAsyncListSuccess(response)) }) .catch((error) => { dispatch(getAsyncListFailure(error)); }) } }
export const fetchAsyncList = () => {
    return (dispatch) => {
      // Call an action
      dispatch(gettingAsyncList())

      // Fetch data
      fetchSomeDataHere()
        .then((response) => {
            dispatch(getAsyncListSuccess(response))
        })
        .catch((error) => {
           dispatch(getAsyncListFailure(error));
        })
    }
}

reducers.js

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
const defaultState = {
isFetching: false,
asyncList: [],
errorMsg: ''
}
export default function reducer(state = defaultState, action) {
if (action.type === GETTING_ASYNC_LIST) {
return {
...state,
isFetching: true
}
} else if (action.type === GET_ASYNC_LIST_SUCCESS) {
return {
...state,
isFetching: false,
asyncList: action.data
}
} else if (action.type === GET_ASYNC_LIST_FAILURE) {
return {
...state,
isFetching: false,
asyncList: [],
errorMsg: action.data
}
} else {
return state
}
}
const defaultState = { isFetching: false, asyncList: [], errorMsg: '' } export default function reducer(state = defaultState, action) { if (action.type === GETTING_ASYNC_LIST) { return { ...state, isFetching: true } } else if (action.type === GET_ASYNC_LIST_SUCCESS) { return { ...state, isFetching: false, asyncList: action.data } } else if (action.type === GET_ASYNC_LIST_FAILURE) { return { ...state, isFetching: false, asyncList: [], errorMsg: action.data } } else { return state } }
const defaultState = {
    isFetching: false,
    asyncList: [],
   errorMsg: ''
}

export default function reducer(state = defaultState, action) {
    if (action.type === GETTING_ASYNC_LIST) {
        return {
            ...state,
            isFetching: true
        }
    } else if (action.type === GET_ASYNC_LIST_SUCCESS) {
        return {
            ...state,
            isFetching: false,
            asyncList: action.data
        }
    } else if (action.type === GET_ASYNC_LIST_FAILURE) {
        return {
            ...state,
            isFetching: false,
            asyncList: [],
            errorMsg: action.data
        }
    } else {
        return state
    }
}

Be the first to comment

Leave a Reply

Your email address will not be published.


*