Virtual DOM for effects and impurities. You write pure functions, redux-effects handles the rest.
npm install redux-effects
- Trivial isomorphism. If your effect middleware is isomorphic, your app is isomorphic.
- Powerful meta-programming facilities (e.g. request caching)
- More testable code
- Better insights into what is happening in your application (e.g. logging effects)
- Better ability to serialize state
This package gives you the ability to compose effectful actions together into promise-like chains, and as such, it must come before all other efffectful redux middlewares in your stack, like so:
import effects from 'redux-effects'
import fetch from 'redux-effects-fetch'
import cookie from 'redux-effects-cookie'
import location from 'redux-effects-location'
applyMiddleware(effects, fetch, cookie, location)
All effectful action creators should return a declarative object describing the effect to be done, even if their operation is normally synchronous*. In order to operate on the values returned by these actions, you need to specify your handlers in .meta.steps
in the action object. It is recommended that you use a composition library like bind-effect or declarative-promise to make that feel more natural and be less syntactically cumbersome.
*E.g. Math.random or accessing cookies. These values are also impure, even though they are synchronous, because they are non-deterministic with respect to your function's parameters.
import bind from 'bind-effect'
import cookie from 'declarative-cookie'
import {createAction} from 'redux-actions'
function checkAuth () {
return bind(cookie('authToken'), setAuthToken)
}
const setAuthToken = createAction('SET_AUTH_TOKEN')
The values returned by your actions will be passed to the handlers specified on your action object. Then, what your handlers return will be dispatched back into redux to either trigger other effects or be preserved in state. If your functions do not return a value, they do not do anything. Their only ability to effect the world is by ultimately dispatching actions that trigger state reducers, or by triggering effects that cause state to be preserved elsewhere (e.g. a POST request to an API server).
Effects compose by placing steps
in .meta.steps
on the action object. E.g.
{
type: 'FETCH',
payload: {url: '/some/thing', method: 'GET'},
meta: {
steps: [
[success, failure]
]
}
}
Since this is cumbersome to write out, there are libraries to help with it:
But it is important to understand that ultimately these libraries just produce plain JS objects, and you are totally free to create your own composition interfaces that behave exactly the way you want if you don't like these. There is nothing magical going on.
Effects middleware look essentially just like regular redux middleware, except that it MUST return a promise. If it does not return a promise, it won't compose with other effects, and so won't be very useful to anyone.
import cookie from 'component-cookie'
export default function ({dispatch, getState}) {
return next => action => {
if (action.type !== 'COOKIE') {
return next(action)
}
switch (action.verb) {
case 'set':
return cookie(action.name, action.value)
case 'get':
return cookie(action.name)
}
}
}
import _cookie from 'component-cookie'
export default function (cookieMap) {
return ({dispatch, getState}) => next => action => {
if (action.type !== 'COOKIE') {
return next(action)
}
switch (action.verb) {
case 'set':
return cookie(action.name, action.value)
case 'get':
return cookie(action.name)
}
}
function cookie (name, value) {
if (arguments.length === 2) {
if (cookieMap) cookieMap[name] = value
else _cookie(name, value)
}
return cookieMap ? cookieMap[name] : _cookie(name)
}
}
With this form, you can simply initialize your cookie middleware with a map of cookies. E.g.
function (req, res, next) {
req.store = applyMiddleware(effects(cookie(req.cookies)))(createStore)
}
Plugins that enable various effects:
- redux-effects-timeout - setTimeout/setInterval/requestAnimationFrame
- redux-effects-fetch - HTTP Requests
- redux-effects-cookie - Cookie get/set
- redux-effects-location - Location (window.location) binding and setting
- redux-effects-random - Generate random numbers
- redux-effects-events - Dispatch actions in response to
window/document
events (e.g.scroll/resize/popstate/etc
) - redux-effects-credentials - Automatically decorate your fetch requests with credentials stored in state if the url matches a certain pattern.
Interfaces for creating those effect actions:
- declarative-timeout
- declarative-fetch
- declarative-cookie
- declarative-location
- declarative-random
- declarative-events
- bind-effect -
bind(action, success, failure)
- declarative-promise - Wrap your actions in a promise-like interface