Skip to main content
Skip table of contents

React Router Guidelines

These guidelines are aimed at realizing consistent, optimal router usage across all VFS apps. They’re also useful when upgrading an app from a previous version of react-router.

Modify component and hook imports

In the past we imported router functionality from react-router. This functionality has been improved and moved to a new location. Import from react-router-dom instead:

CODE
import { Switch, Route, Link, useHistory, useLocation } from 'react-router-dom';

Note that these new imports require a context to function. In unit tests you can provide the context by wrapping the component under test with a router component, as described in the react-router testing guide.

Use the new startApp() function

The standard pattern for VSP apps is to call the startApp() function to bootstrap the app. However, the new components and hooks described above are not compatible with the old startApp() function in platform/startup/index.js. Instead, import the new startApp() function from platform/startup/router.js. It’s a drop-in replacement.

Define routes using components

Instead of defining routes with a JS object, use react-router-dom components. Here’s an example:

CODE
<Switch>
  <Route path="/first">
    <FirstComponent />
  </Route>
  <Route path="/second">
    <SecondComponent />
  </Route>
</Switch>

Define child routes inside child components. In this example, if FirstComponent renders multiple child routes, those child routes should be defined inside FirstComponent.

Avoid the render and component props where possible

Instead of placing your component inside the <Route render=...> or <Route component=...> props, just make your component a child of the Route component, like:

CODE
<Route path="/mypath">
  <MyComponent exampleProp={someValue} />
</Route>

This method is cleaner because you explicitly pass any props your component needs.

Use hooks instead of withRouter

In older react-router versions, it was common to use the withRouter HOC to access router information or perform navigation. That approach is deprecated. It’s been replaced with simple hooks like these:

CODE
import { useParams, useLocation, useHistory } from 'react-router-dom';

const params = useParams();
const location = useLocation();
const history = useHistory();

history.push(`${location.pathname}/more/${params.id}`);

The react-router documentation lists supported hooks with example usage.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.