mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-27 00:48:06 +08:00
bbe1043289
We were displaying the raw translation key rather than the translated text.
145 lines
4.0 KiB
TypeScript
145 lines
4.0 KiB
TypeScript
/*
|
|
Copyright 2022 - 2023 New Vector Ltd
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
import { FC, ReactNode, useCallback, useMemo } from "react";
|
|
import { Item } from "@react-stately/collections";
|
|
import { useLocation } from "react-router-dom";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
import { Button, LinkButton } from "./button";
|
|
import { PopoverMenuTrigger } from "./popover/PopoverMenu";
|
|
import { Menu } from "./Menu";
|
|
import { TooltipTrigger } from "./Tooltip";
|
|
import { Avatar, Size } from "./Avatar";
|
|
import UserIcon from "./icons/User.svg?react";
|
|
import SettingsIcon from "./icons/Settings.svg?react";
|
|
import LoginIcon from "./icons/Login.svg?react";
|
|
import LogoutIcon from "./icons/Logout.svg?react";
|
|
import { Body } from "./typography/Typography";
|
|
import styles from "./UserMenu.module.css";
|
|
|
|
interface Props {
|
|
preventNavigation: boolean;
|
|
isAuthenticated: boolean;
|
|
isPasswordlessUser: boolean;
|
|
userId: string;
|
|
displayName: string;
|
|
avatarUrl?: string;
|
|
onAction: (value: string) => void;
|
|
}
|
|
|
|
export const UserMenu: FC<Props> = ({
|
|
preventNavigation,
|
|
isAuthenticated,
|
|
isPasswordlessUser,
|
|
userId,
|
|
displayName,
|
|
avatarUrl,
|
|
onAction,
|
|
}) => {
|
|
const { t } = useTranslation();
|
|
const location = useLocation();
|
|
|
|
const items = useMemo(() => {
|
|
const arr = [];
|
|
|
|
if (isAuthenticated) {
|
|
arr.push({
|
|
key: "user",
|
|
icon: UserIcon,
|
|
label: displayName,
|
|
dataTestid: "usermenu_user",
|
|
});
|
|
arr.push({
|
|
key: "settings",
|
|
icon: SettingsIcon,
|
|
label: t("common.settings"),
|
|
});
|
|
|
|
if (isPasswordlessUser && !preventNavigation) {
|
|
arr.push({
|
|
key: "login",
|
|
label: t("action.sign_in"),
|
|
icon: LoginIcon,
|
|
dataTestid: "usermenu_login",
|
|
});
|
|
}
|
|
|
|
if (!isPasswordlessUser && !preventNavigation) {
|
|
arr.push({
|
|
key: "logout",
|
|
label: t("action.sign_out"),
|
|
icon: LogoutIcon,
|
|
dataTestid: "usermenu_logout",
|
|
});
|
|
}
|
|
}
|
|
|
|
return arr;
|
|
}, [isAuthenticated, isPasswordlessUser, displayName, preventNavigation, t]);
|
|
|
|
const tooltip = useCallback(() => t("common.profile"), [t]);
|
|
|
|
if (!isAuthenticated) {
|
|
return (
|
|
<LinkButton to={{ pathname: "/login", state: { from: location } }}>
|
|
{t("log_in")}
|
|
</LinkButton>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<PopoverMenuTrigger placement="bottom right">
|
|
<TooltipTrigger tooltip={tooltip} placement="bottom left">
|
|
<Button
|
|
variant="icon"
|
|
className={styles.userButton}
|
|
data-testid="usermenu_open"
|
|
>
|
|
{isAuthenticated && (!isPasswordlessUser || avatarUrl) ? (
|
|
<Avatar
|
|
id={userId}
|
|
name={displayName}
|
|
size={Size.SM}
|
|
src={avatarUrl}
|
|
/>
|
|
) : (
|
|
<UserIcon />
|
|
)}
|
|
</Button>
|
|
</TooltipTrigger>
|
|
{
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
(props: any): ReactNode => (
|
|
<Menu {...props} label={t("a11y.user_menu")} onAction={onAction}>
|
|
{items.map(({ key, icon: Icon, label, dataTestid }) => (
|
|
<Item key={key} textValue={label}>
|
|
<Icon
|
|
width={24}
|
|
height={24}
|
|
className={styles.menuIcon}
|
|
data-testid={dataTestid}
|
|
/>
|
|
<Body overflowEllipsis>{label}</Body>
|
|
</Item>
|
|
))}
|
|
</Menu>
|
|
)
|
|
}
|
|
</PopoverMenuTrigger>
|
|
);
|
|
};
|