summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/src/widgets/RequestBlockingContextMenu.js
blob: f6a10b0ca319c38944e988f7ee08bd91628647f3 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/* 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 {
  L10N,
} = require("resource://devtools/client/netmonitor/src/utils/l10n.js");

loader.lazyRequireGetter(
  this,
  "showMenu",
  "resource://devtools/client/shared/components/menu/utils.js",
  true
);

class RequestBlockingContextMenu {
  constructor(props) {
    this.props = props;
  }

  createMenu(contextMenuOptions) {
    const {
      removeAllBlockedUrls,
      disableAllBlockedUrls,
      enableAllBlockedUrls,
    } = this.props;

    const { disableDisableAllBlockedUrls, disableEnableAllBlockedUrls } =
      contextMenuOptions;

    const menu = [
      {
        id: "request-blocking-enable-all",
        label: L10N.getStr(
          "netmonitor.requestBlockingMenu.enableAllBlockedUrls"
        ),
        accesskey: "",
        disabled: disableEnableAllBlockedUrls,
        visible: true,
        click: () => enableAllBlockedUrls(),
      },
      {
        id: "request-blocking-disable-all",
        label: L10N.getStr(
          "netmonitor.requestBlockingMenu.disableAllBlockedUrls"
        ),
        accesskey: "",
        disabled: disableDisableAllBlockedUrls,
        visible: true,
        click: () => disableAllBlockedUrls(),
      },
      {
        id: "request-blocking-remove-all",
        label: L10N.getStr(
          "netmonitor.requestBlockingMenu.removeAllBlockedUrls"
        ),
        accesskey: "",
        visible: true,
        click: () => removeAllBlockedUrls(),
      },
    ];

    return menu;
  }

  open(event, contextMenuOptions) {
    const menu = this.createMenu(contextMenuOptions);

    showMenu(menu, {
      screenX: event.screenX,
      screenY: event.screenY,
    });
  }
}

module.exports = RequestBlockingContextMenu;