A React version of an MDC Menu.
npm install @material/react-menu
with Sass:
import '@material/react-list/index.scss';
import '@material/react-menu-surface/index.scss';
import '@material/react-menu/index.scss';
with CSS:
import '@material/react-list/dist/menu.css';
import '@material/react-menu-surface/dist/menu.css';
import '@material/react-menu/dist/menu.css';
import React from 'react';
import Menu, {MenuList, MenuListItem, MenuListItemText} from '@material/react-menu';
class MyApp extends React.Component {
state = {
open: true,
coordinates: undefined,
};
componentDidMount() {
window.addEventListener('contextmenu', this.rightClickCallback);
}
componentWillUnmount() {
window.removeEventListener('contextmenu', this.rightClickCallback);
}
rightClickCallback = (event) => {
this.setState({
open: !this.state.open,
coordinates: {x: event.clientX, y: event.clientY},
});
// Must preventDefault so the system context menu doesn't appear.
// This won't be needed in other cases besides right click.
event.preventDefault();
}
// Must set open to false to keep menu in the correct state.
// This does not follow the controlled component pattern
// (see https://reactjs.org/docs/forms.html#controlled-components).
// Follow https://github.com/material-components/material-components-web-react/issues/785
// to get any updates.
onClose = () => {
this.setState({open: false});
}
render() {
const menuOptions = [
'Save',
'Edit',
'Cut',
'Copy',
'Paste',
];
return (
<Menu
open={this.state.open}
onClose={this.onClose}
coordinates={this.state.coordinates}
onSelected={(index, item) => console.log(index, item)}
>
<MenuList>
{menuOptions.map((option, index) => (
<MenuListItem key={index}>
<MenuListItemText primaryText={option} />
{/* You can also use other components from list, which are documented below */}
</MenuListItem>
))}
</MenuList>
</Menu>
);
}
}
You may want to use Menu or other auxilary components with an HOC, such as styled-components. You can wrap Menu using the following:
import React from 'react';
import Menu, {MenuList, MenuListItem, MenuListItemText} from '@material/react-menu';
import styled from 'styled-components';
interface MenuState {
coordinates?: {x: number, y: number};
open: boolean;
};
const StyledMenuListItem = styled(MenuListItem)`
color: blue;
`;
class MenuScreenshotTest extends React.Component<{}, MenuState> {
state = {
open: true,
};
onClose = () => {
this.setState({open: false});
}
render() {
const menuOptions = [
'Save',
'Edit',
'Cut',
'Copy',
'Paste',
];
return (
<Menu
open={this.state.open}
onClose={this.onClose}
onSelected={() => console.log('select')}
>
<MenuList>
{menuOptions.map((option, index) => (
<StyledMenuListItem key={index}>
<MenuListItemText primaryText={option} />
</StyledMenuListItem>
))}
</MenuList>
</Menu>
);
}
}
Prop Name | Type | Description |
---|---|---|
onSelected | (index: number, item: Element) => void | Callback that is triggered when a menu list item is selected. |
onClose | () => void | Callback that is triggered when the menu closes. |
open | boolean | If true, will open the menu. If false, will hide menu. |
NOTE: onClose and open are a subset of props from Menu Surface. See Menu Surface Props for other props you can pass to Menu
Prop Name | Type | Description |
---|---|---|
innerRef | RefObject | Root Menu List element ref. |
handleSelect | (activatedItemIndex: Number, selected: Number | Array) => void |
NOTE: handleSelect is a subset of props from List. See List Props for other props you can pass to MenuList.
See List Props for other props you can pass to MenuListItem.
See List Item Text Props for other props you can pass to MenuListItemText.
See List Item Graphic Props for other props you can pass to MenuListItemGraphic.
See List Item Meta Props for other props you can pass to MenuListItemMeta.
See List Divider Props for other props you can pass to MenuListDivider.
See List Group Props for other props you can pass to MenuListGroup.
See List Group Subheader Props for other props you can pass to MenuListGroupSubheader.
Sass mixins may be available to customize various aspects of the components. Please refer to the MDC Web repository for more information on what mixins are available, and how to use them.
Please see our Best Practices doc when importing or using icon fonts.