mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
134 lines
3.8 KiB
TypeScript
134 lines
3.8 KiB
TypeScript
|
import React from "react";
|
||
|
import { Controller, useForm } from "react-hook-form";
|
||
|
// services
|
||
|
import { AuthService } from "services/auth.service";
|
||
|
// hooks
|
||
|
import useToast from "hooks/use-toast";
|
||
|
// ui
|
||
|
import { Button, Input } from "@plane/ui";
|
||
|
// helpers
|
||
|
import { checkEmailValidity } from "helpers/string.helper";
|
||
|
// constants
|
||
|
import { ESignInSteps } from "components/account";
|
||
|
|
||
|
type Props = {
|
||
|
email: string;
|
||
|
handleStepChange: (step: ESignInSteps) => void;
|
||
|
handleSignInRedirection: () => Promise<void>;
|
||
|
};
|
||
|
|
||
|
type TCreatePasswordFormValues = {
|
||
|
email: string;
|
||
|
password: string;
|
||
|
};
|
||
|
|
||
|
const defaultValues: TCreatePasswordFormValues = {
|
||
|
email: "",
|
||
|
password: "",
|
||
|
};
|
||
|
|
||
|
// services
|
||
|
const authService = new AuthService();
|
||
|
|
||
|
export const CreatePasswordForm: React.FC<Props> = (props) => {
|
||
|
const { email, handleSignInRedirection } = props;
|
||
|
// toast alert
|
||
|
const { setToastAlert } = useToast();
|
||
|
// form info
|
||
|
const {
|
||
|
control,
|
||
|
formState: { errors, isSubmitting, isValid },
|
||
|
handleSubmit,
|
||
|
} = useForm<TCreatePasswordFormValues>({
|
||
|
defaultValues: {
|
||
|
...defaultValues,
|
||
|
email,
|
||
|
},
|
||
|
mode: "onChange",
|
||
|
reValidateMode: "onChange",
|
||
|
});
|
||
|
|
||
|
const handleCreatePassword = async (formData: TCreatePasswordFormValues) => {
|
||
|
const payload = {
|
||
|
password: formData.password,
|
||
|
};
|
||
|
|
||
|
await authService
|
||
|
.setPassword(payload)
|
||
|
.then(async () => {
|
||
|
setToastAlert({
|
||
|
type: "success",
|
||
|
title: "Success!",
|
||
|
message: "Password created successfully.",
|
||
|
});
|
||
|
await handleSignInRedirection();
|
||
|
})
|
||
|
.catch((err) =>
|
||
|
setToastAlert({
|
||
|
type: "error",
|
||
|
title: "Error!",
|
||
|
message: err?.error ?? "Something went wrong. Please try again.",
|
||
|
})
|
||
|
);
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<h1 className="text-center text-2xl sm:text-2.5xl font-semibold text-onboarding-text-100">
|
||
|
Let{"'"}s get a new password
|
||
|
</h1>
|
||
|
|
||
|
<form onSubmit={handleSubmit(handleCreatePassword)} className="mt-11 sm:w-96 mx-auto space-y-4">
|
||
|
<Controller
|
||
|
control={control}
|
||
|
name="email"
|
||
|
rules={{
|
||
|
required: "Email is required",
|
||
|
validate: (value) => checkEmailValidity(value) || "Email is invalid",
|
||
|
}}
|
||
|
render={({ field: { value, onChange, ref } }) => (
|
||
|
<Input
|
||
|
id="email"
|
||
|
name="email"
|
||
|
type="email"
|
||
|
value={value}
|
||
|
onChange={onChange}
|
||
|
ref={ref}
|
||
|
hasError={Boolean(errors.email)}
|
||
|
placeholder="orville.wright@firstflight.com"
|
||
|
className="w-full h-[46px] text-onboarding-text-400 border border-onboarding-border-100 pr-12"
|
||
|
disabled
|
||
|
/>
|
||
|
)}
|
||
|
/>
|
||
|
<div>
|
||
|
<Controller
|
||
|
control={control}
|
||
|
name="password"
|
||
|
rules={{
|
||
|
required: "Password is required",
|
||
|
}}
|
||
|
render={({ field: { value, onChange, ref } }) => (
|
||
|
<Input
|
||
|
type="password"
|
||
|
value={value}
|
||
|
onChange={onChange}
|
||
|
ref={ref}
|
||
|
hasError={Boolean(errors.password)}
|
||
|
placeholder="Create password"
|
||
|
className="w-full h-[46px] placeholder:text-onboarding-text-400 border border-onboarding-border-100 pr-12"
|
||
|
/>
|
||
|
)}
|
||
|
/>
|
||
|
<p className="text-xs text-onboarding-text-200 mt-3">
|
||
|
Whatever you choose now will be your account{"'"}s password until you change it.
|
||
|
</p>
|
||
|
</div>
|
||
|
<Button type="submit" variant="primary" className="w-full" size="xl" disabled={!isValid} loading={isSubmitting}>
|
||
|
{isSubmitting ? "Submitting..." : "Go to workspace"}
|
||
|
</Button>
|
||
|
</form>
|
||
|
</>
|
||
|
);
|
||
|
};
|