blob: fba17d516c93cd6948a2d480c2ccee7930be8961 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
/**
* A middleware that allows thunks (functions) to be dispatched. If
* it's a thunk, it is called with an argument that contains
* `dispatch`, `getState`, and any additional args passed in via the
* middleware constructure. This allows the action to create multiple
* actions (most likely asynchronously).
*/
export function thunk(makeArgs) {
return ({ dispatch, getState }) => {
const args = { dispatch, getState };
return next => action => {
return typeof action === "function"
? action(makeArgs ? makeArgs(args, getState()) : args)
: next(action);
};
};
}
|