Separate Client Portal & Dashboard
This commit is contained in:
@@ -0,0 +1,125 @@
|
||||
import { ReactElement, forwardRef } from 'react';
|
||||
import { NavLink as RouterLink } from 'react-router-dom';
|
||||
// @mui
|
||||
import { Box, Link } from '@mui/material';
|
||||
// config
|
||||
import { ICON } from '../../../config';
|
||||
// type
|
||||
import { NavItemProps } from '../type';
|
||||
//
|
||||
import Iconify from '../../Iconify';
|
||||
import { ListItemStyle } from './style';
|
||||
import { isExternalLink } from '..';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
export const NavItemRoot = forwardRef<HTMLButtonElement & HTMLAnchorElement, NavItemProps>(
|
||||
({ item, active, open, onMouseEnter, onMouseLeave }, ref) => {
|
||||
const { title, path, icon, children } = item;
|
||||
|
||||
if (children) {
|
||||
return (
|
||||
<ListItemStyle
|
||||
ref={ref}
|
||||
open={open}
|
||||
activeRoot={active}
|
||||
onMouseEnter={onMouseEnter}
|
||||
onMouseLeave={onMouseLeave}
|
||||
>
|
||||
<NavItemContent icon={icon} title={title} children={children} />
|
||||
</ListItemStyle>
|
||||
);
|
||||
}
|
||||
|
||||
return isExternalLink(path) ? (
|
||||
<ListItemStyle component={Link} href={path} target="_blank" rel="noopener">
|
||||
<NavItemContent icon={icon} title={title} children={children} />
|
||||
</ListItemStyle>
|
||||
) : (
|
||||
<ListItemStyle component={RouterLink} to={path} activeRoot={active}>
|
||||
<NavItemContent icon={icon} title={title} children={children} />
|
||||
</ListItemStyle>
|
||||
);
|
||||
}
|
||||
);
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
export const NavItemSub = forwardRef<HTMLButtonElement & HTMLAnchorElement, NavItemProps>(
|
||||
({ item, active, open, onMouseEnter, onMouseLeave }, ref) => {
|
||||
const { title, path, icon, children } = item;
|
||||
|
||||
if (children) {
|
||||
return (
|
||||
<ListItemStyle
|
||||
ref={ref}
|
||||
subItem
|
||||
disableRipple
|
||||
open={open}
|
||||
activeSub={active}
|
||||
onMouseEnter={onMouseEnter}
|
||||
onMouseLeave={onMouseLeave}
|
||||
>
|
||||
<NavItemContent icon={icon} title={title} children={children} subItem />
|
||||
</ListItemStyle>
|
||||
);
|
||||
}
|
||||
|
||||
return isExternalLink(path) ? (
|
||||
<ListItemStyle
|
||||
subItem
|
||||
href={path}
|
||||
disableRipple
|
||||
rel="noopener"
|
||||
target="_blank"
|
||||
component={Link}
|
||||
>
|
||||
<NavItemContent icon={icon} title={title} children={children} subItem />
|
||||
</ListItemStyle>
|
||||
) : (
|
||||
<ListItemStyle disableRipple component={RouterLink} to={path} activeSub={active} subItem>
|
||||
<NavItemContent icon={icon} title={title} children={children} subItem />
|
||||
</ListItemStyle>
|
||||
);
|
||||
}
|
||||
);
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
type NavItemContentProps = {
|
||||
title: string;
|
||||
icon?: ReactElement;
|
||||
children?: { title: string; path: string }[];
|
||||
subItem?: boolean;
|
||||
};
|
||||
|
||||
function NavItemContent({ icon, title, children, subItem }: NavItemContentProps) {
|
||||
return (
|
||||
<>
|
||||
{icon && (
|
||||
<Box
|
||||
component="span"
|
||||
sx={{
|
||||
mr: 1,
|
||||
width: ICON.NAVBAR_ITEM_HORIZONTAL,
|
||||
height: ICON.NAVBAR_ITEM_HORIZONTAL,
|
||||
'& svg': { width: '100%', height: '100%' },
|
||||
}}
|
||||
>
|
||||
{icon}
|
||||
</Box>
|
||||
)}
|
||||
{title}
|
||||
{children && (
|
||||
<Iconify
|
||||
icon={subItem ? 'eva:chevron-right-fill' : 'eva:chevron-down-fill'}
|
||||
sx={{
|
||||
ml: 0.5,
|
||||
width: ICON.NAVBAR_ITEM_HORIZONTAL,
|
||||
height: ICON.NAVBAR_ITEM_HORIZONTAL,
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,131 @@
|
||||
import { useState, useEffect, useRef } from 'react';
|
||||
import { useLocation } from 'react-router-dom';
|
||||
// type
|
||||
import { NavListProps } from '../type';
|
||||
//
|
||||
import { NavItemRoot, NavItemSub } from './NavItem';
|
||||
import { PaperStyle } from './style';
|
||||
import { getActive } from '..';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
type NavListRootProps = {
|
||||
list: NavListProps;
|
||||
};
|
||||
|
||||
export function NavListRoot({ list }: NavListRootProps) {
|
||||
const menuRef = useRef(null);
|
||||
|
||||
const { pathname } = useLocation();
|
||||
|
||||
const active = getActive(list.path, pathname);
|
||||
|
||||
const [open, setOpen] = useState(false);
|
||||
|
||||
const hasChildren = list.children;
|
||||
|
||||
useEffect(() => {
|
||||
if (open) {
|
||||
handleClose();
|
||||
}
|
||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||
}, [pathname]);
|
||||
|
||||
const handleOpen = () => {
|
||||
setOpen(true);
|
||||
};
|
||||
|
||||
const handleClose = () => {
|
||||
setOpen(false);
|
||||
};
|
||||
|
||||
if (hasChildren) {
|
||||
return (
|
||||
<>
|
||||
<NavItemRoot
|
||||
open={open}
|
||||
item={list}
|
||||
active={active}
|
||||
ref={menuRef}
|
||||
onMouseEnter={handleOpen}
|
||||
onMouseLeave={handleClose}
|
||||
/>
|
||||
|
||||
<PaperStyle
|
||||
open={open}
|
||||
anchorEl={menuRef.current}
|
||||
anchorOrigin={{ vertical: 'bottom', horizontal: 'left' }}
|
||||
transformOrigin={{ vertical: 'top', horizontal: 'left' }}
|
||||
PaperProps={{
|
||||
onMouseEnter: handleOpen,
|
||||
onMouseLeave: handleClose,
|
||||
}}
|
||||
>
|
||||
{(list.children || []).map((item) => (
|
||||
<NavListSub key={item.title} list={item} />
|
||||
))}
|
||||
</PaperStyle>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
return <NavItemRoot item={list} active={active} />;
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
type NavListSubProps = {
|
||||
list: NavListProps;
|
||||
};
|
||||
|
||||
function NavListSub({ list }: NavListSubProps) {
|
||||
const menuRef = useRef(null);
|
||||
|
||||
const { pathname } = useLocation();
|
||||
|
||||
const active = getActive(list.path, pathname);
|
||||
|
||||
const [open, setOpen] = useState(false);
|
||||
|
||||
const handleOpen = () => {
|
||||
setOpen(true);
|
||||
};
|
||||
|
||||
const handleClose = () => {
|
||||
setOpen(false);
|
||||
};
|
||||
|
||||
const hasChildren = list.children;
|
||||
|
||||
if (hasChildren) {
|
||||
return (
|
||||
<>
|
||||
<NavItemSub
|
||||
ref={menuRef}
|
||||
open={open}
|
||||
item={list}
|
||||
active={active}
|
||||
onMouseEnter={handleOpen}
|
||||
onMouseLeave={handleClose}
|
||||
/>
|
||||
|
||||
<PaperStyle
|
||||
open={open}
|
||||
anchorEl={menuRef.current}
|
||||
anchorOrigin={{ vertical: 'top', horizontal: 'right' }}
|
||||
transformOrigin={{ vertical: 'top', horizontal: 'left' }}
|
||||
PaperProps={{
|
||||
onMouseEnter: handleOpen,
|
||||
onMouseLeave: handleClose,
|
||||
}}
|
||||
>
|
||||
{(list.children || []).map((item) => (
|
||||
<NavListSub key={item.title} list={item} />
|
||||
))}
|
||||
</PaperStyle>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
return <NavItemSub item={list} active={active} />;
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
import { memo } from 'react';
|
||||
// @mui
|
||||
import { Stack } from '@mui/material';
|
||||
// type
|
||||
import { NavSectionProps } from '../type';
|
||||
//
|
||||
import { NavListRoot } from './NavList';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
const hideScrollbar = {
|
||||
msOverflowStyle: 'none',
|
||||
scrollbarWidth: 'none',
|
||||
overflowY: 'scroll',
|
||||
'&::-webkit-scrollbar': {
|
||||
display: 'none',
|
||||
},
|
||||
} as const;
|
||||
|
||||
function NavSectionHorizontal({ navConfig }: NavSectionProps) {
|
||||
return (
|
||||
<Stack
|
||||
direction="row"
|
||||
justifyContent="center"
|
||||
sx={{ bgcolor: 'background.neutral', borderRadius: 1, px: 0.5 }}
|
||||
>
|
||||
<Stack direction="row" sx={{ ...hideScrollbar, py: 1 }}>
|
||||
{navConfig.map((group) => (
|
||||
<Stack key={group.subheader} direction="row" flexShrink={0}>
|
||||
{group.items.map((list) => (
|
||||
<NavListRoot key={list.title} list={list} />
|
||||
))}
|
||||
</Stack>
|
||||
))}
|
||||
</Stack>
|
||||
</Stack>
|
||||
);
|
||||
}
|
||||
|
||||
export default memo(NavSectionHorizontal);
|
||||
@@ -0,0 +1,85 @@
|
||||
import { ReactNode } from 'react';
|
||||
// @mui
|
||||
import { alpha, styled } from '@mui/material/styles';
|
||||
import { Button, Popover, ButtonProps, LinkProps } from '@mui/material';
|
||||
// config
|
||||
import { NAVBAR } from '../../../config';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
type IProps = LinkProps & ButtonProps;
|
||||
|
||||
interface ListItemStyleProps extends IProps {
|
||||
component?: ReactNode;
|
||||
to?: string;
|
||||
activeRoot?: boolean;
|
||||
activeSub?: boolean;
|
||||
subItem?: boolean;
|
||||
open?: boolean;
|
||||
}
|
||||
|
||||
export const ListItemStyle = styled(Button, {
|
||||
shouldForwardProp: (prop) =>
|
||||
prop !== 'activeRoot' && prop !== 'activeSub' && prop !== 'subItem' && prop !== 'open',
|
||||
})<ListItemStyleProps>(({ activeRoot, activeSub, subItem, open, theme }) => {
|
||||
const isLight = theme.palette.mode === 'light';
|
||||
|
||||
const activeRootStyle = {
|
||||
color: theme.palette.grey[800],
|
||||
backgroundColor: theme.palette.common.white,
|
||||
boxShadow: `-2px 4px 6px 0 ${alpha(
|
||||
isLight ? theme.palette.grey[500] : theme.palette.common.black,
|
||||
0.16
|
||||
)}`,
|
||||
};
|
||||
|
||||
return {
|
||||
...theme.typography.body2,
|
||||
margin: theme.spacing(0, 0.5),
|
||||
padding: theme.spacing(0, 1),
|
||||
color: theme.palette.text.secondary,
|
||||
height: NAVBAR.DASHBOARD_ITEM_HORIZONTAL_HEIGHT,
|
||||
'&:hover': {
|
||||
color: theme.palette.text.primary,
|
||||
backgroundColor: theme.palette.background.paper,
|
||||
},
|
||||
// activeRoot
|
||||
...(activeRoot && {
|
||||
...theme.typography.subtitle2,
|
||||
...activeRootStyle,
|
||||
'&:hover': { ...activeRootStyle },
|
||||
}),
|
||||
// activeSub
|
||||
...(activeSub && {
|
||||
...theme.typography.subtitle2,
|
||||
color: theme.palette.text.primary,
|
||||
}),
|
||||
// subItem
|
||||
...(subItem && {
|
||||
width: '100%',
|
||||
margin: 0,
|
||||
paddingRight: 0,
|
||||
paddingLeft: theme.spacing(1),
|
||||
justifyContent: 'space-between',
|
||||
}),
|
||||
// open
|
||||
...(open &&
|
||||
!activeRoot && {
|
||||
color: theme.palette.text.primary,
|
||||
backgroundColor: theme.palette.action.hover,
|
||||
}),
|
||||
};
|
||||
});
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
export const PaperStyle = styled(Popover)(({ theme }) => ({
|
||||
pointerEvents: 'none',
|
||||
'& .MuiPopover-paper': {
|
||||
width: 160,
|
||||
pointerEvents: 'auto',
|
||||
padding: theme.spacing(1),
|
||||
borderRadius: Number(theme.shape.borderRadius) * 1.5,
|
||||
boxShadow: theme.customShadows.dropdown,
|
||||
},
|
||||
}));
|
||||
Reference in New Issue
Block a user