summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/actions/filters.js
blob: 71582546aaab8f4d18ddd777211f33aa1f3d7b04 (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
/* 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 {
  TOGGLE_FILTER_TYPE,
  ENABLE_FILTER_TYPE_ONLY,
  SET_FILTER_TEXT,
} = require("../constants");

/**
 * 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 toggleFilterType(filter) {
  return {
    type: TOGGLE_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 enableFilterTypeOnly(filter) {
  return {
    type: ENABLE_FILTER_TYPE_ONLY,
    filter,
  };
}

/**
 * Set filter text.
 *
 * @param {string} url - A filter text is going to be set
 */
function setFilterText(url) {
  return {
    type: SET_FILTER_TEXT,
    url,
  };
}

module.exports = {
  toggleFilterType,
  enableFilterTypeOnly,
  setFilterText,
};