summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/src/reducers/async-requests.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/debugger/src/reducers/async-requests.js')
-rw-r--r--devtools/client/debugger/src/reducers/async-requests.js31
1 files changed, 31 insertions, 0 deletions
diff --git a/devtools/client/debugger/src/reducers/async-requests.js b/devtools/client/debugger/src/reducers/async-requests.js
new file mode 100644
index 0000000000..b83fe90b2b
--- /dev/null
+++ b/devtools/client/debugger/src/reducers/async-requests.js
@@ -0,0 +1,31 @@
+/* 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/>. */
+
+/**
+ * Async request reducer
+ * @module reducers/async-request
+ */
+
+const initialAsyncRequestState = [];
+
+function update(state = initialAsyncRequestState, action) {
+ const { seqId } = action;
+
+ if (action.type === "NAVIGATE") {
+ return initialAsyncRequestState;
+ } else if (seqId) {
+ let newState;
+ if (action.status === "start") {
+ newState = [...state, seqId];
+ } else if (action.status === "error" || action.status === "done") {
+ newState = state.filter(id => id !== seqId);
+ }
+
+ return newState;
+ }
+
+ return state;
+}
+
+export default update;