mirror of https://github.com/portainer/portainer
130 lines
2.7 KiB
TypeScript
130 lines
2.7 KiB
TypeScript
![]() |
import { useCurrentStateAndParams } from '@uirouter/react';
|
||
|
import clsx from 'clsx';
|
||
|
import {
|
||
|
Children,
|
||
|
PropsWithChildren,
|
||
|
ReactElement,
|
||
|
ReactNode,
|
||
|
useMemo,
|
||
|
useReducer,
|
||
|
} from 'react';
|
||
|
|
||
|
import { useSidebarState } from '../useSidebarState';
|
||
|
|
||
|
import styles from './Menu.module.css';
|
||
|
|
||
|
interface Props {
|
||
|
head: ReactNode;
|
||
|
openOnPaths?: string[];
|
||
|
}
|
||
|
|
||
|
export function Menu({
|
||
|
children,
|
||
|
head,
|
||
|
openOnPaths = [],
|
||
|
}: PropsWithChildren<Props>) {
|
||
|
const { isOpen: isSidebarOpen } = useSidebarState();
|
||
|
|
||
|
const paths = useMemo(
|
||
|
() => [
|
||
|
...getPaths(head, []),
|
||
|
...getPathsForChildren(children),
|
||
|
...openOnPaths,
|
||
|
],
|
||
|
[children, openOnPaths, head]
|
||
|
);
|
||
|
|
||
|
const { isOpen, toggleOpen } = useIsOpen(isSidebarOpen, paths);
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<div className={styles.sidebarMenuHead}>
|
||
|
{Children.count(children) > 0 && (
|
||
|
<button
|
||
|
className={clsx('small', styles.sidebarMenuIndicator)}
|
||
|
onClick={handleClickArrow}
|
||
|
type="button"
|
||
|
>
|
||
|
<i
|
||
|
className={clsx(
|
||
|
'fas',
|
||
|
isOpen ? 'fa-chevron-down' : 'fa-chevron-right'
|
||
|
)}
|
||
|
/>
|
||
|
</button>
|
||
|
)}
|
||
|
{head}
|
||
|
</div>
|
||
|
|
||
|
{isOpen && <ul className={styles.items}>{children}</ul>}
|
||
|
</>
|
||
|
);
|
||
|
|
||
|
function handleClickArrow(e: React.MouseEvent<HTMLButtonElement>) {
|
||
|
e.preventDefault();
|
||
|
e.stopPropagation();
|
||
|
toggleOpen();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function useIsOpen(
|
||
|
isSidebarOpen: boolean,
|
||
|
|
||
|
paths: string[] = []
|
||
|
) {
|
||
|
const { state } = useCurrentStateAndParams();
|
||
|
const currentStateName = state.name || '';
|
||
|
const isOpenByState = paths.some((path) => currentStateName.startsWith(path));
|
||
|
|
||
|
const [forceOpen, toggleForceOpen] = useReducer((state) => !state, false);
|
||
|
|
||
|
const isOpen = checkIfOpen();
|
||
|
|
||
|
return { isOpen, toggleOpen };
|
||
|
|
||
|
function toggleOpen() {
|
||
|
if (!isOpenByState) {
|
||
|
toggleForceOpen();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function checkIfOpen() {
|
||
|
if (!isSidebarOpen) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
if (forceOpen) {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
return isOpenByState;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function isReactElement(element: ReactNode): element is ReactElement {
|
||
|
return (
|
||
|
!!element &&
|
||
|
typeof element === 'object' &&
|
||
|
'type' in element &&
|
||
|
'props' in element
|
||
|
);
|
||
|
}
|
||
|
|
||
|
function getPathsForChildren(children: ReactNode): string[] {
|
||
|
return Children.map(children, (child) => getPaths(child, []))?.flat() || [];
|
||
|
}
|
||
|
|
||
|
function getPaths(element: ReactNode, paths: string[]): string[] {
|
||
|
if (!isReactElement(element)) {
|
||
|
return paths;
|
||
|
}
|
||
|
|
||
|
if (typeof element.props.to === 'undefined') {
|
||
|
return Children.map(element.props.children, (child) =>
|
||
|
getPaths(child, paths)
|
||
|
);
|
||
|
}
|
||
|
|
||
|
return [element.props.to, ...paths];
|
||
|
}
|