summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/reducers
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /devtools/client/netmonitor/reducers
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'devtools/client/netmonitor/reducers')
-rw-r--r--devtools/client/netmonitor/reducers/filters.js80
-rw-r--r--devtools/client/netmonitor/reducers/index.js13
-rw-r--r--devtools/client/netmonitor/reducers/moz.build10
-rw-r--r--devtools/client/netmonitor/reducers/sidebar.js43
4 files changed, 146 insertions, 0 deletions
diff --git a/devtools/client/netmonitor/reducers/filters.js b/devtools/client/netmonitor/reducers/filters.js
new file mode 100644
index 000000000..cc81370d8
--- /dev/null
+++ b/devtools/client/netmonitor/reducers/filters.js
@@ -0,0 +1,80 @@
+/* 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/. */
+"use strict";
+
+const I = require("devtools/client/shared/vendor/immutable");
+const {
+ TOGGLE_FILTER_TYPE,
+ ENABLE_FILTER_TYPE_ONLY,
+ SET_FILTER_TEXT,
+} = require("../constants");
+
+const FilterTypes = I.Record({
+ all: false,
+ html: false,
+ css: false,
+ js: false,
+ xhr: false,
+ fonts: false,
+ images: false,
+ media: false,
+ flash: false,
+ ws: false,
+ other: false,
+});
+
+const Filters = I.Record({
+ types: new FilterTypes({ all: true }),
+ url: "",
+});
+
+function toggleFilterType(state, action) {
+ let { filter } = action;
+ let newState;
+
+ // Ignore unknown filter type
+ if (!state.has(filter)) {
+ return state;
+ }
+ if (filter === "all") {
+ return new FilterTypes({ all: true });
+ }
+
+ newState = state.withMutations(types => {
+ types.set("all", false);
+ types.set(filter, !state.get(filter));
+ });
+
+ if (!newState.includes(true)) {
+ newState = new FilterTypes({ all: true });
+ }
+
+ return newState;
+}
+
+function enableFilterTypeOnly(state, action) {
+ let { filter } = action;
+
+ // Ignore unknown filter type
+ if (!state.has(filter)) {
+ return state;
+ }
+
+ return new FilterTypes({ [filter]: true });
+}
+
+function filters(state = new Filters(), action) {
+ switch (action.type) {
+ case TOGGLE_FILTER_TYPE:
+ return state.set("types", toggleFilterType(state.types, action));
+ case ENABLE_FILTER_TYPE_ONLY:
+ return state.set("types", enableFilterTypeOnly(state.types, action));
+ case SET_FILTER_TEXT:
+ return state.set("url", action.url);
+ default:
+ return state;
+ }
+}
+
+module.exports = filters;
diff --git a/devtools/client/netmonitor/reducers/index.js b/devtools/client/netmonitor/reducers/index.js
new file mode 100644
index 000000000..58638a030
--- /dev/null
+++ b/devtools/client/netmonitor/reducers/index.js
@@ -0,0 +1,13 @@
+/* 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/. */
+"use strict";
+
+const { combineReducers } = require("devtools/client/shared/vendor/redux");
+const filters = require("./filters");
+const sidebar = require("./sidebar");
+
+module.exports = combineReducers({
+ filters,
+ sidebar,
+});
diff --git a/devtools/client/netmonitor/reducers/moz.build b/devtools/client/netmonitor/reducers/moz.build
new file mode 100644
index 000000000..477cafb41
--- /dev/null
+++ b/devtools/client/netmonitor/reducers/moz.build
@@ -0,0 +1,10 @@
+# vim: set filetype=python:
+# 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/.
+
+DevToolsModules(
+ 'filters.js',
+ 'index.js',
+ 'sidebar.js',
+)
diff --git a/devtools/client/netmonitor/reducers/sidebar.js b/devtools/client/netmonitor/reducers/sidebar.js
new file mode 100644
index 000000000..eaa8b63df
--- /dev/null
+++ b/devtools/client/netmonitor/reducers/sidebar.js
@@ -0,0 +1,43 @@
+/* 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/. */
+"use strict";
+
+const I = require("devtools/client/shared/vendor/immutable");
+const {
+ DISABLE_TOGGLE_BUTTON,
+ SHOW_SIDEBAR,
+ TOGGLE_SIDEBAR,
+} = require("../constants");
+
+const SidebarState = I.Record({
+ toggleButtonDisabled: true,
+ visible: false,
+});
+
+function disableToggleButton(state, action) {
+ return state.set("toggleButtonDisabled", action.disabled);
+}
+
+function showSidebar(state, action) {
+ return state.set("visible", action.visible);
+}
+
+function toggleSidebar(state, action) {
+ return state.set("visible", !state.visible);
+}
+
+function sidebar(state = new SidebarState(), action) {
+ switch (action.type) {
+ case DISABLE_TOGGLE_BUTTON:
+ return disableToggleButton(state, action);
+ case SHOW_SIDEBAR:
+ return showSidebar(state, action);
+ case TOGGLE_SIDEBAR:
+ return toggleSidebar(state, action);
+ default:
+ return state;
+ }
+}
+
+module.exports = sidebar;