Skip to content Skip to sidebar Skip to footer

How Can I Dispatch From Child Components In React Redux?

My server has code like this: ob

Solution 1:

You're getting too caught up on children components. You should structure your app so that you have connected components and non-connected components. Non-connected components should be stateless, pure functions essentially, that take in all their requirements via props. Connected components should use the connect function to map redux state to props and redux dispatcher to props, and then be responsible for passing those props to child components.

You might have lots of connected components in an app, and lots of non-connected components. This post (by the creator of redux) discusses it in more detail, and talks about non-connected (dumb) components being responsible for actual display of UI, and connected (smart) components being responsible for composing non-connected components.

An example might be (using some newer syntax):

classImageextendsReact {
  render() {
    return (
      <div><h1>{this.props.name}</h1><imgsrc={this.props.src} /><buttononClick={this.props.onClick}>Click me</button></div>
    );
  }
}

classImageListextendsReact {
  render() {
    return (
      this.props.images.map(i =><Imagename={i.name}src={i.src}onClick={this.props.updateImage} />)
    );
  }
}

constmapStateToProps = (state) => {
  return {
    images: state.images,
  };
};
constmapDispatchToProps = (dispatch) => {
  return {
    updateImage: () =>dispatch(updateImageAction()),
  };
};
exportdefaultconnect(mapStateToProps, mapDispatchToProps)(ImageList);

In this example, ImageList is a connected component and Image is a non-connected component.

Solution 2:

There used to be advice to the effect to try to limit the components that you connect. See for example:

https://github.com/reactjs/redux/issues/419

https://github.com/reactjs/redux/issues/419#issuecomment-178850728

Anyway, that's really more useful for delegating a slice of state to a component. You can do that if it makes sense for your situation, or if you don't want to pass down a callback that calls dispatch() you can pass the store or dispatch down the hierarchy if you want.

Post a Comment for "How Can I Dispatch From Child Components In React Redux?"