element-call/src/UserMenuContainer.tsx

84 lines
2.4 KiB
TypeScript
Raw Normal View History

/*
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 { useCallback, useState } from "react";
2021-12-23 22:40:23 +00:00
import { useHistory, useLocation } from "react-router-dom";
2022-01-06 01:19:03 +00:00
import { useClient } from "./ClientContext";
2022-01-06 01:27:01 +00:00
import { useProfile } from "./profile/useProfile";
2021-12-23 22:40:23 +00:00
import { useModalTriggerState } from "./Modal";
import { SettingsModal } from "./settings/SettingsModal";
2021-12-23 22:40:23 +00:00
import { UserMenu } from "./UserMenu";
interface Props {
preventNavigation?: boolean;
}
2022-08-01 22:46:16 +00:00
export function UserMenuContainer({ preventNavigation = false }: Props) {
2021-12-23 22:40:23 +00:00
const location = useLocation();
const history = useHistory();
2022-01-05 00:00:13 +00:00
const { isAuthenticated, isPasswordlessUser, logout, userName, client } =
useClient();
2021-12-23 22:40:23 +00:00
const { displayName, avatarUrl } = useProfile(client);
const { modalState, modalProps } = useModalTriggerState();
const [defaultSettingsTab, setDefaultSettingsTab] = useState<string>();
2021-12-23 22:40:23 +00:00
const onAction = useCallback(
async (value: string) => {
2021-12-23 22:40:23 +00:00
switch (value) {
case "user":
setDefaultSettingsTab("profile");
modalState.open();
break;
case "settings":
setDefaultSettingsTab("audio");
2021-12-23 22:40:23 +00:00
modalState.open();
break;
case "logout":
logout();
break;
case "login":
history.push("/login", { state: { from: location } });
break;
}
},
[history, location, logout, modalState]
);
return (
<>
<UserMenu
preventNavigation={preventNavigation}
2021-12-23 22:40:23 +00:00
isAuthenticated={isAuthenticated}
isPasswordlessUser={isPasswordlessUser}
avatarUrl={avatarUrl}
onAction={onAction}
displayName={
displayName || (userName ? userName.replace("@", "") : undefined)
}
/>
{modalState.isOpen && (
<SettingsModal
client={client}
defaultTab={defaultSettingsTab}
{...modalProps}
/>
)}
2021-12-23 22:40:23 +00:00
</>
);
}