mirror of
https://github.com/element-hq/element-call.git
synced 2026-07-28 21:09:26 +00:00
91 lines
2.3 KiB
React
91 lines
2.3 KiB
React
import React, { useCallback, useMemo } from "react";
|
|
import { ButtonTooltip, Button } from "./button";
|
|
import { PopoverMenuTrigger } from "./PopoverMenu";
|
|
import { ReactComponent as UserIcon } from "./icons/User.svg";
|
|
import { ReactComponent as LoginIcon } from "./icons/Login.svg";
|
|
import { ReactComponent as LogoutIcon } from "./icons/Logout.svg";
|
|
import styles from "./UserMenu.module.css";
|
|
import { Item } from "@react-stately/collections";
|
|
import { Menu } from "./Menu";
|
|
import { useHistory, useLocation } from "react-router-dom";
|
|
import { useClient } from "./ConferenceCallManagerHooks";
|
|
|
|
export function UserMenu() {
|
|
const location = useLocation();
|
|
const history = useHistory();
|
|
const { isAuthenticated, isGuest, logout, userName } = useClient();
|
|
|
|
const onAction = useCallback(
|
|
(value) => {
|
|
switch (value) {
|
|
case "user":
|
|
break;
|
|
case "logout":
|
|
logout();
|
|
break;
|
|
case "login":
|
|
history.push("/login", { state: { from: location } });
|
|
break;
|
|
case "register":
|
|
history.push("/register", { state: { from: location } });
|
|
break;
|
|
}
|
|
},
|
|
[history, location, logout]
|
|
);
|
|
|
|
const items = useMemo(() => {
|
|
const arr = [];
|
|
|
|
if (isAuthenticated) {
|
|
arr.push({
|
|
key: "user",
|
|
icon: UserIcon,
|
|
label: userName,
|
|
});
|
|
}
|
|
|
|
if (!isAuthenticated || isGuest) {
|
|
arr.push(
|
|
{
|
|
key: "login",
|
|
label: "Sign In",
|
|
icon: LoginIcon,
|
|
},
|
|
{
|
|
key: "register",
|
|
label: "Register",
|
|
icon: LoginIcon,
|
|
}
|
|
);
|
|
} else {
|
|
arr.push({
|
|
key: "logout",
|
|
label: "Sign Out",
|
|
icon: LogoutIcon,
|
|
});
|
|
}
|
|
|
|
return arr;
|
|
}, [isAuthenticated, isGuest, userName]);
|
|
|
|
return (
|
|
<PopoverMenuTrigger placement="bottom right">
|
|
<Button variant="icon" className={styles.userButton}>
|
|
<ButtonTooltip>Profile</ButtonTooltip>
|
|
<UserIcon />
|
|
</Button>
|
|
{(props) => (
|
|
<Menu {...props} label="User menu" onAction={onAction}>
|
|
{items.map(({ key, icon: Icon, label }) => (
|
|
<Item key={key} textValue={label}>
|
|
<Icon />
|
|
<span>{label}</span>
|
|
</Item>
|
|
))}
|
|
</Menu>
|
|
)}
|
|
</PopoverMenuTrigger>
|
|
);
|
|
}
|