mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
44f8ba407d
* auth integration fixes * auth integration fixes * auth integration fixes * auth integration fixes * dev: update user api to return fallback workspace and improve the structure of the response * dev: fix the issue keyerror and move onboarding logic to serializer method field * dev: use-user-auth hook imlemented for route access validation and build issues resolved effected by user payload * fix: global theme color fix * style: new onboarding ui , fix: use-user-auth hook implemented * fix: command palette, project invite modal and issue detail page mutation type fix * fix: onboarding redirection fix * dev: build isuue resolved * fix: use user auth hook fix * fix: sign in toast alert fix, sign out redirection fix and user theme error fix * fix: user response fix * fix: unAuthorizedStatus logic updated --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: gurusainath <gurusainath007@gmail.com> Co-authored-by: anmolsinghbhatia <anmolsinghbhatia@caravel.tech>
117 lines
3.5 KiB
TypeScript
117 lines
3.5 KiB
TypeScript
import React from "react";
|
|
// next imports
|
|
import Image from "next/image";
|
|
// next types
|
|
import type { NextPage } from "next";
|
|
// layouts
|
|
import DefaultLayout from "layouts/default-layout";
|
|
// hooks
|
|
import useUserAuth from "hooks/use-user-auth";
|
|
import useToast from "hooks/use-toast";
|
|
// services
|
|
import authenticationService from "services/authentication.service";
|
|
// social auth buttons
|
|
import {
|
|
GoogleLoginButton,
|
|
GithubLoginButton,
|
|
EmailCodeForm,
|
|
EmailPasswordForm,
|
|
} from "components/account";
|
|
// ui
|
|
import { Spinner } from "components/ui";
|
|
// icons
|
|
import Logo from "public/logo.png";
|
|
|
|
const HomePage: NextPage = () => {
|
|
const { user, isLoading, mutateUser } = useUserAuth("sign-in");
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
const handleGoogleSignIn = async ({ clientId, credential }: any) => {
|
|
try {
|
|
if (clientId && credential) {
|
|
mutateUser(
|
|
await authenticationService.socialAuth({
|
|
medium: "google",
|
|
credential,
|
|
clientId,
|
|
})
|
|
);
|
|
} else {
|
|
throw Error("Cant find credentials");
|
|
}
|
|
} catch (error) {
|
|
console.log(error);
|
|
setToastAlert({
|
|
title: "Error signing in!",
|
|
type: "error",
|
|
message: "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) {
|
|
mutateUser(
|
|
await authenticationService.socialAuth({
|
|
medium: "github",
|
|
credential,
|
|
clientId: process.env.NEXT_PUBLIC_GITHUB_ID,
|
|
})
|
|
);
|
|
} else {
|
|
throw Error("Cant find credentials");
|
|
}
|
|
} catch (error) {
|
|
console.log(error);
|
|
setToastAlert({
|
|
title: "Error signing in!",
|
|
type: "error",
|
|
message: "Something went wrong. Please try again later or contact the support team.",
|
|
});
|
|
}
|
|
};
|
|
|
|
return (
|
|
<DefaultLayout>
|
|
{isLoading ? (
|
|
<div className="grid h-screen place-items-center">
|
|
<Spinner />
|
|
</div>
|
|
) : (
|
|
<div className="flex h-screen w-full items-center justify-center overflow-auto bg-gray-50">
|
|
<div className="flex min-h-full w-full flex-col justify-center py-12 px-6 lg:px-8">
|
|
<div className="flex flex-col gap-10 sm:mx-auto sm:w-full sm:max-w-md">
|
|
<div className="flex flex-col items-center justify-center gap-10">
|
|
<Image src={Logo} height={80} width={80} alt="Plane Web Logo" />
|
|
<div className="text-center text-xl font-medium text-black">
|
|
Sign In to your Plane Account
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex flex-col rounded-[10px] bg-white shadow-md">
|
|
{parseInt(process.env.NEXT_PUBLIC_ENABLE_OAUTH || "0") ? (
|
|
<>
|
|
<EmailCodeForm />
|
|
<div className="flex flex-col gap-3 py-5 px-5 border-t items-center justify-center border-gray-300 ">
|
|
<GoogleLoginButton handleSignIn={handleGoogleSignIn} />
|
|
<GithubLoginButton handleSignIn={handleGithubSignIn} />
|
|
</div>
|
|
</>
|
|
) : (
|
|
<>
|
|
<EmailPasswordForm />
|
|
</>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</DefaultLayout>
|
|
);
|
|
};
|
|
|
|
export default HomePage;
|