Created
November 6, 2016 22:13
-
-
Save paulsturgess/7089b2386e8b86335fa7b681e3935c7a to your computer and use it in GitHub Desktop.
Redux Container Component
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 { connect } from 'react-redux'; | |
import AddTodoForm from '../components/AddTodoForm' | |
import actions from '../actions'; | |
// mapDispatchToProps receives the dispatch() method and returns | |
// callback props that can be used to inject into the presentational component | |
// This means addTodo can be set as a prop when testing AddTodoForm which makes | |
// it easy to spy and check the correct actions are triggered | |
export const mapDispatchToProps = (dispatch) => ({ | |
addTodo: (value) => dispatch(actions.addTodo(value)) | |
}) | |
// A container component is just a React component that uses store.subscribe() | |
// to read a part of the Redux state tree and supply props to a | |
// presentational component it renders | |
const ConnectedAddTodo = connect(null, mapDispatchToProps)(AddTodoForm) | |
// In this case there are no props | |
export default ConnectedAddTodo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment