I need to add a Context Menu to my TreeWiew
. I managed to do this with this mui.com's Menu
but I don’t know how to get the selected item in the tree where the user did the right click to open the context menu. For example, let’s say the user open the context menu and click on "Copy message" i’d like to know which node the user selected (Calendar, OSS, index.js etc) and do the proper action. I’ve tried looking in the TreeView’s thing like onNodeSelect
but it doesn’t fire when you open the context menu over the item.
Currently the code look like this:
export default function FileSystemNavigator() {
const [contextMenu, setContextMenu] = React.useState<{
mouseX: number;
mouseY: number;
} | null>(null);
const handleContextMenu = (event: React.MouseEvent) => {
event.preventDefault();
setContextMenu(
contextMenu === null
? {
mouseX: event.clientX + 2,
mouseY: event.clientY - 6
}
: // repeated contextmenu when it is already open closes it with Chrome 84 on Ubuntu
// Other native context menus might behave different.
// With this behavior we prevent contextmenu from the backdrop to re-locale existing context menus.
null
);
};
const handleClose = () => {
setContextMenu(null);
};
return (
<div onContextMenu={handleContextMenu} style={{ cursor: "context-menu" }}>
<TreeView
aria-label="file system navigator"
defaultCollapseIcon={<ExpandMoreIcon />}
defaultExpandIcon={<ChevronRightIcon />}
sx={{ height: 240, flexGrow: 1, maxWidth: 400, overflowY: "auto" }}
>
<TreeItem nodeId="1" label="Applications">
<TreeItem nodeId="2" label="Calendar" />
</TreeItem>
<TreeItem nodeId="5" label="Documents">
<TreeItem nodeId="10" label="OSS" />
<TreeItem nodeId="6" label="MUI">
<TreeItem nodeId="8" label="index.js" />
</TreeItem>
</TreeItem>
</TreeView>
<Menu
open={contextMenu !== null}
onClose={handleClose}
anchorReference="anchorPosition"
anchorPosition={
contextMenu !== null
? { top: contextMenu.mouseY, left: contextMenu.mouseX }
: undefined
}
>
<MenuItem onClick={handleClose}>Copy Ctrl+C</MenuItem>
<MenuItem onClick={handleClose}>Delete</MenuItem>
<MenuItem onClick={handleClose}>Move</MenuItem>
<MenuItem onClick={handleClose}>Email</MenuItem>
</Menu>
</div>
);
}
Here's
a live code example
2
Answers
Since you have only one context menu that have dynamically calculated position based on where right click happened, then you should use event from
onContextMenu
handler in order to find tree item that was right-clicked.For example, when you right click on ‘Application’ node, inside
event.target
of yourhandleContextMenu
you will find<div class="MuiTreeItem-label">Applications</div>
– and you just need to store this piece of information in inner state, and then reuse that same piece of state inside MenuItem click handlers. I assume you can attach some custom attributes, or maybe id to TreeItem, so you can additionally simplify resolver of clicked tree item(to avoid inspecting innerText of HTML div).You can achieve this by a small hack – trigger the
click event
on opening the context menu. That will fire anonNodeSelect
callback of theTreeView
component.It will produce the following outcome: