import React, { useState } from "react"; import { Controller, useForm } from "react-hook-form"; // services import { AuthService } from "services/auth.service"; // hooks import useToast from "hooks/use-toast"; import { useEventTracker } from "hooks/store"; // ui import { Button, Input } from "@plane/ui"; // helpers import { checkEmailValidity } from "helpers/string.helper"; // icons import { Eye, EyeOff } from "lucide-react"; import { PASSWORD_CREATE_SELECTED, PASSWORD_CREATE_SKIPPED } from "constants/event-tracker"; type Props = { email: string; handleSignInRedirection: () => Promise; }; type TCreatePasswordFormValues = { email: string; password: string; }; const defaultValues: TCreatePasswordFormValues = { email: "", password: "", }; // services const authService = new AuthService(); export const SignInOptionalSetPasswordForm: React.FC = (props) => { const { email, handleSignInRedirection } = props; // states const [isGoingToWorkspace, setIsGoingToWorkspace] = useState(false); const [showPassword, setShowPassword] = useState(false); // store hooks const { captureEvent } = useEventTracker(); // toast alert const { setToastAlert } = useToast(); // form info const { control, formState: { errors, isSubmitting, isValid }, handleSubmit, } = useForm({ 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.", }); captureEvent(PASSWORD_CREATE_SELECTED, { state: "SUCCESS", first_time: false, }); await handleSignInRedirection(); }) .catch((err) => { captureEvent(PASSWORD_CREATE_SELECTED, { state: "FAILED", first_time: false, }); setToastAlert({ type: "error", title: "Error!", message: err?.error ?? "Something went wrong. Please try again.", }); }); }; const handleGoToWorkspace = async () => { setIsGoingToWorkspace(true); await handleSignInRedirection().finally(() => { captureEvent(PASSWORD_CREATE_SKIPPED, { state: "SUCCESS", first_time: false, }); setIsGoingToWorkspace(false); }); }; return ( <>

Set your password

If you{"'"}d like to do away with codes, set a password here.

checkEmailValidity(value) || "Email is invalid", }} render={({ field: { value, onChange, ref } }) => ( )} />
(
{showPassword ? ( setShowPassword(false)} /> ) : ( setShowPassword(true)} /> )}
)} />

Whatever you choose now will be your account{"'"}s password until you change it.

); };