this.props.history.push works in some components and not others this.props.history.push works in some components and not others reactjs reactjs

this.props.history.push works in some components and not others


You answered your question in your question.

As you can see, the components are virtually exactly the same except that the child one is inside the parent one.

The very fact that the component is nested one further is your issue. React router only injects the routing props to the component it routed to, but not to the components nested with in.

See the accepted answer to this question. The basic idea is that you now need to find a way to inject the routing props to the child component.You can do that by wrapping the child in a HOC withRouter.

export default withRouter(connect(mapStateToProps, matchDispatchToProps)(ChildView));

I hope this helps.


Using withRouter is fine, an alternative option is to pass the history as a prop from parent to child (without using withRouter), e.g:

Parent

<SignupForm history={this.props.history}/>

Child

this.props.history.push('/dashboard');


This is the problem of Nested Components.I was facing this issue in Header component.I wanted to redirect the page to home page on clicking the logo.

this.props.history.push won't work in nested components.

So Solution is to use withRouter .

To Use withRouter just copy paste Below 2 lines in Header(You can use it in your component) :

import { withRouter } from "react-router";export default withRouter(connect(mapStateToProps, {    ...})(Header));