import React, { useEffect, useState } from "react"; import Image from "next/image"; import type { NextPage } from "next"; import { useTheme } from "next-themes"; import useSWR from "swr"; import { observer } from "mobx-react-lite"; // layouts import DefaultLayout from "layouts/default-layout"; // services import authenticationService from "services/authentication.service"; import { AppConfigService } from "services/app-config.service"; // hooks import useUserAuth from "hooks/use-user-auth"; import useToast from "hooks/use-toast"; // components import { GoogleLoginButton, GithubLoginButton, EmailCodeForm, EmailPasswordForm, EmailResetPasswordForm, } from "components/account"; // ui import { Spinner } from "components/ui"; // images import BluePlaneLogoWithoutText from "public/plane-logos/blue-without-text.png"; // mobx store import { useMobxStore } from "lib/mobx/store-provider"; // types import { IUser } from "types"; const appConfig = new AppConfigService(); // types type EmailPasswordFormValues = { email: string; password?: string; medium?: string; }; const HomePage: NextPage = observer(() => { const store: any = useMobxStore(); // theme const { setTheme } = useTheme(); // user const { isLoading, mutateUser } = useUserAuth("sign-in"); // states const [isResettingPassword, setIsResettingPassword] = useState(false); // toast const { setToastAlert } = useToast(); // fetch app config const { data } = useSWR("APP_CONFIG", () => appConfig.envConfig()); const handleTheme = (user: IUser) => { const currentTheme = user.theme.theme ?? "system"; setTheme(currentTheme); store?.user?.setCurrentUserSettings(); }; 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(); handleTheme(response?.user); } } 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 (data && data.github && credential) { const socialAuthPayload = { medium: "github", credential, clientId: data.github, }; const response = await authenticationService.socialAuth(socialAuthPayload); if (response && response?.user) { mutateUser(); handleTheme(response?.user); } } 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(); handleTheme(response?.user); } } 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(); handleTheme(response?.user); } } 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

{isResettingPassword ? "Reset your password" : "Sign in to Plane"}

{isResettingPassword ? ( ) : ( <> {data?.email_password_login && ( )} {data?.magic_login && (
)}
{data?.google && ( )} {data?.github && ( )}
)}

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

)} ); }); export default HomePage;