mirror of https://github.com/portainer/portainer
101 lines
2.3 KiB
TypeScript
101 lines
2.3 KiB
TypeScript
import {
|
|
TransitionOptions,
|
|
useCurrentStateAndParams,
|
|
useSrefActive as useUiRouterSrefActive,
|
|
} from '@uirouter/react';
|
|
import clsx from 'clsx';
|
|
import { ComponentProps } from 'react';
|
|
import ReactTooltip from 'react-tooltip';
|
|
|
|
import { AutomationTestingProps } from '@/types';
|
|
|
|
import { Link } from '@@/Link';
|
|
import { IconProps, Icon } from '@@/Icon';
|
|
|
|
import { useSidebarState } from '../useSidebarState';
|
|
|
|
interface Props
|
|
extends IconProps,
|
|
ComponentProps<typeof Link>,
|
|
AutomationTestingProps {
|
|
label: string;
|
|
ignorePaths?: string[];
|
|
}
|
|
|
|
export function Head({
|
|
to,
|
|
options,
|
|
params = {},
|
|
label,
|
|
icon,
|
|
ignorePaths = [],
|
|
'data-cy': dataCy,
|
|
}: Props) {
|
|
const { isOpen } = useSidebarState();
|
|
const anchorProps = useSrefActive(
|
|
to,
|
|
'bg-blue-8 be:bg-gray-8 th-dark:bg-gray-true-8',
|
|
params,
|
|
options,
|
|
ignorePaths
|
|
);
|
|
|
|
return (
|
|
<a
|
|
href={anchorProps.href}
|
|
onClick={anchorProps.onClick}
|
|
className={clsx(
|
|
anchorProps.className,
|
|
'text-inherit no-underline hover:no-underline hover:text-inherit focus:no-underline focus:text-inherit',
|
|
'w-full flex-1 rounded-md flex items-center h-8 space-x-4 text-sm',
|
|
'hover:bg-blue-9 th-dark:hover:bg-gray-true-9 be:hover:bg-gray-9 transition-colors duration-200',
|
|
{
|
|
'px-3 justify-start w-full': isOpen,
|
|
'justify-center w-8': !isOpen,
|
|
}
|
|
)}
|
|
data-tip={label}
|
|
data-cy={dataCy}
|
|
>
|
|
{!!icon && (
|
|
<Icon icon={icon} feather className={clsx('flex [&>svg]:w-4')} />
|
|
)}
|
|
{isOpen && <span>{label}</span>}
|
|
|
|
<ReactTooltip
|
|
type="info"
|
|
place="right"
|
|
effect="solid"
|
|
className="!opacity-100 bg-blue-9 be:bg-gray-9 !rounded-md !py-1 !px-2"
|
|
arrowColor="transparent"
|
|
disable={isOpen}
|
|
/>
|
|
</a>
|
|
);
|
|
}
|
|
|
|
function useSrefActive(
|
|
to: string,
|
|
activeClassName: string,
|
|
params: Partial<Record<string, string>> = {},
|
|
options: TransitionOptions = {},
|
|
ignorePaths: string[] = []
|
|
) {
|
|
const { state: { name: stateName = '' } = {} } = useCurrentStateAndParams();
|
|
const anchorProps = useUiRouterSrefActive(
|
|
to,
|
|
params || {},
|
|
activeClassName,
|
|
options
|
|
);
|
|
|
|
const className = ignorePaths.some((path) => stateName.includes(path))
|
|
? ''
|
|
: anchorProps.className;
|
|
|
|
return {
|
|
...anchorProps,
|
|
className,
|
|
};
|
|
}
|