Si ownProps
se especifica el parámetro, react-redux pasará los accesorios que se pasaron al componente a sus connect
funciones. Entonces, si usa un componente conectado como este:
import ConnectedComponent from './containers/ConnectedComponent'
<ConnectedComponent
value="example"
/>
El ownProps
interior de sus funciones mapStateToProps
y mapDispatchToProps
será un objeto:
{ value: 'example' }
Y podría usar este objeto para decidir qué devolver de esas funciones.
Por ejemplo, en un componente de publicación de blog:
// BlogPost.js
export default function BlogPost (props) {
return <div>
<h2>{props.title}</h2>
<p>{props.content}</p>
<button onClick={props.editBlogPost}>Edit</button>
</div>
}
Puede devolver los creadores de acciones de Redux que hacen algo en esa publicación específica:
// BlogPostContainer.js
import { bindActionCreators } from 'redux'
import { connect } from 'react-redux'
import BlogPost from './BlogPost.js'
import * as actions from './actions.js'
const mapStateToProps = (state, props) =>
// Get blog post data from the store for this blog post ID.
getBlogPostData(state, props.id)
const mapDispatchToProps = (dispatch, props) => bindActionCreators({
// Pass the blog post ID to the action creator automatically, so
// the wrapped blog post component can simply call `props.editBlogPost()`:
editBlogPost: () => actions.editBlogPost(props.id)
}, dispatch)
const BlogPostContainer = connect(mapStateToProps, mapDispatchToProps)(BlogPost)
export default BlogPostContainer
Ahora usarías este componente así:
import BlogPostContainer from './BlogPostContainer.js'
<BlogPostContainer id={1} />