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/SidebarSection.tsx

53 lines
1.0 KiB

import { PropsWithChildren, ReactNode } from 'react';
import { useSidebarState } from './useSidebarState';
interface Props {
title: ReactNode;
showTitleWhenOpen?: boolean;
'aria-label'?: string;
}
export function SidebarSection({
title,
children,
showTitleWhenOpen,
'aria-label': ariaLabel,
}: PropsWithChildren<Props>) {
return (
<div>
<SidebarSectionTitle showWhenOpen={showTitleWhenOpen}>
{title}
</SidebarSectionTitle>
<nav
aria-label={typeof title === 'string' ? title : ariaLabel}
className="mt-4"
>
<ul>{children}</ul>
</nav>
</div>
);
}
interface TitleProps {
showWhenOpen?: boolean;
}
export function SidebarSectionTitle({
showWhenOpen,
children,
}: PropsWithChildren<TitleProps>) {
const { isOpen } = useSidebarState();
if (!isOpen && !showWhenOpen) {
return null;
}
return (
<li className="ml-3 text-sm text-gray-3 transition-all duration-500 ease-in-out be:text-gray-6">
{children}
</li>
);
}