Forked from markerikson/dispatching-action-creators.js
Created
October 16, 2019 13:14
-
-
Save thinklinux/3d42b3caa8d996e5c5d61ca2320bddb9 to your computer and use it in GitHub Desktop.
Dispatching action creators comparison
This file contains hidden or 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
// approach 1: define action object in the component | |
this.props.dispatch({ | |
type : "EDIT_ITEM_ATTRIBUTES", | |
payload : { | |
item : {itemID, itemType}, | |
newAttributes : newValue, | |
} | |
}); | |
// approach 2: use an action creator function | |
const actionObject = editItemAttributes(itemID, itemType, newAttributes); | |
this.props.dispatch(actionObject); | |
// approach 3: directly pass result of action creator to dispatch | |
this.props.dispatch(editItemAttributes(itemID, itemType, newAttributes)); | |
// approach 4: pre-bind action creator to automatically call dispatch | |
const boundEditItemAttributes = bindActionCreators(editItemAttributes, dispatch); | |
boundEditItemAttributes(itemID, itemType, newAttributes); | |
// parallel approach 1: dispatching a thunk function | |
const innerThunkFunction1 = (dispatch, getState) => { | |
// do useful stuff with dispatch and getState | |
}; | |
this.props.dispatch(innerThunkFunction1); | |
// parallel approach 2: use a thunk action creator to define the function | |
const innerThunkFunction = someThunkActionCreator(a, b, c); | |
this.props.dispatch(innerThunkFunction); | |
// parallel approach 3: dispatch thunk directly without temp variable | |
this.props.dispatch(someThunkActionCreator(a, b, c)); | |
// parallel approach 4: pre-bind thunk action creator to automatically call dispatch | |
const boundSomeThunkActionCreator = bindActionCreators(someThunkActionCreator, dispatch); | |
boundSomeThunkActionCreator(a, b, c); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment