You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/react/sidebar/SidebarItem/Menu.tsx

100 lines
2.2 KiB

import { useCurrentStateAndParams } from '@uirouter/react';
import {
Children,
PropsWithChildren,
ReactNode,
useMemo,
useReducer,
} from 'react';
import { ChevronDown, ChevronUp } from 'lucide-react';
import { useSidebarState } from '../useSidebarState';
import { getPaths } from './utils';
interface Props {
head: ReactNode;
openOnPaths?: string[];
}
export function Menu({
children,
head,
openOnPaths = [],
}: PropsWithChildren<Props>) {
const { isOpen: isSidebarOpen } = useSidebarState();
const paths = useMemo(
() => [...getPaths(head, []), ...openOnPaths],
[openOnPaths, head]
);
const { isOpen, toggleOpen } = useIsOpen(isSidebarOpen, paths);
const CollapseButtonIcon = isOpen ? ChevronUp : ChevronDown;
if (!isSidebarOpen) {
return head as JSX.Element;
}
return (
<div className="flex-1">
<div className="flex w-full justify-between items-center relative ">
{head}
{isSidebarOpen && Children.count(children) > 0 && (
<button
className="bg-transparent border-0 w-6 h-6 flex items-center justify-center absolute right-2 text-gray-5"
onClick={handleClickArrow}
type="button"
aria-label="Collapse button"
>
<CollapseButtonIcon className="w-4 h-4" />
</button>
)}
</div>
{isOpen && <ul className="!pl-8">{children}</ul>}
</div>
);
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;
}
}