summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/src/components/messages/MessageListHeaderContextMenu.js
blob: edf99bd5ac93c1520c09adb4421bb4e96cfb8186 (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
/* 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 {
  showMenu,
} = require("resource://devtools/client/shared/components/menu/utils.js");
const {
  MESSAGE_HEADERS,
} = require("resource://devtools/client/netmonitor/src/constants.js");
const {
  L10N,
} = require("resource://devtools/client/netmonitor/src/utils/l10n.js");

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

  /**
   * Handle the context menu opening.
   */
  open(event = {}, columns) {
    const visibleColumns = Object.values(columns).filter(state => state);
    const onlyOneColumn = visibleColumns.length === 1;

    const columnsToShow = Object.keys(columns);
    const menuItems = MESSAGE_HEADERS.filter(({ name }) =>
      columnsToShow.includes(name)
    ).map(({ name: column }) => {
      const shown = columns[column];
      const label = L10N.getStr(`netmonitor.ws.toolbar.${column}`);
      return {
        id: `message-list-header-${column}-toggle`,
        label,
        type: "checkbox",
        checked: shown,
        click: () => this.props.toggleColumn(column),
        // We don't want to allow hiding the last visible column
        disabled: onlyOneColumn && shown,
      };
    });
    menuItems.push(
      { type: "separator" },
      {
        id: "message-list-header-reset-columns",
        label: L10N.getStr("netmonitor.ws.toolbar.resetColumns"),
        click: () => this.props.resetColumns(),
      }
    );

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

module.exports = MessageListHeaderContextMenu;