summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/src/actions/filters.js
blob: 5aa5a99c10b112a3860bab1fed0e3b9866bb1a70 (plain)
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
/* 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 {
  ENABLE_REQUEST_FILTER_TYPE_ONLY,
  TOGGLE_REQUEST_FILTER_TYPE,
  SET_REQUEST_FILTER_TEXT,
} = require("resource://devtools/client/netmonitor/src/constants.js");

/**
 * Toggle an existing filter type state.
 * If type 'all' is specified, all the other filter types are set to false.
 * Available filter types are defined in filters reducer.
 *
 * @param {string} filter - A filter type is going to be updated
 */
function toggleRequestFilterType(filter) {
  return {
    type: TOGGLE_REQUEST_FILTER_TYPE,
    filter,
  };
}

/**
 * Enable filter type exclusively.
 * Except filter type is set to true, all the other filter types are set
 * to false.
 * Available filter types are defined in filters reducer.
 *
 * @param {string} filter - A filter type is going to be updated
 */
function enableRequestFilterTypeOnly(filter) {
  return {
    type: ENABLE_REQUEST_FILTER_TYPE_ONLY,
    filter,
  };
}

/**
 * Set filter text in toolbar.
 *
 * @param {string} text - A filter text is going to be set
 */
function setRequestFilterText(text) {
  return {
    type: SET_REQUEST_FILTER_TEXT,
    text,
  };
}

module.exports = {
  enableRequestFilterTypeOnly,
  toggleRequestFilterType,
  setRequestFilterText,
};