Skip to content

Instantly share code, notes, and snippets.

@kevinnguy
Created May 6, 2019 23:21
Show Gist options
  • Save kevinnguy/0de16af7fea77cc0e1b2c0494314ce3f to your computer and use it in GitHub Desktop.
Save kevinnguy/0de16af7fea77cc0e1b2c0494314ce3f to your computer and use it in GitHub Desktop.
scoot-handles-business-logic-blog
import { createLogic } from 'redux-logic';
const fetchUserLogic = createLogic({
type: USER_FETCH,
cancelType: USER_FETCH_CANCEL,
latest: true, // only provide the latest if fired many times
process: async ({ getState, action }, dispatch) => {
try {
const response = await fetch(`https://server/user/${action.payload}`);
const responseJson = await res.json();
dispatch({
user: responseJson.user,
type: SET_USER
});
} catch (err) {
console.error(err);
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment