"use client"; import React, { useEffect } from "react"; // next import Image from "next/image"; import Router from "next/router"; import { useRouter, useSearchParams } from "next/navigation"; // assets import BluePlaneLogoWithoutText from "public/plane-logos/blue-without-text.png"; // mobx import { observer } from "mobx-react-lite"; import { useMobxStore } from "lib/mobx/store-provider"; // services import authenticationService from "services/authentication.service"; // hooks import useToast from "hooks/use-toast"; // components import { EmailPasswordForm } from "./(auth)/components/email-password-form"; import { GithubLoginButton } from "./(auth)/components/github-login-button"; import { GoogleLoginButton } from "./(auth)/components/google-login"; import { EmailCodeForm } from "./(auth)/components/email-code-form"; const HomePage = () => { const { user: userStore } = useMobxStore(); const router = useRouter(); const searchParams = useSearchParams(); const { setToastAlert } = useToast(); const onSignInError = (error: any) => { setToastAlert({ title: "Error signing in!", type: "error", message: error?.error || "Something went wrong. Please try again later or contact the support team.", }); }; const onSignInSuccess = (response: any) => { const isOnboarded = response?.user?.onboarding_step?.profile_complete || false; const nextPath = searchParams?.get("next_path") || "/"; userStore.setCurrentUser(response?.user); if (!isOnboarded) { router.push(`/onboarding?next_path=${nextPath}`); return; } router.push(nextPath); }; const handleGoogleSignIn = async ({ clientId, credential }: any) => { try { if (clientId && credential) { const socialAuthPayload = { medium: "google", credential, clientId, }; const response = await authenticationService.socialAuth(socialAuthPayload); onSignInSuccess(response); } else { throw Error("Cant find credentials"); } } catch (err: any) { onSignInError(err); } }; 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); onSignInSuccess(response); } else { throw Error("Cant find credentials"); } } catch (err: any) { onSignInError(err); } }; const handlePasswordSignIn = async (formData: any) => { await authenticationService .emailLogin(formData) .then((response) => { try { if (response) { onSignInSuccess(response); } } catch (err: any) { onSignInError(err); } }) .catch((err) => onSignInError(err)); }; const handleEmailCodeSignIn = async (response: any) => { try { if (response) { onSignInSuccess(response); } } catch (err: any) { onSignInError(err); } }; return (
By signing up, you agree to the{" "} Terms & Conditions
) : null}