react-router
is the de-facto standard routing solution for react applications.
The thing is that with redux and a single state tree, the URL is part of that
state. connected-react-router
takes care of synchronizing the location of our
application with the application state.
(See the connected-react-router
FAQ
for more information)
To add a new route, simply import the Route
component and use it standalone or inside the Switch
component (all part of RR4 API):
<Route exact path="/" component={HomePage} />
Top level routes are located in App.js
.
If you want your route component (or any component for that matter) to be loaded asynchronously, use container or component generator with 'Do you want to load resources asynchronously?' option activated.
To go to a new page use the push
function by connected-react-router
:
import { push } from 'connected-react-router/immutable';
dispatch(push('/path/to/somewhere'));
You can do the same thing in a saga:
import { push } from 'connected-react-router/immutable'
import { put } from 'redux-saga/effects'
export function* mySaga() {
yield put(push('/home'))
}
For example, if you have a route called about
at /about
and want to make a child route called team
at /about/our-team
, follow the example
in App.js
to create a Switch
within the parent component. Also remove the exact
property from the about
parent route.
// AboutPage/index.js
import { Switch, Route } from 'react-router-dom';
class AboutPage extends React.PureComponent {
render() {
return (
<Switch>
<Route exact path="/about/our-team" />
</Switch>
);
}
}
Note that with React Router v4, route re-rendering is handled by React's setState
. This
means that when wrapping route components in a redux connected container, or PureComponent
or any other component with
shouldComponentUpdate
, you need to create a ConnectedSwitch
container that receives location
directly from a redux store. Read more about this in
Dealing with Update Blocking.
You can read more in react-router
's documentation.