mirror of
https://github.com/fleetdm/fleet
synced 2026-05-06 14:58:33 +00:00
## For #29721 - Build the new Labels page - Forward to the Labels page after saving a label ### [Demo video](https://drive.google.com/file/d/1iArnSiVn7CSwOpCrKEdO9HByHu9qga3L/view?usp=sharing) <img width="1798" height="1082" alt="Screenshot 2025-09-17 at 4 00 55 PM" src="https://github.com/user-attachments/assets/6a51f48c-07c3-44d9-b2bf-07025ffa61ed" /> - [x] Changes file added for user-visible changes in `changes/` - [x] Added/updated automated tests - [x] QA'd all new/changed functionality manually --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
291 lines
7.7 KiB
TypeScript
291 lines
7.7 KiB
TypeScript
import React, { useEffect, useState } from "react";
|
|
import { keyframes } from "@emotion/react";
|
|
import Select, {
|
|
components,
|
|
DropdownIndicatorProps,
|
|
GroupBase,
|
|
OptionProps,
|
|
StylesConfig,
|
|
} from "react-select-5";
|
|
import { IUser } from "interfaces/user";
|
|
import { ITeam } from "interfaces/team";
|
|
import { IDropdownOption } from "interfaces/dropdownOption";
|
|
import PATHS from "router/paths";
|
|
import { getSortedTeamOptions } from "utilities/helpers";
|
|
|
|
import { PADDING } from "styles/var/padding";
|
|
import { COLORS } from "styles/var/colors";
|
|
|
|
import Icon from "components/Icon";
|
|
import AvatarTopNav from "../../AvatarTopNav";
|
|
|
|
const baseClass = "user-menu";
|
|
|
|
interface IUserMenuProps {
|
|
onLogout: () => void;
|
|
onUserMenuItemClick: (path: string) => void;
|
|
isAnyTeamAdmin: boolean | undefined;
|
|
isGlobalAdmin: boolean | undefined;
|
|
currentUser: IUser;
|
|
}
|
|
|
|
const bounceDownAnimation = keyframes`
|
|
0%, 100% {
|
|
transform: translateY(0);
|
|
}
|
|
50% {
|
|
transform: translateY(3px);
|
|
}
|
|
`;
|
|
|
|
const getOptionBackgroundColor = (
|
|
state: OptionProps<IDropdownOption, false, GroupBase<IDropdownOption>>
|
|
) => {
|
|
return state.isFocused ? COLORS["ui-vibrant-blue-10"] : "transparent";
|
|
};
|
|
|
|
const CustomDropdownIndicator = (
|
|
props: DropdownIndicatorProps<
|
|
IDropdownOption,
|
|
false,
|
|
GroupBase<IDropdownOption>
|
|
>
|
|
) => {
|
|
return (
|
|
<components.DropdownIndicator {...props} className={baseClass}>
|
|
<Icon
|
|
name="chevron-down"
|
|
color="core-fleet-white"
|
|
className={`${baseClass}__icon`}
|
|
size="small"
|
|
/>
|
|
</components.DropdownIndicator>
|
|
);
|
|
};
|
|
|
|
const CustomOption: React.FC<
|
|
OptionProps<IDropdownOption, false> & { isKeyboardFocus: boolean }
|
|
> = (props) => {
|
|
const { innerRef, data, isFocused, isKeyboardFocus } = props;
|
|
|
|
return (
|
|
<components.Option
|
|
{...props}
|
|
isFocused={isKeyboardFocus ? isFocused : false} // work around to not preselect first option unless keyboarding
|
|
>
|
|
<div
|
|
className={`${baseClass}__option`}
|
|
ref={innerRef}
|
|
// eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex
|
|
tabIndex={0}
|
|
role="menuitem"
|
|
>
|
|
{data.label}
|
|
</div>
|
|
</components.Option>
|
|
);
|
|
};
|
|
|
|
const UserMenu = ({
|
|
onLogout,
|
|
onUserMenuItemClick,
|
|
isAnyTeamAdmin,
|
|
isGlobalAdmin,
|
|
currentUser,
|
|
}: IUserMenuProps): JSX.Element => {
|
|
// Work around for react-select-5 not having :focus-visible pseudo class that can style dropdown on keyboard tab only
|
|
// Work around preventing react-select-5 from auto focusing first option unless using keyboard
|
|
const [isKeyboardFocus, setIsKeyboardFocus] = useState(false);
|
|
|
|
useEffect(() => {
|
|
const handleKeyDown = (e: KeyboardEvent) => {
|
|
if (e.key === "Tab") {
|
|
setIsKeyboardFocus(true);
|
|
}
|
|
};
|
|
|
|
const handleMouseDown = () => {
|
|
setIsKeyboardFocus(false);
|
|
};
|
|
|
|
document.addEventListener("keydown", handleKeyDown);
|
|
document.addEventListener("mousedown", handleMouseDown);
|
|
|
|
return () => {
|
|
document.removeEventListener("keydown", handleKeyDown);
|
|
document.removeEventListener("mousedown", handleMouseDown);
|
|
};
|
|
}, []);
|
|
|
|
const dropdownItems = [
|
|
{
|
|
label: "My account",
|
|
value: "my-account",
|
|
onClick: () => onUserMenuItemClick(PATHS.ACCOUNT),
|
|
},
|
|
{
|
|
label: "Documentation",
|
|
value: "documentation",
|
|
onClick: () => {
|
|
window.open("https://fleetdm.com/docs", "_blank");
|
|
},
|
|
},
|
|
{
|
|
label: "Sign out",
|
|
value: "sign-out",
|
|
onClick: onLogout,
|
|
},
|
|
];
|
|
|
|
if (isGlobalAdmin) {
|
|
const manageUserNavItem = {
|
|
label: "Manage users",
|
|
value: "manage-users",
|
|
onClick: () => onUserMenuItemClick(PATHS.ADMIN_USERS),
|
|
};
|
|
dropdownItems.unshift(manageUserNavItem);
|
|
}
|
|
|
|
const manageLabelsMenuItem = {
|
|
label: "Labels",
|
|
value: "labels",
|
|
onClick: () => onUserMenuItemClick(PATHS.MANAGE_LABELS),
|
|
};
|
|
dropdownItems.unshift(manageLabelsMenuItem);
|
|
|
|
if (currentUser && (isAnyTeamAdmin || isGlobalAdmin)) {
|
|
const userAdminTeams = currentUser.teams.filter(
|
|
(thisTeam: ITeam) => thisTeam.role === "admin"
|
|
);
|
|
const sortedTeams = getSortedTeamOptions(userAdminTeams);
|
|
const settingsPath =
|
|
currentUser.global_role === "admin"
|
|
? PATHS.ADMIN_ORGANIZATION
|
|
: `${PATHS.TEAM_DETAILS_USERS(sortedTeams[0].value)}`;
|
|
const adminMenuItem = {
|
|
label: "Settings",
|
|
value: "settings",
|
|
onClick: () => onUserMenuItemClick(settingsPath),
|
|
};
|
|
|
|
dropdownItems.unshift(adminMenuItem);
|
|
}
|
|
|
|
const customStyles: StylesConfig<IDropdownOption, false> = {
|
|
control: (provided, state) => ({
|
|
...provided,
|
|
display: "flex",
|
|
flexDirection: "row",
|
|
width: "max-content",
|
|
padding: "8px",
|
|
marginRight: "8px",
|
|
backgroundColor: "initial",
|
|
border: "2px solid transparent", // So tabbing doesn't shift dropdown
|
|
borderRadius: "6px",
|
|
boxShadow: "none",
|
|
cursor: "pointer",
|
|
"&:hover": {
|
|
boxShadow: "none",
|
|
".user-menu-select__indicator svg": {
|
|
animation: `${bounceDownAnimation} 0.3s ease-in-out`,
|
|
},
|
|
},
|
|
...(state.isFocused &&
|
|
isKeyboardFocus && {
|
|
border: `2px solid ${COLORS["ui-blue-25"]}`,
|
|
}),
|
|
...(state.menuIsOpen && {
|
|
".user-menu-select__indicator svg": {
|
|
transform: "rotate(180deg)",
|
|
},
|
|
}),
|
|
}),
|
|
dropdownIndicator: (provided) => ({
|
|
...provided,
|
|
display: "flex",
|
|
padding: "6px",
|
|
svg: {
|
|
transition: "transform 0.25s ease",
|
|
},
|
|
}),
|
|
menu: (provided) => ({
|
|
...provided,
|
|
boxShadow: "0 2px 6px rgba(0, 0, 0, 0.1)",
|
|
borderRadius: "4px",
|
|
zIndex: 6,
|
|
marginTop: "7px",
|
|
marginRight: "8px",
|
|
width: "auto",
|
|
minWidth: "100%",
|
|
position: "absolute",
|
|
left: "auto",
|
|
right: "0",
|
|
animation: "fade-in 150ms ease-out",
|
|
}),
|
|
menuList: (provided) => ({
|
|
...provided,
|
|
padding: PADDING["pad-small"],
|
|
maxHeight: "initial", // Override react-select default height of 300px
|
|
}),
|
|
valueContainer: (provided) => ({
|
|
...provided,
|
|
padding: 0,
|
|
}),
|
|
option: (provided, state) => ({
|
|
...provided,
|
|
padding: "10px 8px",
|
|
fontSize: "15px",
|
|
backgroundColor: getOptionBackgroundColor(state),
|
|
color: COLORS["tooltip-bg"],
|
|
whiteSpace: "nowrap",
|
|
"&:hover": {
|
|
backgroundColor: COLORS["ui-vibrant-blue-10"],
|
|
},
|
|
"&:active": {
|
|
backgroundColor: COLORS["ui-vibrant-blue-25"],
|
|
},
|
|
"&:last-child, &:nth-last-of-type(2)": {
|
|
borderTop: `1px solid ${COLORS["ui-fleet-black-10"]}`,
|
|
},
|
|
}),
|
|
};
|
|
|
|
const renderPlaceholder = () => {
|
|
return (
|
|
<AvatarTopNav
|
|
className={`${baseClass}__avatar-image`}
|
|
user={{ gravatar_url_dark: currentUser.gravatar_url_dark }}
|
|
size="small"
|
|
/>
|
|
);
|
|
};
|
|
|
|
return (
|
|
<div className={baseClass} data-testid="user-menu">
|
|
<Select<IDropdownOption, false>
|
|
options={dropdownItems}
|
|
placeholder={renderPlaceholder()}
|
|
styles={customStyles}
|
|
components={{
|
|
DropdownIndicator: CustomDropdownIndicator,
|
|
IndicatorSeparator: () => null,
|
|
Option: (props) => (
|
|
<CustomOption {...props} isKeyboardFocus={isKeyboardFocus} />
|
|
),
|
|
SingleValue: () => null,
|
|
}}
|
|
controlShouldRenderValue={false}
|
|
isOptionSelected={() => false}
|
|
className={baseClass}
|
|
classNamePrefix={`${baseClass}-select`}
|
|
menuPlacement="bottom"
|
|
onChange={(option) => {
|
|
option?.onClick && option?.onClick();
|
|
}}
|
|
isSearchable={false}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default UserMenu;
|