import { useState, useEffect, useCallback } from "react"; import { observer } from "mobx-react-lite"; import Image from "next/image"; import { useTheme } from "next-themes"; import { useRouter } from "next/router"; import { Lightbulb } from "lucide-react"; // hooks import useToast from "hooks/use-toast"; import { useMobxStore } from "lib/mobx/store-provider"; // services import { AuthService } from "services/auth.service"; // components import { GoogleLoginButton, GithubLoginButton, EmailCodeForm, EmailPasswordForm, EmailPasswordFormValues, } from "components/account"; // ui import { Loader, Spinner } from "@plane/ui"; // images import BluePlaneLogoWithoutText from "public/plane-logos/blue-without-text.png"; import signInIssues from "public/onboarding/onboarding-issues.svg"; // types import { IUser, IUserSettings } from "types"; export type AuthType = "sign-in" | "sign-up"; const authService = new AuthService(); export const SignInView = observer(() => { // store const { user: { fetchCurrentUser, fetchCurrentUserSettings }, appConfig: { envConfig }, } = useMobxStore(); // router const router = useRouter(); const { next: next_url } = router.query as { next: string }; // states const [isLoading, setLoading] = useState(false); const [authType, setAuthType] = useState("sign-in"); // toast const { setToastAlert } = useToast(); const { resolvedTheme } = useTheme(); // computed. const enableEmailPassword = envConfig && (envConfig?.email_password_login || !( envConfig?.email_password_login || envConfig?.magic_login || envConfig?.google_client_id || envConfig?.github_client_id )); const handleLoginRedirection = useCallback( (user: IUser) => { // if the user is not onboarded, redirect them to the onboarding page if (!user.is_onboarded) { router.push("/onboarding"); return; } // if next_url is provided, redirect the user to that url if (next_url) { router.push(next_url); return; } // if the user is onboarded, fetch their last workspace details fetchCurrentUserSettings() .then((userSettings: IUserSettings) => { const workspaceSlug = userSettings?.workspace?.last_workspace_slug || userSettings?.workspace?.fallback_workspace_slug; if (workspaceSlug) router.push(`/${workspaceSlug}`); else router.push("/profile"); }) .catch(() => { setLoading(false); }); }, [fetchCurrentUserSettings, router, next_url] ); const mutateUserInfo = useCallback(() => { fetchCurrentUser().then((user) => { handleLoginRedirection(user); }); }, [fetchCurrentUser, handleLoginRedirection]); useEffect(() => { mutateUserInfo(); }, [mutateUserInfo]); const handleGoogleSignIn = async ({ clientId, credential }: any) => { try { setLoading(true); if (clientId && credential) { const socialAuthPayload = { medium: "google", credential, clientId, }; const response = await authService.socialAuth(socialAuthPayload); if (response) { mutateUserInfo(); } } else { setLoading(false); throw Error("Cant find credentials"); } } catch (err: any) { setLoading(false); 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 { setLoading(true); if (envConfig && envConfig.github_client_id && credential) { const socialAuthPayload = { medium: "github", credential, clientId: envConfig.github_client_id, }; const response = await authService.socialAuth(socialAuthPayload); if (response) { mutateUserInfo(); } } else { setLoading(false); throw Error("Cant find credentials"); } } catch (err: any) { setLoading(false); setToastAlert({ title: "Error signing in!", type: "error", message: err?.error || "Something went wrong. Please try again later or contact the support team.", }); } }; const handlePasswordSignIn = (formData: EmailPasswordFormValues) => { setLoading(true); return authService .emailLogin(formData) .then(() => { mutateUserInfo(); }) .catch((err) => { setLoading(false); 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 { setLoading(true); if (response) { mutateUserInfo(); } } catch (err: any) { setLoading(false); setToastAlert({ type: "error", title: "Error!", message: err?.error || "Something went wrong. Please try again later or contact the support team.", }); } }; return ( <> {isLoading ? (
) : (
Plane Logo Plane
{/*
{authType === "sign-in" && (
New to Plane?{" "}

{ setAuthType("sign-up"); }} > Create a new account

)}
*/}
{!envConfig ? (
) : ( <> <> {enableEmailPassword && } {envConfig?.magic_login && (
)}

Or continue with


{envConfig?.google_client_id && ( )} {envConfig?.github_client_id && ( )}
{/* {authType === "sign-up" && (
Already using Plane?{" "} { setAuthType("sign-in"); }} > Sign in
)} */}

Try the latest features, like Tiptap editor, to write compelling responses.{" "} {}}> See new features

Plane Issues
)}
)} ); });