react-router-dom with TypeScript

74,858

Solution 1

I use a different approach to fix this. I always separate the different properties (router, regular and dispatch), so I define the following interfaces for my component:

interface HomeRouterProps {
  title: string;   // This one is coming from the router
}

interface HomeProps extends RouteComponentProps<HomeRouterProps> {
  // Add your regular properties here
}

interface HomeDispatchProps {
  // Add your dispatcher properties here
}

You can now either create a new type that combines all properties in a single type, but I always combine the types during the component definition (I don't add the state here, but if you need one just go ahead). The component definition looks like this:

class Home extends React.Component<HomeProps & HomeDispatchProps> {
  constructor(props: HomeProps & HomeDispatchProps) {
    super(props);
  }

  public render() {
    return (<span>{this.props.match.params.title}</span>);
  }
}

Now we need to wire the component to the state via a container. It looks like this:

function mapStateToProps(state, ownProps: HomeProps): HomeProps => {
  // Map state to props (add the properties after the spread)
  return { ...ownProps };
}

function mapDispatchToProps(dispatch): HomeDispatchProps {
  // Map dispatch to props
  return {};
}

export default connect(mapStateToProps, mapDispatchToProps)(Hello);

This method allows a fully typed connection, so the component and container are fully typed and it is safe to refactor it. The only thing that isn't safe for refactoring is the parameter in the route that is mapped to the HomeRouterProps interface.

Solution 2

I think it is a typescript typings compilation issue, but I've found a workaround:

interface HomeProps extends RouteComponentProps<any>, React.Props<any> {
}

Solution 3

This is a Typescript typings issue. Since withRouter() will provide the routing props you need at runtime, you want to tell consumers that they only need to specify the other props. In this case, you could just use a plain ComponentClass:

export default withRouter(connectModule) as React.ComponentClass<{}>;

Or, if you had other props (defined in an interface called OwnProps) you wanted to pass in, you could do this:

export default withRouter(connectModule) as React.ComponentClass<OwnProps>;

There is slightly more discussion here

Solution 4

It looks like you have the right usage to apply the match, history, and location props to your component. I would check in your node_modules directory to see what versions of react-router and react-router-dom you have, as well as the @types modules.

I have essentially the same code as you, and mine is working with the following versions:

{
  "@types/react-router-dom": "^4.0.4",
  "react-router-dom": "^4.1.1",
}

Solution 5

After browsing the typescript definitions I discovered the RouteComponentProps interface so I now model my containers like so

type RouteParams = {
    teamId: string; // must be type string since route params
}

interface Props extends RouteComponentProps<RouteParams>, React.Props<RouteParams> { }

type State = {
    players: Array<Player>;
}

export class PlayersContainer extends React.Component<Props, State>{} 

now in the component class the route props can be accessed like this: let teamid = this.props.match.params.teamId;

Share:
74,858
Haris Bašić
Author by

Haris Bašić

Updated on July 08, 2022

Comments

  • Haris Bašić
    Haris Bašić almost 2 years

    I'm trying to use react router with TypeScript. However, I have certain problems using withRouter function. On the last line, I'm getting pretty weird error:

    Argument of type 'ComponentClass<{}>' is not assignable to parameter of type 'StatelessComponent<RouteComponentProps<any>> | ComponentClass<RouteComponentProps<any>>'.
      Type 'ComponentClass<{}>' is not assignable to type 'ComponentClass<RouteComponentProps<any>>'.
        Type '{}' is not assignable to type 'RouteComponentProps<any>'.
          Property 'match' is missing in type '{}’
    

    Code looks like:

    import * as React from 'react';
    import { connect } from 'react-redux';
    import { RouteComponentProps, withRouter } from 'react-router-dom';
    
    interface HomeProps extends RouteComponentProps<any> {
    }
    
    interface HomeState { }
    
    class Home extends React.Component<HomeProps, HomeState> {
      constructor(props: HomeProps) {
        super(props);
      }
      public render(): JSX.Element {
        return (<span>Home</span>);
      }
    }
    
    const connectModule = connect(
      (state) => ({
        // Map state to props
      }),
      {
        // Map dispatch to props
      })(Home);
    
    export default withRouter(connectModule);
    
  • Ross Allen
    Ross Allen over 6 years
    withRouter uses generics, so you can type it rather than typecasting: export default withRouter<OwnProps>(connectModule);.
  • Michael M. Myers
    Michael M. Myers over 6 years
    I would more so label this as expected behavior. Kevin Welcher outlines why this is needed a little more here: medium.com/@kaw2k/a-letter-of-appreciation-253ecab3f7d2
  • Søren Boisen
    Søren Boisen about 6 years
    Where's your call to withRouter?
  • Søren Boisen
    Søren Boisen about 6 years
    Upvoted. This is really the "right" way to solve the issue. If you are using TypeScript, type your components properly!
  • Ola Sundell
    Ola Sundell over 5 years
    Now, this is about a year old, but isn't HelloDispatchProps supposed to be HomeDispatchProps?
  • romor
    romor over 5 years
    In mapStateToProps, shouldn't be ownProps of type RouteComponentProps<HomeRouterProps>?
  • Logus Graphics
    Logus Graphics over 5 years
    Declaring any on typings removes the purpose of using typings in the first place. Wrong approach.
  • carlosvin
    carlosvin over 5 years
    Yes, it is not the correct approach, that's why I classified it as workaround.