* fix: add "Use a different email" button to verify-email page Closes #28393 * fix: address review feedback on verify-email page - Use signOut({ callbackUrl }) instead of manual redirect - Stack buttons vertically with flex-col --------- Co-authored-by: Romit <85230081+romitg2@users.noreply.github.com>
115 lines
3.8 KiB
TypeScript
115 lines
3.8 KiB
TypeScript
"use client";
|
|
|
|
import { signOut, useSession } from "next-auth/react";
|
|
import { useRouter } from "next/navigation";
|
|
import posthog from "posthog-js";
|
|
import { useEffect } from "react";
|
|
|
|
import { useFlagMap } from "@calcom/features/flags/context/provider";
|
|
import { APP_NAME } from "@calcom/lib/constants";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import { trpc } from "@calcom/trpc/react";
|
|
import useEmailVerifyCheck from "@calcom/trpc/react/hooks/useEmailVerifyCheck";
|
|
import { Button } from "@calcom/ui/components/button";
|
|
import { EmptyScreen } from "@calcom/ui/components/empty-screen";
|
|
import { showToast } from "@calcom/ui/components/toast";
|
|
|
|
const EMAIL_CLIENTS = [
|
|
{
|
|
name: "Gmail",
|
|
icon: "/email-clients/gmail.svg",
|
|
href: "https://mail.google.com/mail/u/0/#search/%22api%2Fauth%2Fverify-email%22",
|
|
},
|
|
{
|
|
name: "Outlook",
|
|
icon: "/email-clients/outlook.svg",
|
|
href: "https://outlook.live.com/mail/0/",
|
|
},
|
|
{
|
|
name: "Yahoo",
|
|
icon: "/email-clients/yahoo.svg",
|
|
href: "https://mail.yahoo.com/d/search?p=Cal.com",
|
|
},
|
|
{
|
|
name: "Proton",
|
|
icon: "/email-clients/proton.svg",
|
|
href: "https://mail.proton.me",
|
|
},
|
|
] as const;
|
|
|
|
function VerifyEmailPage() {
|
|
const { data } = useEmailVerifyCheck();
|
|
const { data: session } = useSession();
|
|
const router = useRouter();
|
|
const { t, isLocaleReady } = useLocale();
|
|
const mutation = trpc.viewer.auth.resendVerifyEmail.useMutation();
|
|
const flags = useFlagMap();
|
|
|
|
useEffect(() => {
|
|
if (data?.isVerified) {
|
|
posthog.capture("verify_email_already_verified", {
|
|
onboarding_v3_enabled: flags["onboarding-v3"],
|
|
});
|
|
const gettingStartedPath = flags["onboarding-v3"] ? "/onboarding/getting-started" : "/getting-started";
|
|
router.replace(gettingStartedPath);
|
|
}
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [data?.isVerified, flags]);
|
|
if (!isLocaleReady) {
|
|
return null;
|
|
}
|
|
return (
|
|
<div className="h-screen w-full ">
|
|
<div className="flex h-full w-full flex-col items-center justify-center">
|
|
<div className="max-w-3xl">
|
|
<EmptyScreen
|
|
border
|
|
dashedBorder={false}
|
|
Icon="mail-open"
|
|
headline={t("check_your_email")}
|
|
description={t("verify_email_page_body", { email: session?.user?.email, appName: APP_NAME })}
|
|
className="bg-default"
|
|
buttonRaw={
|
|
<>
|
|
<div className="mb-4 flex flex-wrap items-center gap-2">
|
|
{EMAIL_CLIENTS.map(({ name, icon, href }) => (
|
|
<Button
|
|
key={name}
|
|
color="secondary"
|
|
href={href}
|
|
target="_blank"
|
|
rel="noopener noreferrer">
|
|
<img src={icon} alt={name} className="me-1 h-4 w-4" /> {name}
|
|
</Button>
|
|
))}
|
|
</div>
|
|
<div className="flex flex-col items-center gap-2">
|
|
<Button
|
|
color="minimal"
|
|
loading={mutation.isPending}
|
|
onClick={() => {
|
|
posthog.capture("verify_email_resend_clicked");
|
|
showToast(t("send_email"), "success");
|
|
mutation.mutate();
|
|
}}>
|
|
{t("resend_email")}
|
|
</Button>
|
|
<Button
|
|
color="minimal"
|
|
onClick={() => {
|
|
signOut({ callbackUrl: "/signup" });
|
|
}}>
|
|
{t("use_different_email")}
|
|
</Button>
|
|
</div>
|
|
</>
|
|
}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default VerifyEmailPage;
|