portainer/app/react/components/PageHeader/HeaderTitle.tsx

102 lines
2.4 KiB
TypeScript
Raw Normal View History

import { PropsWithChildren } from 'react';
import {
Menu,
MenuButton,
MenuList,
MenuLink as ReachMenuLink,
} from '@reach/menu-button';
import clsx from 'clsx';
import { User, ChevronDown } from 'react-feather';
2022-07-04 09:20:46 +00:00
import { UISrefProps, useSref } from '@uirouter/react';
import { useUser } from '@/portainer/hooks/useUser';
2022-07-04 09:20:46 +00:00
import { AutomationTestingProps } from '@/types';
import { useHeaderContext } from './HeaderContainer';
import styles from './HeaderTitle.module.css';
interface Props {
title: string;
}
export function HeaderTitle({ title, children }: PropsWithChildren<Props>) {
useHeaderContext();
const { user } = useUser();
return (
<div className="page white-space-normal">
{title}
<span className="header_title_content">{children}</span>
<Menu>
<MenuButton
className={clsx(
'pull-right flex items-center gap-1',
styles.menuButton
)}
2022-07-04 09:20:46 +00:00
data-cy="userMenu-button"
aria-label="User menu toggle"
>
<div
className={clsx(
'icon-badge text-lg !p-2 mr-1',
'bg-gray-4 text-gray-8',
'th-dark:bg-gray-warm-10 th-dark:text-gray-warm-7'
)}
>
<User className="feather" />
</div>
{user && <span>{user.Username}</span>}
<ChevronDown className={styles.arrowDown} />
</MenuButton>
2022-07-04 09:20:46 +00:00
<MenuList
className={styles.menuList}
aria-label="User Menu"
data-cy="userMenu"
>
{!window.ddExtension && (
2022-07-04 09:20:46 +00:00
<MenuLink
to="portainer.account"
label="My account"
data-cy="userMenu-myAccount"
/>
)}
2022-07-04 09:20:46 +00:00
<MenuLink
to="portainer.logout"
label="Log out"
data-cy="userMenu-logOut"
params={{ performApiLogout: true }}
/>
</MenuList>
</Menu>
</div>
);
}
2022-07-04 09:20:46 +00:00
interface MenuLinkProps extends AutomationTestingProps, UISrefProps {
label: string;
}
2022-07-04 09:20:46 +00:00
function MenuLink({
to,
label,
params,
options,
'data-cy': dataCy,
}: MenuLinkProps) {
const anchorProps = useSref(to, params, options);
return (
<ReachMenuLink
href={anchorProps.href}
onClick={anchorProps.onClick}
className={styles.menuLink}
2022-07-04 09:20:46 +00:00
aria-label={label}
data-cy={dataCy}
>
{label}
</ReachMenuLink>
);
}