Source code
Revision control
Copy as Markdown
Other Tools
/* 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
"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;