From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- devtools/client/netmonitor/reducers/filters.js | 80 ++++++++++++++++++++++++++ devtools/client/netmonitor/reducers/index.js | 13 +++++ devtools/client/netmonitor/reducers/moz.build | 10 ++++ devtools/client/netmonitor/reducers/sidebar.js | 43 ++++++++++++++ 4 files changed, 146 insertions(+) create mode 100644 devtools/client/netmonitor/reducers/filters.js create mode 100644 devtools/client/netmonitor/reducers/index.js create mode 100644 devtools/client/netmonitor/reducers/moz.build create mode 100644 devtools/client/netmonitor/reducers/sidebar.js (limited to 'devtools/client/netmonitor/reducers') 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; -- cgit v1.2.3