Usage with React Router
Last updated
Last updated
So you want to do routing with your Redux app. You can use it with . Redux will be the source of truth for your data and React Router will be the source of truth for your URL. In most of the cases, it is fine to have them separate unless you need to time travel and rewind actions that trigger a URL change.
react-router-dom
is available on npm . This guides assumes you are using react-router-dom@^4.1.1
.
npm install --save react-router-dom
Before integrating React Router, we need to configure our development server. Indeed, our development server may be unaware of the declared routes in React Router configuration. For example, if you access /todos
and refresh, your development server needs to be instructed to serve index.html
because it is a single-page app. Here's how to enable this with popular development servers.
Note on Create React AppIf you are using Create React App, you won't need to configure a fallback URL, it is automatically done.
If you are serving your index.html
from Express:
If you are serving your index.html
from WebpackDevServer: You can add to your webpack.config.dev.js:
First we will need to import <Router />
and <Route />
from React Router. Here's how to do it:
In a React app, usually you would wrap <Route />
in <Router />
so that when the URL changes, <Router />
will match a branch of its routes, and render their configured components. <Route />
is used to declaratively map routes to your application's component hierarchy. You would declare in path
the path used in the URL and in component
the single component to be rendered when the route matches the URL.
We will then import the <Provider />
from React Redux:
Now the <App />
component will be rendered if the URL matches '/'. Additionally, we will add the optional :filter?
parameter to /
, because we will need it further on when we try to read the parameter :filter
from the URL.
components/Root.js
We will also need to refactor index.js
to render the <Root />
component to the DOM.
index.js
In our example, we can wrap <NavLink />
with a new container component <FilterLink />
so as to dynamically change the URL.
containers/FilterLink.js
components/Footer.js
Now if you click on <FilterLink />
you will see that your URL will change between '/SHOW_COMPLETED'
, '/SHOW_ACTIVE'
, and '/'
. Even if you are going back with your browser, it will use your browser's history and effectively go to your previous URL.
Currently, the todo list is not filtered even after the URL changed. This is because we are filtering from <VisibleTodoList />
's mapStateToProps()
, which is still bound to the state
and not to the URL. mapStateToProps
has an optional second argument ownProps
that is an object with every props passed to <VisibleTodoList />
containers/VisibleTodoList.js
Right now we are not passing anything to <App />
so ownProps
is an empty object. To filter our todos according to the URL, we want to pass the URL params to <VisibleTodoList />
.
When previously we wrote: <Route path="/:filter?" component={App} />
, it made available inside App
a params
property.
params
property is an object with every param specified in the url with the match
object. e.g: match.params
will be equal to { filter: 'SHOW_COMPLETED' }
if we are navigating to localhost:3000/SHOW_COMPLETED
. We can now read the URL from <App />
.
components/App.js
Note About Other Routing Libraries
Redux Router is an experimental library, it lets you keep entirely the state of your URL inside your redux store. It has the same API with React Router API but has a smaller community support than react-router.
React Router Redux creates a binding between your redux app and react-router and it keeps them in sync. Without this binding, you will not be able to rewind the actions with Time Travel. Unless you need this, React Router and Redux can operate completely apart.
Along this chapter, we will be using the example. We recommend you to clone it while reading this chapter.
However, in our Redux App we will still need <Provider />
. <Provider />
is the higher-order component provided by React Redux that lets you bind Redux to React (see ).
We will wrap <Router />
in <Provider />
so that route handlers can get .
React Router comes with a component that lets you navigate around your application. If you want to add some styles, react-router-dom
has another special <Link />
called , which accepts styling props. For instance, the activeStyle
property lets us apply a style on the active state.
Note that we are using on the properties to pass in params
to <VisibleTodoList />
.
Now that you know how to do basic routing, you can learn more about