Created
May 6, 2019 23:21
-
-
Save kevinnguy/0de16af7fea77cc0e1b2c0494314ce3f to your computer and use it in GitHub Desktop.
scoot-handles-business-logic-blog
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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