-
Notifications
You must be signed in to change notification settings - Fork 264
Expand file tree
/
Copy pathNestedMenu.js
More file actions
78 lines (70 loc) · 1.88 KB
/
NestedMenu.js
File metadata and controls
78 lines (70 loc) · 1.88 KB
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
import { Component } from 'react';
import PropTypes from 'prop-types';
import ListItemIcon from '@mui/material/ListItemIcon';
import ListItemText from '@mui/material/ListItemText';
import MenuItem from '@mui/material/MenuItem';
import ExpandLess from '@mui/icons-material/ExpandLessSharp';
import ExpandMore from '@mui/icons-material/ExpandMoreSharp';
/**
* NestedMenu ~ A presentation component to render a menu item and have
* it control the visibility of the MUI List passed in as the children
*/
export class NestedMenu extends Component {
/**
* constructor -
*/
constructor(props) {
super(props);
this.state = {
nestedMenuIsOpen: false,
};
this.handleMenuClick = this.handleMenuClick.bind(this);
}
/**
* handleMenuClick toggles the nestedMenuIsOpen state
*/
handleMenuClick() {
const { nestedMenuIsOpen } = this.state;
this.setState({
nestedMenuIsOpen: !nestedMenuIsOpen,
});
}
/**
* Returns the rendered component. Spreads unused props to MenuItem
*/
render() {
const { nestedMenuIsOpen } = this.state;
const {
children, icon, label, ...otherProps
} = this.props;
return (
<>
<MenuItem
aria-expanded={nestedMenuIsOpen}
onClick={this.handleMenuClick}
divider={nestedMenuIsOpen}
{...otherProps}
>
{icon && (<ListItemIcon>{icon}</ListItemIcon>)}
<ListItemText primaryTypographyProps={{ variant: 'body1' }}>
{label}
</ListItemText>
{
nestedMenuIsOpen
? <ExpandLess />
: <ExpandMore />
}
</MenuItem>
{nestedMenuIsOpen && children}
</>
);
}
}
NestedMenu.propTypes = {
children: PropTypes.element.isRequired,
icon: PropTypes.element,
label: PropTypes.string.isRequired,
};
NestedMenu.defaultProps = {
icon: null,
};