Redux Awaiter is a Redux middleware for giving opportunities to await and receive actions in anywhere.
It's tiny (gzip < 1kB, no dependencies).
Redux Awaiter is designed to help us manage local state conveniently.
It's inspired by Redux Saga, but the problems they solve are totally different.
We can use Redux Awaiter and async/await
to pause execution until an expected action has been dispatched.
class UserListView extends React.PureComponent {
state = { loading: false };
async componentDidMount() {
const { actions: { fetchUserList } } = this.props;
fetchUserList();
this.setState(state => ({ ...state, loading: true }));
// start loading, until RECEIVE_USER_LIST has been dispatched
await take('RECEIVE_USER_LIST');
// reducers may update `users` in redux store, stop loading
this.setState(state => ({ ...state, loading: false }));
}
render() {
const { users } = this.props; // `users` is mapped from redux store
const { loading } = this.state;
return (
<Spin loading={loading}>
<ul>
{users.map(({ id, name }) => <li key={id}>{name}</li>)}
</ul>
</Spin>
);
}
}
npm i redux-awaiter
Redux Awaiter is written in TypeScript.
The internal type definition is based on flux standard action.
type ActionType = string;
interface BaseAction {
type: ActionType;
}
interface Action<P, M = {}> extends BaseAction {
payload: P;
meta?: M;
error?: true;
}
A pattern determines whether an action is matching.
type Pattern<P = {}, M = {}> = string | RegExp | ((action: Action<P, M>) => boolean);
object
pattern is not supported, use a function instead.
import { createStore, applyMiddleware } from 'redux';
import { createAwaiterMiddleware } from 'redux-awaiter';
const awaiterMiddleware = createAwaiterMiddleware();
const store = createStore(rootReducer, applyMiddleware(
// other middlewares (e.g. routerMiddleware)
awaiterMiddleware,
));
const take: <P = {}, M = {}>(pattern: Pattern<P, M>) => Promise<Action<P, M>>;
take
receives a pattern as its single argument, and returns a Promise which contains the first matching action.
const action = await take('RECEIVE_DATA'); // action.type should be RECEIVE_DATA
const takeAllOf: <P = {}, M = {}>(patterns: Pattern<P, M>[]) => Promise<Action<P, M>[]>;
takeAllOf
receives an array of patterns as its single argument, and returns a Promise which contains an array of actions corresponding to patterns.
Internally, takeAllOf(patterns)
is the same with Promise.all(patterns.map(take))
.
If you need to await and receive multiple actions in specific order, use multiple await take()
instead.
const [{ payload: articles }, { payload: users }] = await takeAllOf(['RECEIVE_ARTICLES', 'RECEIVE_USERS']);
const takeOneOf: <P = {}, M = {}>(patterns: Pattern<P, M>[]) => Promise<Action<P, M>>;
takeOneOf
receives an array of patterns as its single argument, and returns a Promise which contains the first action matching with one of patterns.
Internally, takeOneOf(patterns)
is the same with Promise.race(patterns.map(take))
.
const { type } = await takeOneOf(['FETCH_USER_SUCCESS', 'FETCH_USER_FAILURE']);
if (type === 'FETCH_USER_SUCCESS') {
// success
} else {
// failure
}
You might not need takeOneOf
.
const { type } = await take(/^FETCH_USER/);
Avoid relying on props MUTATION!
This may cause unexpected behaviors, or make your components difficult to maintain.
async componentDidMount() {
const { data } = this.props // this.props.data is mapped from redux store.
// dispatch an action and do some async call (e.g. xhr, fetch)
await take('RECEIVE_DATA'); // receive new data and update redux store by reducer
// DANGER: this.props.data is MUTATED!
console.assert(this.props.data === data); // Assertion failed!
}