mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
4c2cb2368a
* chore: store various shades of accent color * refactor: custom theme selector * refactor: custom theme selector * chore: update custom theme input labels * fix: color generator function logic * fix: accent color preloaded data * chore: new theming structure * chore: update shades calculation logic * refactor: variable names * chore: update color scheming * chore: new color scheming * refactor: themes folder structure * chore: update classnames to the new ones * chore: update static colors * chore: sidebar link colors * chore: placeholder color * chore: update border classnames
84 lines
2.3 KiB
TypeScript
84 lines
2.3 KiB
TypeScript
import React from "react";
|
|
|
|
import Image from "next/image";
|
|
import { useRouter } from "next/router";
|
|
|
|
// services
|
|
import authenticationService from "services/authentication.service";
|
|
// hooks
|
|
import useUserAuth from "hooks/use-user-auth";
|
|
import useToast from "hooks/use-toast";
|
|
// layouts
|
|
import DefaultLayout from "layouts/default-layout";
|
|
// components
|
|
import { EmailPasswordForm } from "components/account";
|
|
// images
|
|
import Logo from "public/logo.png";
|
|
// types
|
|
import type { NextPage } from "next";
|
|
type EmailPasswordFormValues = {
|
|
email: string;
|
|
password?: string;
|
|
medium?: string;
|
|
};
|
|
|
|
const SignUp: NextPage = () => {
|
|
const router = useRouter();
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
const { mutateUser } = useUserAuth("sign-in");
|
|
|
|
const handleSignUp = async (formData: EmailPasswordFormValues) => {
|
|
const payload = {
|
|
email: formData.email,
|
|
password: formData.password ?? "",
|
|
};
|
|
|
|
await authenticationService
|
|
.emailSignUp(payload)
|
|
.then(async (response) => {
|
|
setToastAlert({
|
|
type: "success",
|
|
title: "Success!",
|
|
message: "Account created successfully.",
|
|
});
|
|
|
|
if (response) await mutateUser();
|
|
router.push("/");
|
|
})
|
|
.catch((err) =>
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message:
|
|
err?.error ||
|
|
"Something went wrong. Please try again later or contact the support team.",
|
|
})
|
|
);
|
|
};
|
|
|
|
return (
|
|
<DefaultLayout>
|
|
<div className="flex h-screen w-full items-center justify-center overflow-auto">
|
|
<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-custom-text-100">
|
|
Create a new Plane Account
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex flex-col rounded-[10px] bg-custom-background-100 shadow-md">
|
|
<EmailPasswordForm onSubmit={handleSignUp} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</DefaultLayout>
|
|
);
|
|
};
|
|
|
|
export default SignUp;
|