Redux-Saga addon to simplify handling of AJAX requests. It supports Axios and Fetch API, but different integrations could be added, as they are implemented in a plugin fashion.
- Motivation
- Installation
- Usage
- Actions
- Reducers
- Interceptors
- Custom action suffixes
- FSA
- Usage with Fetch API
- Examples
Motivation ⬆️
With redux-saga-requests
, assuming you use axios
you could refactor a code in the following way:
import axios from 'axios';
- import { takeEvery, put, call } from 'redux-saga/effects';
+ import { createRequestInstance, watchRequests, requestsReducer } from 'redux-saga-requests';
+ import axiosDriver from 'redux-saga-requests-axios';
const FETCH_BOOKS = 'FETCH_BOOKS';
- const FETCH_BOOKS_SUCCESS = 'FETCH_BOOKS_SUCCESS';
- const FETCH_BOOKS_ERROR = 'FETCH_BOOKS_ERROR';
- const fetchBooks = () => ({ type: FETCH_BOOKS });
- const fetchBooksSuccess = data => ({ type: FETCH_BOOKS_SUCCESS, data });
- const fetchBooksError = error => ({ type: FETCH_BOOKS_ERROR, error });
+ const fetchBooks = () => ({
+ type: FETCH_BOOKS,
+ request: {
+ url: '/books',
+ // you can put here other Axios config attributes, like method, data, headers etc.
+ },
+ });
- const defaultState = {
- data: null,
- pending: 0, // number of pending FETCH_BOOKS requests
- error: null,
- };
-
- const booksReducer = (state = defaultState, action) => {
- switch (action.type) {
- case FETCH_BOOKS:
- return { ...defaultState, pending: state.pending + 1 };
- case FETCH_BOOKS_SUCCESS:
- return { ...defaultState, data: action.data, pending: state.pending - 1 };
- case FETCH_BOOKS_ERROR:
- return { ...defaultState, error: action.error, pending: state.pending - 1 };
- default:
- return state;
- }
- };
+ const booksReducer = requestsReducer({ actionType: FETCH_BOOKS });
- const fetchBooksApi = () => axios.get('/books');
-
- function* fetchBooksSaga() {
- try {
- const response = yield call(fetchBooksApi);
- yield put(fetchBooksSuccess(response.data));
- } catch (e) {
- yield put(fetchBooksError(e));
- }
- }
-
function* rootSaga() {
- yield takeEvery(FETCH_BOOKS, fetchBooksSaga);
+ yield createRequestInstance(axios, { driver: axiosDriver });
+ yield watchRequests();
}
With redux-saga-requests
, you no longer need to define error and success actions to do things like error handling
or showing loading spinners. You don't need to write requests related repetitive sagas and reducers either.
Here you can see the list of features this library provides:
- you define your AJAX requests as simple actions, like
{ type: FETCH_BOOKS, request: { url: '/books' } }
andsuccess
,error
(abort
is also supported, see below) actions will be dispatched automatically for you success
,error
andabort
functions, which add correct and consistent suffixes to your request action types (check low-level-reducers example to see how to use those functions in your reducers)requestsReducer
higher order reducer, which takes requests related state management burden from your shoulders- automatic request abort - when a saga is cancelled, a request made by it is automatically aborted and an abort action
is dispatched (especially handy with
takeLatest
andrace
Redux-Saga effects) - sending multiple requests in one action -
{ type: FETCH_BOOKS_AND_AUTHORS, request: [{ url: '/books' }, { url: '/authors}'] }
will send two requests and wrap them inPromise.all
- flexibility - you can use "auto mode"
watchRequests
(see basic example), or much more flexiblesendRequest
(see advanced example), or... you could even access your request instance withgetRequestInstance
- support for Axios and Fetch API - additional clients could be added, you could even write your own client
integration as a
driver
(see ./packages/redux-saga-requests-axios/src/axios-driver.js for the example) - compatible with FSA,
redux-act
andredux-actions
libraries (see redux-act example) - simple to use with server side rendering - for example you could pass Axios instance to
createRequestInstance
and you don't need to worry that Axios interceptors would be shared across multiple requests onRequest
,onSuccess
,onError
andonAbort
interceptors, you can attach your sagas (or simple functions) to them to define a global behaviour for a given event type
Installation ⬆️
To install the package, just run:
$ yarn add redux-saga-requests
or...
$ npm install redux-saga-requests
or you can just use CDN: https://unpkg.com/redux-saga-requests
.
Also, you need to install a driver:
- if you use Axios, install
axios
andredux-saga-requests-axios
:or...$ yarn add axios redux-saga-requests-axios
or CDN:$ npm install axios redux-saga-requests-axios
https://unpkg.com/redux-saga-requests-axios
. - if you use Fetch API, install
isomorphic-fetch
(or a different Fetch polyfill) andredux-saga-requests-fetch
:or...$ yarn add isomorphic-fetch redux-saga-requests-fetch
or CDN:$ npm install isomorphic-fetch redux-saga-requests-fetch
https://unpkg.com/redux-saga-requests-fetch
.
Of course, because this is Redux-Saga addon, you also need to install Redux-Saga.
Usage ⬆️
For a basic usage, see Motivation paragraph. If you don't care about request cancellation, this will be probably all you need in your applications. You could also use Interceptors, if you need to do something extra for every request, successful response or error. For reducers usage, see Reducers paragraph.
Apart from the auto-mode watchRequests
, this library provides also much more powerful (automatic requests
abort to name a few) and flexible sendRequest
:
import axios from 'axios';
import { takeLatest } from 'redux-saga/effects';
import { createRequestInstance, sendRequest } from 'redux-saga-requests';
import axiosDriver from 'redux-saga-requests-axios'; // or a different driver
const FETCH_BOOKS = 'FETCH_BOOKS';
const fetchBooks = () => ({
type: FETCH_BOOKS,
request: { url: '/books' },
});
function* rootSaga() {
yield createRequestInstance(axios, { driver: axiosDriver });
yield takeLatest(FETCH_POST, sendRequest);
}
Now, if /books
request is pending and another fetchPost
action is triggered, the previous request will be aborted
and FETCH_BOOKS_ABORT
will be dispatched. Please note, that requests aborts are working only for axios
driver,
request cannot be really aborted for Fetch API according to their specifications, at least
not yet,
but you won't notice it in your application (apart from unnecessary request overhead) - FETCH_BOOKS_ABORT
actions
will still be fired.
You could also use race
effect:
import axios from 'axios';
import { call, race, take, takeLatest } from 'redux-saga/effects';
import { createRequestInstance, sendRequest } from 'redux-saga-requests';
import axiosDriver from 'redux-saga-requests-axios'; // or a different driver
const FETCH_BOOKS = 'FETCH_BOOKS';
const CANCEL_REQUEST = 'CANCEL_REQUEST';
const fetchBooks = () => ({
type: FETCH_BOOKS,
request: { url: '/books' },
});
const cancelRequest = () => ({ type: CANCEL_REQUEST });
function* fetchBookSaga(fetchBookAction) {
yield race([
call(sendRequest, fetchBookAction),
take(CANCEL_REQUEST),
]);
}
function* rootSaga() {
yield createRequestInstance(axios, { driver: axiosDriver });
yield takeLatest(FETCH_BOOKS, fetchBookSaga);
}
In above case, not only the last /books
request could be successful, but also it could be aborted with cancelRequest
action, as sendRequest
would be aborted as it would lose with take(CANCEL_REQUEST)
effect.
Of course, you can send requests directly also from your sagas:
function* fetchBookSaga() {
const { response, error } = yield call(sendRequest, fetchBooks(), true);
if (response) {
// do sth with response
} else {
// do sth with error
}
}
The key here is, that you need to pass true
as second argument to sendRequest
, so that fetchBooks
action will be
dispatched - usually it is already dispatched somewhere else (from your React components onClick
for instance),
but here not, so we must explicitely tell sendRequest
to dispatch it.
Also, it is possible to get access to your request instance (like Axios) in your Saga:
import { getRequestInstance } from 'redux-saga-requests';
function* fetchBookSaga() {
const requestInstance = yield getRequestInstance();
/* now you can do whatever you want, for example, if u use axios:
const response = yield call(requestInstance.get, '/some-url') */
}
You can do whatever you want with it, which gives you maximum flexibility. You could even add Axios interceptors here, but it is preferable to use Interceptors from this library.
Actions ⬆️
No matter whether you use watchRequests
or sendRequest
, you only need to define request actions, which will trigger AJAX
calls for you, as well as dispatch success, error or abort actions. Lets say you defined a following request
action:
const fetchBooks = (id) => ({
type: 'DELETE_BOOK',
request: {
url: `/books/${id}`,
method: 'delete'
},
meta: { // meta is optional, it will be added to success, error or abort action when defined
id,
},
});
With this request action, assuming id = 1
, following actions will be dispatched, depending on the request outcome:
{
type: 'DELETE_BOOK_SUCCESS',
data: 'a server response',
meta: {
id: 1, // got from request action meta
requestAction: {
type: 'DELETE_BOOK',
request: {
url: '/books/1',
method: 'delete'
},
meta: {
id: 1,
},
},
},
}
{
type: 'DELETE_BOOK_ERROR',
error: 'a server error',
meta: {
id: 1, // got from request action meta
requestAction: {
type: 'DELETE_BOOK',
request: {
url: '/books/1',
method: 'delete'
},
meta: {
id: 1,
},
},
},
}
{
type: 'DELETE_BOOK_ABORT',
meta: {
id: 1, // got from request action meta
requestAction: {
type: 'DELETE_BOOK',
request: {
url: '/books/1',
method: 'delete'
},
meta: {
id: 1,
},
},
},
}
Reducers ⬆️
Except for watchRequests
and sendRequest
, which can simplify your actions and sagas a lot, you can also use
requestsReducer
, a higher order reducer, which is responsible for a portion of your state related to a given request type.
For a general idea how it works, see Motivation paragraph. This is just a minimal example, where with simple:
const reducer = requestsReducer({ actionType: `FETCH_SOMETHING` });
you already have a working reducer which will handle FETCH_SOMETHING
, FETCH_SOMETHING_SUCCESS
,
FETCH_SOMETHING_ERROR
and FETCH_SOMETHING_ABORT
actions, updating a following state attributes for you:
data
: here a data from your API will be kept, updated afterFETCH_SOMETHING_SUCCESS
is dispatched, initially set tonull
(default) or[]
, depending onmultiple
config attribute (see below)error
: initiallynull
, updated to a HTTP error afterFETCH_SOMETHING_ERROR
is dispatchedpending
: number of pendingFETCH_SOMETHING
requests, initially0
, incremented by1
for eachFETCH_SOMETHING
, and decremented by1
for each ofFETCH_SOMETHING_SUCCESS
,FETCH_SOMETHING_ERROR
,FETCH_SOMETHING_ABORT
(implemeted asinteger
, notboolean
due to possibility of multiple pending requests of the same type - for example in a sequenceFETCH_SOMETHING
,FETCH_SOMETHING
,FETCH_SOMETHING_SUCCESS
we would setpending
tofalse
, despite the fact 2ndFETCH_SOMETHING
is still running, withinteger
pending
will be set to1
, which for example allows you to easily write a selector likeshowSpinner = pending => pending > 0
)
In order to be flexible, apart from actionType
passed in requestsReducer
config, optionally you can pass any of
following attributes:
multiple: boolean
: default tofalse
, change it totrue
if you want your not loaded data to be stored as[]
instead ofnull
dataKey: string
: default to'data'
, change it, if for some reason you want your data to be kept in a different keyerrorKey: string
: default to'error'
, change it, if for some reason you want your errors to be kept in a different keypendingKey: string
: default to'pending'
, change it, if for some reason you want your pending state to be kept in a different keygetData: (state, action) => data
: describes how to get data fromaction
object, returnsaction.data
oraction.payload.data
when action is FSA compliantgetError: (state, action) => data
: describes how to get error fromaction
object, returnsaction.error
oraction.payload
when action is FSA compliantonRequest: (state, action, config) => nextState
: here you can adjust howrequestReducers
handles request actionsonSuccess: (state, action, config) => nextState
: here you can adjust howrequestReducers
handles success actionsonError: (state, action, config) => nextState
: here you can adjust howrequestReducers
handles error actionsonAbort: (state, action, config) => nextState
: here you can adjust howrequestReducers
handles abort actionsgetSuccessAction: (actionType: string) => string
: adds_SUCCESS
toactionType
as a defaultgetErrorAction: (actionType: string) => string
: adds_ERROR
toactionType
as a defaultgetAbortAction: (actionType: string) => string
: adds_ABORT
toactionType
as a default
For example:
const reducer = requestsReducer({ actionType: `FETCH_SOMETHING`, multiple: true });
which will keep your empty data as []
, not null
.
For inspiration how you could override any of those attributes, see default config source.
You might also want to adjust any configuration for all your requests reducers globally. Here is how you can do this:
import { createRequestsReducer } from 'redux-saga-requests';
const requestsReducer = createRequestsReducer({ errorKey: 'fail' });
Now, instead of built-in requestsReducer
, you can use your own one, and from now on all errors will be kept in fail
key in your state, not error
.
If you need to have an additional state next to built-in state in requestsReducer
, or additional actions you would like
it to handle, you can pass an optional custom reducer as a 2nd pararameter to requestsReducer
:
const activeReducer = (state = { active: false }, action) => {
switch (action.type) {
case `SET_ACTIVE`:
return { ...state, active: true };
case `SET_INACTIVE`:
return { ...state, active: false };
default:
return state;
}
const reducer = requestsReducer({ actionType }, activeReducer);
which effectively will merge activeReducer
with requestsReducer
, giving you initial state:
const state = {
data: null,
error: null,
pending: 0,
active: false,
};
Basically, you can use requestsReducer
, which will handle requests related logic in a configurable way with any custom
logic you need.
However, if requestsReducer
seems too magical for you, this is totally fine, you can write your reducers in a standard
way too, but you might consider using success
, error
and abort
helpers, which can add proper suffixes for you:
import { success, error, abort } from 'redux-saga-requests';
const initialState = {
data: null,
fetching: false,
error: false,
};
const FETCH_BOOKS = 'FETCH_BOOKS';
const booksReducer = (state = initialState, action) => {
switch (action.type) {
case FETCH_BOOKS:
return { ...initialState, fetching: true };
case success(FETCH_BOOKS):
return {
...initialState,
data: { ...action.data },
};
case error(FETCH_BOOKS):
return { ...initialState, error: true };
case abort(FETCH_BOOKS):
return { ...initialState, fetching: false };
default:
return state;
}
};
Interceptors ⬆️
You can add global handlers to onRequest
, onSuccess
, onError
add onAbort
, like so:
function* onRequestSaga(request) {
...
}
function* onResponseSaga(response) {
...
}
function* onErrorSaga(error) {
...
}
function* onAbortSaga() {
...
}
function* rootSaga() {
yield createRequestInstance(axios, {
driver: axiosDriver,
onRequest: onRequestSaga,
onSuccess: onResponseSaga,
onError: onErrorSaga,
onAbort: onAbortSaga,
});
yield watchRequest();
}
Custom action suffixes ⬆️
As a default, success
, error
and abort
functions generate _SUCCESS
, _ERROR
and _ABORT
suffixes respectively.
However, it is possible to change them in a following way:
import axios from 'axios';
import { getActionWithSuffix, watchRequests, createRequestInstance, createRequestsReducer } from 'redux-saga-requests';
import axiosDriver from 'redux-saga-requests-axios'; // or a different driver
const success = getActionWithSuffix('MY_SUCCESS_SUFFIX');
const error = getActionWithSuffix('MY_ERROR_SUFFIX');
const abort = getActionWithSuffix('MY_ABORT_SUFFIX');
function* rootSaga() {
yield createRequestInstance(axios, { driver: axiosDriver, success, error, abort });
yield watchRequests();
}
const requestsReducer = createRequestsReducer({
getSuccessAction: success,
getErrorAction: error,
getAbortAction: abort,
});
So, basically you need to use getActionWithSuffix
to create your own success
, error
and abort
functions, which
you need to pass in createRequestInstance
config. Also, if you use requestsReducer
, you can create you own version
of it with createRequestsReducer
with your suffixes. Otherwise, instead of using built-in success
, error
and abort
functions in your reducers, you will need to use your own ones.
FSA ⬆️
If you like your actions to be compatible with Flux Standard Action, that's totally fine, you can define your request actions like:
const fetchBooks = () => ({
type: 'FETCH_BOOKS',
payload: {
request: {
url: '/books',
},
},
meta: { // optional
someKey: 'someValue',
},
});
Then, success, error and abort actions will also be FSA compliant. Moreover, requestsReducer
will also correctly handle FSA actions.
For details, see redux-act example.
Usage with Fetch API ⬆️
All of the above examples show Axios usage, in order to use Fetch API, use below snippet:
import 'isomorphic-fetch'; // or a different fetch polyfill
import { createRequestInstance, watchRequests } from 'redux-saga-requests';
import fetchDriver from 'redux-saga-requests-fetch';
function* rootSaga() {
yield createRequestInstance(
window.fetch,
{
driver: fetchDriver,
baseURL: 'https://my-domain.com' // optional - it works like axios baseURL, prepending all relative urls
},
);
yield watchRequests();
}
And in order to create Fetch API requests, below:
fetch('/users', {
method: 'POST',
body: data,
});
should be translated to this:
const fetchUsers = () => ({
type: 'FETCH_USERS',
request: {
url: '/users/',
method: 'POST',
body: data,
}
});
The point is, you can use the same request config like you do with pure Fetch API, but you need to pass url
in the
config itself. Also, one additional parameter you could provide in the config is responseType
, which is set as json
as the default. Available response types are: arraybuffer
, blob
, formData
, json
, text
.
Examples ⬆️
I highly recommend to try examples how this package could be used in real applications. You could play with those demos and see what actions are being sent with redux-devtools.
There are following examples currently:
Credits ⬆️
This library was inspired by redux-axios-middleware (I highly recommend this library if someone doesn't use Redux-Saga!) and issue in Redux-Saga, when it was recommended not to combine another async middleware with sagas.
Licence ⬆️
MIT