React Redux Fetch
A declarative and customizable way to fetch data for React components and manage that data in the Redux state.
Goal
The goal of this library is to minimize boilerplate code of crud operations in react/redux applications.
Motivation
Redux provides a clean interface for handling data across your application, but integrating with a web service can become a quite cumbersome, repetitive task. React-refetch by Heroku provides a good alternative, but doesn't keep your fetched data in the application state, which makes it more difficult to debug, handle side effects (e.g. with redux-saga) and integrate with your redux actions. This module is strongly inspired by react-refetch; it exposes a connect()
decorator to keep your components stateless. This function lets you map props to URLs. React-redux-fetch takes these mappings and creates functions which dispatch actions and passes them as props to your component. The response is also passed as a prop to your component with additional pending, fulfilled and rejected flags, just like react-refetch.
Installation
npm install --save react-redux-fetch
Setup
-
Connect the react-redux-fetch middleware to the Store using
applyMiddleware
: -
Mount react-redux-fetch reducer to the state at
repository
:
Basic example
How does it work?
Every entry in the config array passed to connect()
is mapped to 2 properties, a function to make the actual request and an object containing the response.
The function name consists of 3 parts:
- dispatch: to indicate that by calling this function a redux action is dispatched
- [resourceName]: the name of the resource declared in the config
- [method]: The method of the request (Get/Delete/Post/Put)
The response object, with name: [resourceName] + 'Fetch', consists of:
- pending, fulfilled, rejected: Promise flags
- value: The actual response body
- meta: The actual response object
When calling this.props.dispatchAllPokemonGet();
, react-redux-fetch dispatches the action react-redux-fetch/GET_REQUEST
:

The action creates a new state tree allPokemon
, inside the repository
state tree:

The react-redux-fetch middleware takes this action and builds the request with Fetch API.
This part of the state is passed as a prop to the PokemonList component:

When the request fulfills (i.e. receiving a status code between 200 and 300), react-redux-fetch dispatches the action react-redux-fetch/GET_FULFIL
:

With updated state tree:

This part of the state is passed as a prop to the PokemonList component:

API
connect()
A higher order component to enhance your component with the react-redux-fetch functionality.
Accepts an array:
Note: This is the preferred way, because this allows react-redux-fetch to keep
the generated dispatch
functions in state and is therefore more performant.
Or a function returning an array. This function receives the props and context, which can then be used in your configuration to dynamically build your urls.
The returned array should be an array of objects, with the following properties:
resource
: Object|String, required. When used as a string, this is the same asresource: { name: 'myResource' }
.name
: String, required. A name for your resource, this name will be used as a key in the state tree. If noaction
is defined inresource
, thename
is used in the dispatch prop, e.g.:name: 'myResource'
=>dispatchMyResourceGet
.action
: String, optional. A name to use in the dispatch function that's created and passed as a prop. (e.g.action: 'myAction'
=>dispatchMyActionGet
).
method
: String, optional, default: 'get'. The request method that will be used for the request. One of 'get', 'post', 'put', 'delete'. Can be extended by adding new types to the registry (see below).request
: Object|Function, required. Use a function if you want to pass dynamic data to the request config (e.g. body data).url
: String, required. The URL to make the request to.body
: Object, optional. The object that will be sent as JSON in the body of the request.headers
: Object|Function, optional. Use this to set the headers, for this request only. Use container.registerRequestHeader()
to set headers for every request.meta
: Object, optional. Everything passed to 'meta' will be passed to every part in the react-redux-fetch flow.comparison
: Any, optional. If provided, a new request is not made if thecomparison
value between dispatch calls is the same.force
: boolean, optional. Iftrue
, overrules thecomparison
property.
container
The container provides a single entry point into customizing the different parts of react-redux-fetch.
For now, the following customizations are possible, this will be extended in the future:
-
requestMethods
Out-of-the-box, react-redux-refetch provides implementations for
get
,post
,put
anddelete
requests.
A new request method, e.g.patch
, can be added like this:An existing request method definition can be altered like this:
-
requestHeaders
The default request headers are
'Accept': 'application/json'
and'Content-Type': 'application/json'
. You can add request headers:Or replace the request headers:
-
reducers
Additional reducers can be registered to work on a subset of the fetch state, without having to overwrite all reducers defined in requestMethods definition.
For example, there is no out-of-the-box way of clearing state data. If you want to clear e.g. all todo items from a todo list, you can register a reducer to work on the 'todos' state.The todos state slice is passed to the reducer, which can return a new state when your custom redux action is dispatched:
-
requestBuilder
The requestBuilder is used by the default react-redux-fetch middleware. Takes a URL and request config and returns a Request object.
To replace the default implementation:
buildActionsFromMappings
The function internally used by connect()
. You can use this function to create the fetch redux actions without a React Component.
buildActionsFromMappings(config)
accepts the same configuration options as connect()
.
Examples
POST
PUT
Analogous to POST
DELETE
A special property removeFromList
can be specified in meta
, which removes an element from the state if the resource value is a list.
(In the example, the pokemon
state contains a collection of Pokémon.)
idName
: The id-key of the object to find and deleteid
: The id-value of the object to find and delete