-
Notifications
You must be signed in to change notification settings - Fork 188
/
Copy pathindex.js
200 lines (172 loc) · 6.03 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
import isPromise from './isPromise.js';
// The default async action types
export const PENDING = 'PENDING';
export const FULFILLED = 'FULFILLED';
export const REJECTED = 'REJECTED';
const defaultTypes = [PENDING, FULFILLED, REJECTED];
/**
* Function: promiseMiddleware
* Description: The main promiseMiddleware accepts a configuration
* object and returns the middleware.
*/
export default function promiseMiddleware(config = {}) {
const PROMISE_TYPE_SUFFIXES = config.promiseTypeSuffixes || defaultTypes;
const PROMISE_TYPE_DELIMITER = config.promiseTypeDelimiter || '_';
return ref => {
const { dispatch } = ref;
return next => action => {
/**
* Instantiate variables to hold:
* (1) the promise
* (2) the data for optimistic updates
*/
let promise;
let data;
/**
* There are multiple ways to dispatch a promise. The first step is to
* determine if the promise is defined:
* (a) explicitly (action.payload.promise is the promise)
* (b) implicitly (action.payload is the promise)
* (c) as an async function (returns a promise when called)
*
* If the promise is not defined in one of these three ways, we don't do
* anything and move on to the next middleware in the middleware chain.
*/
// Step 1a: Is there a payload?
if (action.payload) {
const PAYLOAD = action.payload;
// Step 1.1: Is the promise implicitly defined?
if (isPromise(PAYLOAD)) {
promise = PAYLOAD;
}
// Step 1.2: Is the promise explicitly defined?
else if (isPromise(PAYLOAD.promise)) {
promise = PAYLOAD.promise;
data = PAYLOAD.data;
}
// Step 1.3: Is the promise returned by an async function?
else if (
typeof PAYLOAD === 'function' ||
typeof PAYLOAD.promise === 'function'
) {
promise = PAYLOAD.promise ? PAYLOAD.promise() : PAYLOAD();
data = PAYLOAD.promise ? PAYLOAD.data : undefined;
// Step 1.3.1: Is the return of action.payload a promise?
if (!isPromise(promise)) {
// If not, move on to the next middleware.
return next({
...action,
payload: promise
});
}
}
// Step 1.4: If there's no promise, move on to the next middleware.
else {
return next(action);
}
// Step 1b: If there's no payload, move on to the next middleware.
} else {
return next(action);
}
/**
* Instantiate and define constants for:
* (1) the action type
* (2) the action meta
*/
const TYPE = action.type;
const META = action.meta;
/**
* Instantiate and define constants for the action type suffixes.
* These are appended to the end of the action type.
*/
const [
_PENDING,
_FULFILLED,
_REJECTED
] = PROMISE_TYPE_SUFFIXES;
/**
* Function: getAction
* Description: This function constructs and returns a rejected
* or fulfilled action object. The action object is based off the Flux
* Standard Action (FSA).
*
* Given an original action with the type FOO:
*
* The rejected object model will be:
* {
* error: true,
* type: 'FOO_REJECTED',
* payload: ...,
* meta: ... (optional)
* }
*
* The fulfilled object model will be:
* {
* type: 'FOO_FULFILLED',
* payload: ...,
* meta: ... (optional)
* }
*/
const getAction = (newPayload, isRejected) => ({
// Concatentate the type string property.
type: [
TYPE,
isRejected ? _REJECTED : _FULFILLED
].join(PROMISE_TYPE_DELIMITER),
// Include the payload property.
...((newPayload === null || typeof newPayload === 'undefined') ? {} : {
payload: newPayload
}),
// If the original action includes a meta property, include it.
...(META !== undefined ? { meta: META } : {}),
// If the action is rejected, include an error property.
...(isRejected ? {
error: true
} : {})
});
/**
* Function: handleReject
* Calls: getAction to construct the rejected action
* Description: This function dispatches the rejected action and returns
* the original Error object. Please note the developer is responsible
* for constructing and throwing an Error object. The middleware does not
* construct any Errors.
*/
const handleReject = reason => {
const rejectedAction = getAction(reason, true);
dispatch(rejectedAction);
throw reason;
};
/**
* Function: handleFulfill
* Calls: getAction to construct the fullfilled action
* Description: This function dispatches the fulfilled action and
* returns the success object. The success object should
* contain the value and the dispatched action.
*/
const handleFulfill = (value = null) => {
const resolvedAction = getAction(value, false);
dispatch(resolvedAction);
return { value, action: resolvedAction };
};
/**
* First, dispatch the pending action:
* This object describes the pending state of a promise and will include
* any data (for optimistic updates) and/or meta from the original action.
*/
next({
// Concatentate the type string.
type: [TYPE, _PENDING].join(PROMISE_TYPE_DELIMITER),
// Include payload (for optimistic updates) if it is defined.
...(data !== undefined ? { payload: data } : {}),
// Include meta data if it is defined.
...(META !== undefined ? { meta: META } : {})
});
/**
* Second, dispatch a rejected or fulfilled action and move on to the
* next middleware.
*/
return promise.then(handleFulfill, handleReject);
};
};
}