import React from "react"; import Image from "next/image"; import type { NextPage } from "next"; // layouts import DefaultLayout from "layouts/default-layout"; // services import authenticationService from "services/authentication.service"; // hooks import useUserAuth from "hooks/use-user-auth"; import useToast from "hooks/use-toast"; // components import { GoogleLoginButton, GithubLoginButton, EmailCodeForm, EmailPasswordForm, } from "components/account"; // ui import { Spinner } from "components/ui"; // images import BluePlaneLogoWithoutText from "public/plane-logos/blue-without-text.png"; // types type EmailPasswordFormValues = { email: string; password?: string; medium?: string; }; const HomePage: NextPage = () => { const { isLoading, mutateUser } = useUserAuth("sign-in"); const { setToastAlert } = useToast(); const handleGoogleSignIn = async ({ clientId, credential }: any) => { try { if (clientId && credential) { const socialAuthPayload = { medium: "google", credential, clientId, }; const response = await authenticationService.socialAuth(socialAuthPayload); if (response && response?.user) mutateUser(); } else { throw Error("Cant find credentials"); } } catch (err: any) { setToastAlert({ title: "Error signing in!", type: "error", message: err?.error || "Something went wrong. Please try again later or contact the support team.", }); } }; const handleGitHubSignIn = async (credential: string) => { try { if (process.env.NEXT_PUBLIC_GITHUB_ID && credential) { const socialAuthPayload = { medium: "github", credential, clientId: process.env.NEXT_PUBLIC_GITHUB_ID, }; const response = await authenticationService.socialAuth(socialAuthPayload); if (response && response?.user) mutateUser(); } else { throw Error("Cant find credentials"); } } catch (err: any) { setToastAlert({ title: "Error signing in!", type: "error", message: err?.error || "Something went wrong. Please try again later or contact the support team.", }); } }; const handlePasswordSignIn = async (formData: EmailPasswordFormValues) => { await authenticationService .emailLogin(formData) .then((response) => { try { if (response) mutateUser(); } catch (err: any) { setToastAlert({ type: "error", title: "Error!", message: err?.error || "Something went wrong. Please try again later or contact the support team.", }); } }) .catch((err) => setToastAlert({ type: "error", title: "Error!", message: err?.error || "Something went wrong. Please try again later or contact the support team.", }) ); }; const handleEmailCodeSignIn = async (response: any) => { try { if (response) mutateUser(); } catch (err: any) { setToastAlert({ type: "error", title: "Error!", message: err?.error || "Something went wrong. Please try again later or contact the support team.", }); } }; return ( {isLoading ? (
) : ( <> <>
Plane Logo
{parseInt(process.env.NEXT_PUBLIC_ENABLE_OAUTH || "0") ? ( <>

Sign in to Plane

) : ( )} {parseInt(process.env.NEXT_PUBLIC_ENABLE_OAUTH || "0") ? (

By signing up, you agree to the{" "} Terms & Conditions

) : null}
)} ); }; export default HomePage;