Forked from markerikson/reduxActionBindingExample.js
Created
September 7, 2018 16:06
-
-
Save Tamal/91a1df45c3bd0037a465fe5f6106ec2d to your computer and use it in GitHub Desktop.
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 {action1, action2} from "myActions"; | |
import {bindActionCreators} from "redux"; | |
const mapDispatchToProps(dispatch) => { | |
return { | |
manuallyBoundAction : (...args) => dispatch(action1(...args)), | |
autoBoundAction : bindActionCreators(action2, dispatch), | |
multipleActionsTogether : bindActionCreators({action1, action2}, dispatch) | |
} | |
}; | |
const MyComponent = (props) => { | |
return ( | |
<div> | |
<button onClick={props.manuallyBoundAction}>Run First Action</button> | |
<button onClick={props.autoBoundAction}>Run Second Action</button> | |
<button onClick={props.multipleActionsTogether.action1}>Run Third Action</button> | |
<button onClick={props.multipleActionsTogether.action2}>Run Fourth Action</button> | |
</div> | |
) | |
} | |
export default connect(null, mapDispatchToProps)(MyComponent); | |
// or, you can use the shorthand object argument for mapDispatch: | |
export default connect(null, {action1, action2})(SomeOtherComponent) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment