redux-saga-promise with redux-act support
Simple clean utility to define actions that return promises, for use with redux-saga
Overview
The library provides:
-
An action creator,
createPromiseAction()
that you can use to define actions which return promises. We call an action that returns a promise a promise action. -
Saga helpers
implementPromiseAction()
,resolvePromiseAction()
, andrejectPromiseAction()
that you use to resolve or reject a promise action's promise. -
Lifecyle actions
promise.trigger
,promise.resolved
, andpromise.rejected
that you can use in reducers (or wherever) -
Middleware that makes it work.
-
For convenience, an optional saga "effect creator"
dispatch()
to simplify dispatching promise actions and ordinary actions from within sagas.
These are described in detail below.
Installation
As usual, install via:
npm install @adobe/redux-saga-promise
Usage
Including the middleware:
You must include include promiseMiddleware
in the middleware chain, and it must come before sagaMiddleware
:
// ...assuming rootReducer and rootSaga are definedconst sagaMiddleware = const store = sagaMiddleware
Creating a promise action:
Create a promise action using createPromiseAction
, analogous to createAction
of redux-actions:
const myAction = // or createPromiseAction('MY_ACTION', payloadCreator) // or createPromiseAction('MY_ACTION', payloadCreator, metaCreator)
Behind the scenes, createPromiseAction
uses createAction
to define
FSA-compliant actions, with the same optional payloadCreator
and metaCreator
arguments.
(And, like createAction
, technically
createPromiseAction
returns an action creator rather than an action.)
Dispatching a promise action:
Dispatch a promise action normally, and dispatch()
will return a promise:
// In an ordinary function... { ... ...} // In an async function.... { try const value = await ... catch error ... }
Resolving/rejecting the action in a saga:
It is up to you as the implementer to resolve or reject the promise's action in a saga. There are three helpers you can use as needed:
implementPromiseAction(action, saga)
The most convenient way! You give this helper a saga function which it will execute. If the saga function succesfully returns a value, the promise will resolve with that value. If the saga function throws an error, the promise will be rejected with that error. For example:
//// Asynchronously read a file, resolving the promise with the file's// contents, or rejecting the promise if the file can't be read.// { } { })
If you call implementPromiseAction()
with a first argument that is not a
promise action, it will throw an error (see Argument Validation below).
resolvePromiseAction(action, value)
Sometimes you may want finer control, or want to be more explicit when you know an operation won't fail. This helper causes the promise to resolve with the passed value. For example:
//// Delay a given number of seconds then resolve with the given value.// { const seconds value = actionpayload } { })
If you call resolvePromiseAction()
with a first argument that is not a
promise action, it will throw an error (see Argument Validation below).
rejectPromiseAction(action, value)
Sometimes you may want finer control, or want to explicitly fail without needing to throw
. This helper causes the promise to reject with the
passed value, which typically should be an Error
. For example:
//// TODO: Implement this! Failing for now// {
If you call rejectPromiseAction()
with a first argument that is not a
promise action, it will throw an error (see Argument Validation below).
Action lifecycle -- reducing the promise action:
Commonly you want the redux store to reflect the status of a promise action: whether it's pending, what the resolved value is, or what the rejected error is.
Behind the scenes, myAction = createPromiseAction('MY_ACTION')
actually
creates a suite of three actions:
-
myAction.trigger
: An alias formyAction
, which is what you dispatch that then creates the promise. -
myAction.resolved
: Dispatched automatically bypromiseMiddleware
when the promise is resolved; its payload is the resolved value of the promise -
myAction.rejected
: Dispatched automatically bypromiseMiddleware
when the promise is rejected; its payload is the rejection error of the promise
You can easily use them in handleActions
of redux-actions:
//// For the readFile wrapper described above, we can keep track of the file in the store//const reducer =
Dispatching a promise action in a saga
In the sagas that perform your business logic, you may at times want to dispatch a promise action and wait for it to resolve. You can do that using redux-saga's putResolve
Effect:
const result = yield putResolve(myPromiseAction)
This dispatches the action and waits for the promise to resolve, returning the resolved value. Or if the promise rejects it will bubble up an error.
Caution! If you use put()
instead of putResolve()
, the saga will continue execution immediately without waiting for the promise to resolve.
Helper for dispatching actions in sagas
TL;dr: The dispatch()
helper is entirely optional. You can ignore this section. But for sagas that dispatch promise actions,
you can use it if you think it will make your code cleaner or more robust.
In sagas that perform your business logic if you dispatch a mix of ordinary actions and promise actions, you must remember use put()
vs putResolve()
appropriately. E.g., you might have:
{ // Wait for promise to resolve // Don't wait // Waits for promise to resolve // Doesn't wait}
Unfortunately it's easy to accidentally use put()
instead of putResolve()
which means the saga will immediately continue without waiting for your promise to resolve -- in many
cases causing subtle errors. (Voice of experience here!)
To avoid that error, and for consistency, redux-saga-promise
provides an "effect creator" named dispatch
. Use it via:
yield dispatch(action)
, passing an actionyield dispatch(actionCreator, ...args)
, passing an actionCreator and optional args, whichdispatch()
will invoke to produce the action.
The behavior mimics that of call()
--
if the action is a promise action, yield dispatch()
will dispatch it and block until the
promise resolves then return the resolved value (or will bubble up an error if
the promise rejects). For any other action, yield dispatch()
will simply
dispatch it normally and return whatever store.dispatch
returns.
This lets you use yield dispatch(action, ...args)
everywhere to dispatch
actions, like you can use yield call(function, ...args)
to call functions. You then doesn't need to worry about which actions are promise actions and which aren't. I.e. the above saga then becomes:
{ // Waits for promise to resolve // Doesn't wait // Waits for promise to resolve // Doesn't wait}
Behind the scenes, dispatch()
simply returns put(action)
or
putResolve(action)
based on whether the action was created by
createPromiseAction
.
If you call dispatch()
with a first argument that is null
, or the first argument is not a function but you provide extra ...args
anyway, it will throw
an error (see Argument Validation below)
Argument Validation
To avoid accidental confusion, all the helper functions validate their
arguments and will throw a custom Error
subclass ArgumentError
in case
of error. This error will be bubbled up by redux-saga as usual, and as usual you can catch it in a saga otherwise it will will bubble up to the onError
hook. If you want to, you can test the error type, e.g.:
// ...assuming rootReducer and rootSaga are definedconst sagaMiddleware =
Additionally, all the helper functions will throw a custom Error
subclass ConfigurationError
if promiseMiddleware
was not properly included in the store.
Building & Testing
package.json
defines the usual scripts:
npm build
: transpiles the source, placing the result indist/index.js
npm test
: builds, and then runs the test suite.
The tests are written using the AVA test runner.
Licensing
This project is licensed under the Apache V2 License. See LICENSE for more information.