1 | // @mui
|
---|
2 | import { styled } from '@mui/material/styles';
|
---|
3 | import ListItemIcon from '@mui/material/ListItemIcon';
|
---|
4 | import ListItemButton from '@mui/material/ListItemButton';
|
---|
5 | //
|
---|
6 | import { NavItemProps, NavConfigProps } from '../types';
|
---|
7 |
|
---|
8 | // ----------------------------------------------------------------------
|
---|
9 |
|
---|
10 | type StyledItemProps = Omit<NavItemProps, 'item'> & {
|
---|
11 | config: NavConfigProps;
|
---|
12 | };
|
---|
13 |
|
---|
14 | export const StyledItem = styled(ListItemButton, {
|
---|
15 | shouldForwardProp: (prop) => prop !== 'active',
|
---|
16 | })<StyledItemProps>(({ active, open, depth, config, theme }) => {
|
---|
17 | const subItem = depth !== 1;
|
---|
18 |
|
---|
19 | const activeStyles = {
|
---|
20 | color: theme.palette.text.primary,
|
---|
21 | backgroundColor: theme.palette.action.selected,
|
---|
22 | };
|
---|
23 |
|
---|
24 | return {
|
---|
25 | // Root item
|
---|
26 | flexShrink: 0,
|
---|
27 | padding: config.itemPadding,
|
---|
28 | marginRight: config.itemGap,
|
---|
29 | borderRadius: config.itemRadius,
|
---|
30 | minHeight: config.itemRootHeight,
|
---|
31 | color: theme.palette.text.secondary,
|
---|
32 |
|
---|
33 | // Active item
|
---|
34 | ...(active && {
|
---|
35 | ...activeStyles,
|
---|
36 | }),
|
---|
37 |
|
---|
38 | // Sub item
|
---|
39 | ...(subItem && {
|
---|
40 | margin: 0,
|
---|
41 | padding: theme.spacing(0, 1),
|
---|
42 | minHeight: config.itemSubHeight,
|
---|
43 | }),
|
---|
44 |
|
---|
45 | // Open
|
---|
46 | ...(open &&
|
---|
47 | !active && {
|
---|
48 | color: theme.palette.text.primary,
|
---|
49 | backgroundColor: theme.palette.action.hover,
|
---|
50 | }),
|
---|
51 | };
|
---|
52 | });
|
---|
53 |
|
---|
54 | // ----------------------------------------------------------------------
|
---|
55 |
|
---|
56 | type StyledIconProps = {
|
---|
57 | size?: number;
|
---|
58 | };
|
---|
59 |
|
---|
60 | export const StyledIcon = styled(ListItemIcon)<StyledIconProps>(({ size }) => ({
|
---|
61 | width: size,
|
---|
62 | height: size,
|
---|
63 | flexShrink: 0,
|
---|
64 | marginRight: 0,
|
---|
65 | }));
|
---|