* banners * useAuthHooks * fixes to redirect and banner * extract useIntercom to custom hook * use app theme * extract user-dropdown to new component * Navigation Item * navigation and profile dropdown * Fix import * navigation and sidebar * fix type errors * fix banners being an async call * fix types * fix banner prop type * fix mobile nav item import * fix banner types * (revert) layout banner render method to fix type error --------- Co-authored-by: Alex van Andel <me@alexvanandel.com> Co-authored-by: Keith Williams <keithwillcode@gmail.com> Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com>
219 lines
8.1 KiB
TypeScript
219 lines
8.1 KiB
TypeScript
import { signOut } from "next-auth/react";
|
|
import { usePathname } from "next/navigation";
|
|
import { useEffect, useState } from "react";
|
|
|
|
import HelpMenuItem from "@calcom/features/ee/support/components/HelpMenuItem";
|
|
import { classNames } from "@calcom/lib";
|
|
import { JOIN_COMMUNITY, ROADMAP, DESKTOP_APP_LINK } from "@calcom/lib/constants";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import useMeQuery from "@calcom/trpc/react/hooks/useMeQuery";
|
|
import {
|
|
Avatar,
|
|
Dropdown,
|
|
DropdownItem,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuPortal,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuTrigger,
|
|
Icon,
|
|
} from "@calcom/ui";
|
|
// TODO (Platform): we shouldnt be importing from web here
|
|
import { useGetUserAttributes } from "@calcom/web/components/settings/platform/hooks/useGetUserAttributes";
|
|
|
|
import FreshChatProvider from "../../ee/support/lib/freshchat/FreshChatProvider";
|
|
|
|
interface UserDropdownProps {
|
|
small?: boolean;
|
|
}
|
|
export function UserDropdown({ small }: UserDropdownProps) {
|
|
const { isPlatformUser } = useGetUserAttributes();
|
|
const { t } = useLocale();
|
|
const { data: user } = useMeQuery();
|
|
const pathname = usePathname();
|
|
const isPlatformPages = pathname?.startsWith("/settings/platform");
|
|
useEffect(() => {
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
//@ts-ignore
|
|
const Beacon = window.Beacon;
|
|
// window.Beacon is defined when user actually opens up HelpScout and username is available here. On every re-render update session info, so that it is always latest.
|
|
Beacon &&
|
|
Beacon("session-data", {
|
|
username: user?.username || "Unknown",
|
|
screenResolution: `${screen.width}x${screen.height}`,
|
|
});
|
|
});
|
|
|
|
const [helpOpen, setHelpOpen] = useState(false);
|
|
const [menuOpen, setMenuOpen] = useState(false);
|
|
|
|
const onHelpItemSelect = () => {
|
|
setHelpOpen(false);
|
|
setMenuOpen(false);
|
|
};
|
|
|
|
// Prevent rendering dropdown if user isn't available.
|
|
// We don't want to show nameless user.
|
|
if (!user) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<Dropdown open={menuOpen}>
|
|
<DropdownMenuTrigger asChild onClick={() => setMenuOpen((menuOpen) => !menuOpen)}>
|
|
<button
|
|
data-testid="user-dropdown-trigger-button"
|
|
className={classNames(
|
|
"hover:bg-emphasis todesktop:!bg-transparent group mx-0 flex w-full cursor-pointer appearance-none items-center rounded-full text-left outline-none transition focus:outline-none focus:ring-0 md:rounded-none lg:rounded",
|
|
small ? "p-2" : "px-2 py-1.5"
|
|
)}>
|
|
<span
|
|
className={classNames(
|
|
small ? "h-4 w-4" : "h-5 w-5 ltr:mr-2 rtl:ml-2",
|
|
"relative flex-shrink-0 rounded-full "
|
|
)}>
|
|
<Avatar
|
|
size={small ? "xs" : "xsm"}
|
|
imageSrc={`${user.avatarUrl || user.avatar}`}
|
|
alt={user.username || "Nameless User"}
|
|
className="overflow-hidden"
|
|
/>
|
|
<span
|
|
className={classNames(
|
|
"border-muted absolute -bottom-1 -right-1 rounded-full border bg-green-500",
|
|
small ? "-bottom-0.5 -right-0.5 h-2.5 w-2.5" : "-bottom-0.5 -right-0 h-2 w-2"
|
|
)}
|
|
/>
|
|
</span>
|
|
{!small && (
|
|
<span className="flex flex-grow items-center gap-2">
|
|
<span className="w-24 flex-shrink-0 text-sm leading-none">
|
|
<span className="text-emphasis block truncate font-medium">
|
|
{user.name || "Nameless User"}
|
|
</span>
|
|
</span>
|
|
<Icon
|
|
name="chevron-down"
|
|
className="group-hover:text-subtle text-muted h-4 w-4 flex-shrink-0 transition rtl:mr-4"
|
|
aria-hidden="true"
|
|
/>
|
|
</span>
|
|
)}
|
|
</button>
|
|
</DropdownMenuTrigger>
|
|
|
|
<DropdownMenuPortal>
|
|
<FreshChatProvider>
|
|
<DropdownMenuContent
|
|
align="start"
|
|
onInteractOutside={() => {
|
|
setMenuOpen(false);
|
|
setHelpOpen(false);
|
|
}}
|
|
className="group overflow-hidden rounded-md">
|
|
{helpOpen ? (
|
|
<HelpMenuItem onHelpItemSelect={() => onHelpItemSelect()} />
|
|
) : (
|
|
<>
|
|
{!isPlatformPages && (
|
|
<>
|
|
<DropdownMenuItem>
|
|
<DropdownItem
|
|
type="button"
|
|
CustomStartIcon={
|
|
<Icon name="user" className="text-default h-4 w-4" aria-hidden="true" />
|
|
}
|
|
href="/settings/my-account/profile">
|
|
{t("my_profile")}
|
|
</DropdownItem>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem>
|
|
<DropdownItem
|
|
type="button"
|
|
CustomStartIcon={
|
|
<Icon name="settings" className="text-default h-4 w-4" aria-hidden="true" />
|
|
}
|
|
href="/settings/my-account/general">
|
|
{t("my_settings")}
|
|
</DropdownItem>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem>
|
|
<DropdownItem
|
|
type="button"
|
|
CustomStartIcon={
|
|
<Icon name="moon" className="text-default h-4 w-4" aria-hidden="true" />
|
|
}
|
|
href="/settings/my-account/out-of-office">
|
|
{t("out_of_office")}
|
|
</DropdownItem>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuSeparator />
|
|
</>
|
|
)}
|
|
|
|
<DropdownMenuItem>
|
|
<DropdownItem
|
|
StartIcon="messages-square"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
href={JOIN_COMMUNITY}>
|
|
{t("join_our_community")}
|
|
</DropdownItem>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem>
|
|
<DropdownItem StartIcon="map" target="_blank" href={ROADMAP}>
|
|
{t("visit_roadmap")}
|
|
</DropdownItem>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem>
|
|
<DropdownItem
|
|
type="button"
|
|
StartIcon="circle-help"
|
|
aria-hidden="true"
|
|
onClick={() => setHelpOpen(true)}>
|
|
{t("help")}
|
|
</DropdownItem>
|
|
</DropdownMenuItem>
|
|
{!isPlatformPages && (
|
|
<DropdownMenuItem className="todesktop:hidden hidden lg:flex">
|
|
<DropdownItem
|
|
StartIcon="download"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
href={DESKTOP_APP_LINK}>
|
|
{t("download_desktop_app")}
|
|
</DropdownItem>
|
|
</DropdownMenuItem>
|
|
)}
|
|
|
|
{!isPlatformPages && isPlatformUser && (
|
|
<DropdownMenuItem className="todesktop:hidden hidden lg:flex">
|
|
<DropdownItem
|
|
StartIcon="blocks"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
href="/settings/platform">
|
|
Platform
|
|
</DropdownItem>
|
|
</DropdownMenuItem>
|
|
)}
|
|
<DropdownMenuSeparator />
|
|
|
|
<DropdownMenuItem>
|
|
<DropdownItem
|
|
type="button"
|
|
StartIcon="log-out"
|
|
aria-hidden="true"
|
|
onClick={() => signOut({ callbackUrl: "/auth/logout" })}>
|
|
{t("sign_out")}
|
|
</DropdownItem>
|
|
</DropdownMenuItem>
|
|
</>
|
|
)}
|
|
</DropdownMenuContent>
|
|
</FreshChatProvider>
|
|
</DropdownMenuPortal>
|
|
</Dropdown>
|
|
);
|
|
}
|