2024-06-10 09:43:10 +00:00
|
|
|
|
"use client";
|
|
|
|
|
|
2024-05-08 17:31:20 +00:00
|
|
|
|
import React, { useMemo, useState } from "react";
|
|
|
|
|
import { observer } from "mobx-react";
|
|
|
|
|
import Image from "next/image";
|
|
|
|
|
import { useTheme } from "next-themes";
|
|
|
|
|
import { Controller, useForm } from "react-hook-form";
|
|
|
|
|
import { Eye, EyeOff } from "lucide-react";
|
|
|
|
|
// types
|
|
|
|
|
import { IUser, TUserProfile, TOnboardingSteps } from "@plane/types";
|
|
|
|
|
// ui
|
|
|
|
|
import { Button, Input, Spinner, TOAST_TYPE, setToast } from "@plane/ui";
|
|
|
|
|
// components
|
|
|
|
|
import { PasswordStrengthMeter } from "@/components/account";
|
|
|
|
|
import { UserImageUploadModal } from "@/components/core";
|
2024-05-23 11:15:23 +00:00
|
|
|
|
import { OnboardingHeader, SwitchAccountDropdown } from "@/components/onboarding";
|
2024-05-08 17:31:20 +00:00
|
|
|
|
// constants
|
|
|
|
|
import { USER_DETAILS } from "@/constants/event-tracker";
|
|
|
|
|
// helpers
|
|
|
|
|
import { getPasswordStrength } from "@/helpers/password.helper";
|
|
|
|
|
// hooks
|
|
|
|
|
import { useEventTracker, useUser, useUserProfile } from "@/hooks/store";
|
|
|
|
|
// services
|
|
|
|
|
import { AuthService } from "@/services/auth.service";
|
|
|
|
|
import { FileService } from "@/services/file.service";
|
|
|
|
|
// assets
|
|
|
|
|
import ProfileSetupDark from "public/onboarding/profile-setup-dark.svg";
|
|
|
|
|
import ProfileSetupLight from "public/onboarding/profile-setup-light.svg";
|
|
|
|
|
import UserPersonalizationDark from "public/onboarding/user-personalization-dark.svg";
|
|
|
|
|
import UserPersonalizationLight from "public/onboarding/user-personalization-light.svg";
|
|
|
|
|
|
|
|
|
|
type TProfileSetupFormValues = {
|
|
|
|
|
first_name: string;
|
|
|
|
|
last_name: string;
|
|
|
|
|
avatar?: string | null;
|
|
|
|
|
password?: string;
|
|
|
|
|
confirm_password?: string;
|
|
|
|
|
role?: string;
|
|
|
|
|
use_case?: string;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const defaultValues: Partial<TProfileSetupFormValues> = {
|
|
|
|
|
first_name: "",
|
|
|
|
|
last_name: "",
|
|
|
|
|
avatar: "",
|
|
|
|
|
password: undefined,
|
|
|
|
|
confirm_password: undefined,
|
|
|
|
|
role: undefined,
|
|
|
|
|
use_case: undefined,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
|
user?: IUser;
|
|
|
|
|
totalSteps: number;
|
|
|
|
|
stepChange: (steps: Partial<TOnboardingSteps>) => Promise<void>;
|
|
|
|
|
finishOnboarding: () => Promise<void>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum EProfileSetupSteps {
|
|
|
|
|
ALL = "ALL",
|
|
|
|
|
USER_DETAILS = "USER_DETAILS",
|
|
|
|
|
USER_PERSONALIZATION = "USER_PERSONALIZATION",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const USER_ROLE = ["Individual contributor", "Senior Leader", "Manager", "Executive", "Freelancer", "Student"];
|
|
|
|
|
|
|
|
|
|
const USER_DOMAIN = [
|
|
|
|
|
"Engineering",
|
|
|
|
|
"Product",
|
|
|
|
|
"Marketing",
|
|
|
|
|
"Sales",
|
|
|
|
|
"Operations",
|
|
|
|
|
"Legal",
|
|
|
|
|
"Finance",
|
|
|
|
|
"Human Resources",
|
|
|
|
|
"Project",
|
|
|
|
|
"Other",
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
const fileService = new FileService();
|
|
|
|
|
const authService = new AuthService();
|
|
|
|
|
|
|
|
|
|
export const ProfileSetup: React.FC<Props> = observer((props) => {
|
|
|
|
|
const { user, totalSteps, stepChange, finishOnboarding } = props;
|
|
|
|
|
// states
|
|
|
|
|
const [profileSetupStep, setProfileSetupStep] = useState<EProfileSetupSteps>(
|
|
|
|
|
user?.is_password_autoset ? EProfileSetupSteps.USER_DETAILS : EProfileSetupSteps.ALL
|
|
|
|
|
);
|
|
|
|
|
const [isRemoving, setIsRemoving] = useState(false);
|
|
|
|
|
const [isImageUploadModalOpen, setIsImageUploadModalOpen] = useState(false);
|
|
|
|
|
const [isPasswordInputFocused, setIsPasswordInputFocused] = useState(false);
|
2024-05-17 10:21:34 +00:00
|
|
|
|
const [showPassword, setShowPassword] = useState({
|
|
|
|
|
password: false,
|
|
|
|
|
retypePassword: false,
|
|
|
|
|
});
|
2024-05-08 17:31:20 +00:00
|
|
|
|
// hooks
|
|
|
|
|
const { resolvedTheme } = useTheme();
|
|
|
|
|
// store hooks
|
|
|
|
|
const { updateCurrentUser } = useUser();
|
|
|
|
|
const { updateUserProfile } = useUserProfile();
|
|
|
|
|
const { captureEvent } = useEventTracker();
|
|
|
|
|
// form info
|
|
|
|
|
const {
|
|
|
|
|
getValues,
|
|
|
|
|
handleSubmit,
|
|
|
|
|
control,
|
|
|
|
|
watch,
|
|
|
|
|
setValue,
|
|
|
|
|
formState: { errors, isSubmitting, isValid },
|
|
|
|
|
} = useForm<TProfileSetupFormValues>({
|
|
|
|
|
defaultValues: {
|
|
|
|
|
...defaultValues,
|
|
|
|
|
first_name: user?.first_name,
|
|
|
|
|
last_name: user?.last_name,
|
|
|
|
|
avatar: user?.avatar,
|
|
|
|
|
},
|
|
|
|
|
mode: "onChange",
|
|
|
|
|
});
|
|
|
|
|
|
2024-05-17 10:21:34 +00:00
|
|
|
|
const handleShowPassword = (key: keyof typeof showPassword) =>
|
|
|
|
|
setShowPassword((prev) => ({ ...prev, [key]: !prev[key] }));
|
|
|
|
|
|
2024-05-08 17:31:20 +00:00
|
|
|
|
const handleSetPassword = async (password: string) => {
|
|
|
|
|
const token = await authService.requestCSRFToken().then((data) => data?.csrf_token);
|
|
|
|
|
await authService.setPassword(token, { password });
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleSubmitProfileSetup = async (formData: TProfileSetupFormValues) => {
|
|
|
|
|
const userDetailsPayload: Partial<IUser> = {
|
|
|
|
|
first_name: formData.first_name,
|
|
|
|
|
last_name: formData.last_name,
|
|
|
|
|
avatar: formData.avatar,
|
|
|
|
|
};
|
|
|
|
|
const profileUpdatePayload: Partial<TUserProfile> = {
|
|
|
|
|
use_case: formData.use_case,
|
|
|
|
|
role: formData.role,
|
|
|
|
|
};
|
|
|
|
|
try {
|
|
|
|
|
await Promise.all([
|
|
|
|
|
updateCurrentUser(userDetailsPayload),
|
|
|
|
|
updateUserProfile(profileUpdatePayload),
|
|
|
|
|
totalSteps > 2 && stepChange({ profile_complete: true }),
|
|
|
|
|
]);
|
|
|
|
|
captureEvent(USER_DETAILS, {
|
|
|
|
|
state: "SUCCESS",
|
|
|
|
|
element: "Onboarding",
|
|
|
|
|
});
|
|
|
|
|
setToast({
|
|
|
|
|
type: TOAST_TYPE.SUCCESS,
|
|
|
|
|
title: "Success",
|
|
|
|
|
message: "Profile setup completed!",
|
|
|
|
|
});
|
|
|
|
|
// For Invited Users, they will skip all other steps and finish onboarding.
|
|
|
|
|
if (totalSteps <= 2) {
|
|
|
|
|
finishOnboarding();
|
|
|
|
|
}
|
|
|
|
|
} catch {
|
|
|
|
|
captureEvent(USER_DETAILS, {
|
|
|
|
|
state: "FAILED",
|
|
|
|
|
element: "Onboarding",
|
|
|
|
|
});
|
|
|
|
|
setToast({
|
|
|
|
|
type: TOAST_TYPE.ERROR,
|
|
|
|
|
title: "Error",
|
|
|
|
|
message: "Profile setup failed. Please try again!",
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleSubmitUserDetail = async (formData: TProfileSetupFormValues) => {
|
|
|
|
|
const userDetailsPayload: Partial<IUser> = {
|
|
|
|
|
first_name: formData.first_name,
|
|
|
|
|
last_name: formData.last_name,
|
|
|
|
|
avatar: formData.avatar,
|
|
|
|
|
};
|
|
|
|
|
try {
|
|
|
|
|
await Promise.all([
|
|
|
|
|
updateCurrentUser(userDetailsPayload),
|
|
|
|
|
formData.password && handleSetPassword(formData.password),
|
|
|
|
|
]).then(() => setProfileSetupStep(EProfileSetupSteps.USER_PERSONALIZATION));
|
|
|
|
|
} catch {
|
|
|
|
|
captureEvent(USER_DETAILS, {
|
|
|
|
|
state: "FAILED",
|
|
|
|
|
element: "Onboarding",
|
|
|
|
|
});
|
|
|
|
|
setToast({
|
|
|
|
|
type: TOAST_TYPE.ERROR,
|
|
|
|
|
title: "Error",
|
|
|
|
|
message: "User details update failed. Please try again!",
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleSubmitUserPersonalization = async (formData: TProfileSetupFormValues) => {
|
|
|
|
|
const profileUpdatePayload: Partial<TUserProfile> = {
|
|
|
|
|
use_case: formData.use_case,
|
|
|
|
|
role: formData.role,
|
|
|
|
|
};
|
|
|
|
|
try {
|
|
|
|
|
await Promise.all([
|
|
|
|
|
updateUserProfile(profileUpdatePayload),
|
|
|
|
|
totalSteps > 2 && stepChange({ profile_complete: true }),
|
|
|
|
|
]);
|
|
|
|
|
captureEvent(USER_DETAILS, {
|
|
|
|
|
state: "SUCCESS",
|
|
|
|
|
element: "Onboarding",
|
|
|
|
|
});
|
|
|
|
|
setToast({
|
|
|
|
|
type: TOAST_TYPE.SUCCESS,
|
|
|
|
|
title: "Success",
|
|
|
|
|
message: "Profile setup completed!",
|
|
|
|
|
});
|
|
|
|
|
// For Invited Users, they will skip all other steps and finish onboarding.
|
|
|
|
|
if (totalSteps <= 2) {
|
|
|
|
|
finishOnboarding();
|
|
|
|
|
}
|
|
|
|
|
} catch {
|
|
|
|
|
captureEvent(USER_DETAILS, {
|
|
|
|
|
state: "FAILED",
|
|
|
|
|
element: "Onboarding",
|
|
|
|
|
});
|
|
|
|
|
setToast({
|
|
|
|
|
type: TOAST_TYPE.ERROR,
|
|
|
|
|
title: "Error",
|
|
|
|
|
message: "Profile setup failed. Please try again!",
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const onSubmit = async (formData: TProfileSetupFormValues) => {
|
|
|
|
|
if (!user) return;
|
|
|
|
|
if (profileSetupStep === EProfileSetupSteps.ALL) await handleSubmitProfileSetup(formData);
|
|
|
|
|
if (profileSetupStep === EProfileSetupSteps.USER_DETAILS) await handleSubmitUserDetail(formData);
|
|
|
|
|
if (profileSetupStep === EProfileSetupSteps.USER_PERSONALIZATION) await handleSubmitUserPersonalization(formData);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleDelete = (url: string | null | undefined) => {
|
|
|
|
|
if (!url) return;
|
|
|
|
|
|
|
|
|
|
setIsRemoving(true);
|
|
|
|
|
fileService.deleteUserFile(url).finally(() => {
|
|
|
|
|
setValue("avatar", "");
|
|
|
|
|
setIsRemoving(false);
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const isPasswordAlreadySetup = !user?.is_password_autoset;
|
|
|
|
|
const isSignUpUsingMagicCode = user?.last_login_medium === "magic-code";
|
|
|
|
|
|
|
|
|
|
const password = watch("password");
|
|
|
|
|
const confirmPassword = watch("confirm_password");
|
|
|
|
|
const isValidPassword = (password: string, confirmPassword?: string) =>
|
|
|
|
|
getPasswordStrength(password) >= 3 && password === confirmPassword;
|
|
|
|
|
|
|
|
|
|
// Check for all available fields validation and if password field is available, then checks for password validation (strength + confirmation).
|
|
|
|
|
// Also handles the condition for optional password i.e if password field is optional it only checks for above validation if it's not empty.
|
|
|
|
|
const isButtonDisabled = useMemo(
|
|
|
|
|
() =>
|
|
|
|
|
!isSubmitting &&
|
|
|
|
|
isValid &&
|
|
|
|
|
(isPasswordAlreadySetup
|
|
|
|
|
? true
|
|
|
|
|
: isSignUpUsingMagicCode
|
|
|
|
|
? !!password && isValidPassword(password, confirmPassword)
|
|
|
|
|
: !!password
|
|
|
|
|
? isValidPassword(password, confirmPassword)
|
|
|
|
|
: true)
|
|
|
|
|
? false
|
|
|
|
|
: true,
|
|
|
|
|
[isSubmitting, isValid, isPasswordAlreadySetup, isSignUpUsingMagicCode, password, confirmPassword]
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const isCurrentStepUserPersonalization = profileSetupStep === EProfileSetupSteps.USER_PERSONALIZATION;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="flex h-full w-full">
|
|
|
|
|
<div className="w-full h-full overflow-auto px-6 py-10 sm:px-7 sm:py-14 md:px-14 lg:px-28">
|
|
|
|
|
<div className="flex items-center justify-between">
|
|
|
|
|
<OnboardingHeader currentStep={isCurrentStepUserPersonalization ? 2 : 1} totalSteps={totalSteps} />
|
|
|
|
|
<div className="shrink-0 lg:hidden">
|
2024-05-23 11:15:23 +00:00
|
|
|
|
<SwitchAccountDropdown fullName={`${watch("first_name")} ${watch("last_name")}`} />
|
2024-05-08 17:31:20 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="flex flex-col w-full items-center justify-center p-8 mt-6">
|
|
|
|
|
<div className="text-center space-y-1 py-4 mx-auto">
|
|
|
|
|
<h3 className="text-3xl font-bold text-onboarding-text-100">
|
|
|
|
|
{isCurrentStepUserPersonalization
|
|
|
|
|
? `Looking good${user?.first_name && `, ${user.first_name}`}!`
|
|
|
|
|
: "Welcome to Plane!"}
|
|
|
|
|
</h3>
|
|
|
|
|
<p className="font-medium text-onboarding-text-400">
|
|
|
|
|
{isCurrentStepUserPersonalization
|
|
|
|
|
? "Let’s personalize Plane for you."
|
|
|
|
|
: "Let’s setup your profile, tell us a bit about yourself."}
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<form onSubmit={handleSubmit(onSubmit)} className="w-full mx-auto mt-2 space-y-4 sm:w-96">
|
|
|
|
|
{profileSetupStep !== EProfileSetupSteps.USER_PERSONALIZATION && (
|
|
|
|
|
<>
|
|
|
|
|
<Controller
|
|
|
|
|
control={control}
|
|
|
|
|
name="avatar"
|
|
|
|
|
render={({ field: { onChange, value } }) => (
|
|
|
|
|
<UserImageUploadModal
|
|
|
|
|
isOpen={isImageUploadModalOpen}
|
|
|
|
|
onClose={() => setIsImageUploadModalOpen(false)}
|
|
|
|
|
isRemoving={isRemoving}
|
|
|
|
|
handleDelete={() => handleDelete(getValues("avatar"))}
|
|
|
|
|
onSuccess={(url) => {
|
|
|
|
|
onChange(url);
|
|
|
|
|
setIsImageUploadModalOpen(false);
|
|
|
|
|
}}
|
|
|
|
|
value={value && value.trim() !== "" ? value : null}
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
/>
|
|
|
|
|
<div className="space-y-1 flex items-center justify-center">
|
|
|
|
|
<button type="button" onClick={() => setIsImageUploadModalOpen(true)}>
|
|
|
|
|
{!watch("avatar") || watch("avatar") === "" ? (
|
|
|
|
|
<div className="flex flex-col items-center justify-between">
|
|
|
|
|
<div className="relative h-14 w-14 overflow-hidden">
|
|
|
|
|
<div className="absolute left-0 top-0 flex items-center justify-center h-full w-full rounded-full text-white text-3xl font-medium bg-[#9747FF] uppercase">
|
|
|
|
|
{watch("first_name")[0] ?? "R"}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="pt-1 text-sm font-medium text-custom-primary-300 hover:text-custom-primary-400">
|
|
|
|
|
Choose image
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
) : (
|
|
|
|
|
<div className="relative mr-3 h-16 w-16 overflow-hidden">
|
|
|
|
|
<img
|
|
|
|
|
src={watch("avatar") || undefined}
|
|
|
|
|
className="absolute left-0 top-0 h-full w-full rounded-full object-cover"
|
|
|
|
|
onClick={() => setIsImageUploadModalOpen(true)}
|
|
|
|
|
alt={user?.display_name}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="grid grid-cols-1 sm:grid-cols-2 gap-4">
|
|
|
|
|
<div className="space-y-1">
|
2024-05-10 12:00:38 +00:00
|
|
|
|
<label
|
|
|
|
|
className="text-sm text-onboarding-text-300 font-medium after:content-['*'] after:ml-0.5 after:text-red-500"
|
|
|
|
|
htmlFor="first_name"
|
|
|
|
|
>
|
2024-05-08 17:31:20 +00:00
|
|
|
|
First name
|
|
|
|
|
</label>
|
|
|
|
|
<Controller
|
|
|
|
|
control={control}
|
|
|
|
|
name="first_name"
|
|
|
|
|
rules={{
|
|
|
|
|
required: "First name is required",
|
|
|
|
|
maxLength: {
|
|
|
|
|
value: 24,
|
|
|
|
|
message: "First name must be within 24 characters.",
|
|
|
|
|
},
|
|
|
|
|
}}
|
|
|
|
|
render={({ field: { value, onChange, ref } }) => (
|
|
|
|
|
<Input
|
|
|
|
|
id="first_name"
|
|
|
|
|
name="first_name"
|
|
|
|
|
type="text"
|
|
|
|
|
value={value}
|
|
|
|
|
autoFocus
|
|
|
|
|
onChange={onChange}
|
|
|
|
|
ref={ref}
|
|
|
|
|
hasError={Boolean(errors.first_name)}
|
|
|
|
|
placeholder="Wilbur"
|
|
|
|
|
className="w-full border-onboarding-border-100"
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
/>
|
|
|
|
|
{errors.first_name && <span className="text-sm text-red-500">{errors.first_name.message}</span>}
|
|
|
|
|
</div>
|
|
|
|
|
<div className="space-y-1">
|
2024-05-10 12:00:38 +00:00
|
|
|
|
<label
|
|
|
|
|
className="text-sm text-onboarding-text-300 font-medium after:content-['*'] after:ml-0.5 after:text-red-500"
|
|
|
|
|
htmlFor="last_name"
|
|
|
|
|
>
|
2024-05-08 17:31:20 +00:00
|
|
|
|
Last name
|
|
|
|
|
</label>
|
|
|
|
|
<Controller
|
|
|
|
|
control={control}
|
|
|
|
|
name="last_name"
|
|
|
|
|
rules={{
|
|
|
|
|
required: "Last name is required",
|
|
|
|
|
maxLength: {
|
|
|
|
|
value: 24,
|
|
|
|
|
message: "Last name must be within 24 characters.",
|
|
|
|
|
},
|
|
|
|
|
}}
|
|
|
|
|
render={({ field: { value, onChange, ref } }) => (
|
|
|
|
|
<Input
|
|
|
|
|
id="last_name"
|
|
|
|
|
name="last_name"
|
|
|
|
|
type="text"
|
|
|
|
|
value={value}
|
|
|
|
|
onChange={onChange}
|
|
|
|
|
ref={ref}
|
|
|
|
|
hasError={Boolean(errors.last_name)}
|
|
|
|
|
placeholder="Wright"
|
|
|
|
|
className="w-full border-onboarding-border-100"
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
/>
|
|
|
|
|
{errors.last_name && <span className="text-sm text-red-500">{errors.last_name.message}</span>}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{!isPasswordAlreadySetup && (
|
|
|
|
|
<div className="space-y-1">
|
|
|
|
|
<label className="text-sm text-onboarding-text-300 font-medium" htmlFor="password">
|
|
|
|
|
Set a password{" "}
|
|
|
|
|
{!isSignUpUsingMagicCode && <span className="text-onboarding-text-400">(optional)</span>}
|
|
|
|
|
</label>
|
|
|
|
|
<Controller
|
|
|
|
|
control={control}
|
|
|
|
|
name="password"
|
|
|
|
|
rules={{
|
|
|
|
|
required: isSignUpUsingMagicCode ? "Password is required" : false,
|
|
|
|
|
}}
|
|
|
|
|
render={({ field: { value, onChange, ref } }) => (
|
|
|
|
|
<div className="relative flex items-center rounded-md">
|
|
|
|
|
<Input
|
2024-05-17 10:21:34 +00:00
|
|
|
|
type={showPassword.password ? "text" : "password"}
|
2024-05-08 17:31:20 +00:00
|
|
|
|
name="password"
|
|
|
|
|
value={value}
|
|
|
|
|
onChange={onChange}
|
|
|
|
|
ref={ref}
|
|
|
|
|
hasError={Boolean(errors.password)}
|
|
|
|
|
placeholder="New password..."
|
|
|
|
|
className="w-full border-[0.5px] border-onboarding-border-100 pr-12 placeholder:text-onboarding-text-400"
|
|
|
|
|
onFocus={() => setIsPasswordInputFocused(true)}
|
|
|
|
|
onBlur={() => setIsPasswordInputFocused(false)}
|
|
|
|
|
/>
|
2024-05-17 10:21:34 +00:00
|
|
|
|
{showPassword.password ? (
|
2024-05-08 17:31:20 +00:00
|
|
|
|
<EyeOff
|
|
|
|
|
className="absolute right-3 h-4 w-4 stroke-custom-text-400 hover:cursor-pointer"
|
2024-05-17 10:21:34 +00:00
|
|
|
|
onClick={() => handleShowPassword("password")}
|
2024-05-08 17:31:20 +00:00
|
|
|
|
/>
|
|
|
|
|
) : (
|
|
|
|
|
<Eye
|
|
|
|
|
className="absolute right-3 h-4 w-4 stroke-custom-text-400 hover:cursor-pointer"
|
2024-05-17 10:21:34 +00:00
|
|
|
|
onClick={() => handleShowPassword("password")}
|
2024-05-08 17:31:20 +00:00
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
/>
|
|
|
|
|
{isPasswordInputFocused && <PasswordStrengthMeter password={watch("password") ?? ""} />}
|
|
|
|
|
{errors.password && <span className="text-sm text-red-500">{errors.password.message}</span>}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
{!isPasswordAlreadySetup && (
|
|
|
|
|
<div className="space-y-1">
|
|
|
|
|
<label className="text-sm text-onboarding-text-300 font-medium" htmlFor="confirm_password">
|
|
|
|
|
Confirm password
|
|
|
|
|
</label>
|
|
|
|
|
<Controller
|
|
|
|
|
control={control}
|
|
|
|
|
name="confirm_password"
|
|
|
|
|
rules={{
|
|
|
|
|
validate: (value) => value === password || "Passwords don't match",
|
|
|
|
|
}}
|
|
|
|
|
render={({ field: { value, onChange, ref } }) => (
|
|
|
|
|
<div className="relative flex items-center rounded-md">
|
|
|
|
|
<Input
|
2024-05-17 10:21:34 +00:00
|
|
|
|
type={showPassword.retypePassword ? "text" : "password"}
|
2024-05-08 17:31:20 +00:00
|
|
|
|
name="confirm_password"
|
|
|
|
|
value={value}
|
|
|
|
|
onChange={onChange}
|
|
|
|
|
ref={ref}
|
|
|
|
|
hasError={Boolean(errors.password)}
|
|
|
|
|
placeholder="Confirm password..."
|
|
|
|
|
className="w-full border-onboarding-border-100 pr-12 placeholder:text-onboarding-text-400"
|
|
|
|
|
/>
|
2024-05-17 10:21:34 +00:00
|
|
|
|
{showPassword.retypePassword ? (
|
2024-05-08 17:31:20 +00:00
|
|
|
|
<EyeOff
|
|
|
|
|
className="absolute right-3 h-4 w-4 stroke-custom-text-400 hover:cursor-pointer"
|
2024-05-17 10:21:34 +00:00
|
|
|
|
onClick={() => handleShowPassword("retypePassword")}
|
2024-05-08 17:31:20 +00:00
|
|
|
|
/>
|
|
|
|
|
) : (
|
|
|
|
|
<Eye
|
|
|
|
|
className="absolute right-3 h-4 w-4 stroke-custom-text-400 hover:cursor-pointer"
|
2024-05-17 10:21:34 +00:00
|
|
|
|
onClick={() => handleShowPassword("retypePassword")}
|
2024-05-08 17:31:20 +00:00
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
/>
|
|
|
|
|
{errors.confirm_password && (
|
|
|
|
|
<span className="text-sm text-red-500">{errors.confirm_password.message}</span>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</>
|
|
|
|
|
)}
|
|
|
|
|
{profileSetupStep !== EProfileSetupSteps.USER_DETAILS && (
|
|
|
|
|
<>
|
|
|
|
|
<div className="space-y-1">
|
2024-05-10 12:00:38 +00:00
|
|
|
|
<label
|
|
|
|
|
className="text-sm text-onboarding-text-300 font-medium after:content-['*'] after:ml-0.5 after:text-red-500"
|
|
|
|
|
htmlFor="role"
|
|
|
|
|
>
|
2024-05-08 17:31:20 +00:00
|
|
|
|
What role are you working on? Choose one.
|
|
|
|
|
</label>
|
|
|
|
|
<Controller
|
|
|
|
|
control={control}
|
|
|
|
|
name="role"
|
|
|
|
|
rules={{
|
|
|
|
|
required: "This field is required",
|
|
|
|
|
}}
|
|
|
|
|
render={({ field: { value, onChange } }) => (
|
|
|
|
|
<div className="flex flex-wrap gap-2 py-2 overflow-auto break-all">
|
|
|
|
|
{USER_ROLE.map((userRole) => (
|
|
|
|
|
<div
|
|
|
|
|
key={userRole}
|
|
|
|
|
className={`flex-shrink-0 border-[0.5px] hover:cursor-pointer hover:bg-onboarding-background-300/30 ${
|
|
|
|
|
value === userRole ? "border-custom-primary-100" : "border-onboarding-border-100"
|
|
|
|
|
} rounded px-3 py-1.5 text-sm font-medium`}
|
|
|
|
|
onClick={() => onChange(userRole)}
|
|
|
|
|
>
|
|
|
|
|
{userRole}
|
|
|
|
|
</div>
|
|
|
|
|
))}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
/>
|
|
|
|
|
{errors.role && <span className="text-sm text-red-500">{errors.role.message}</span>}
|
|
|
|
|
</div>
|
|
|
|
|
<div className="space-y-1">
|
2024-05-10 12:00:38 +00:00
|
|
|
|
<label
|
|
|
|
|
className="text-sm text-onboarding-text-300 font-medium after:content-['*'] after:ml-0.5 after:text-red-500"
|
|
|
|
|
htmlFor="use_case"
|
|
|
|
|
>
|
2024-05-08 17:31:20 +00:00
|
|
|
|
What is your domain expertise? Choose one.
|
|
|
|
|
</label>
|
|
|
|
|
<Controller
|
|
|
|
|
control={control}
|
|
|
|
|
name="use_case"
|
|
|
|
|
rules={{
|
|
|
|
|
required: "This field is required",
|
|
|
|
|
}}
|
|
|
|
|
render={({ field: { value, onChange } }) => (
|
|
|
|
|
<div className="flex flex-wrap gap-2 py-2 overflow-auto break-all">
|
|
|
|
|
{USER_DOMAIN.map((userDomain) => (
|
|
|
|
|
<div
|
|
|
|
|
key={userDomain}
|
|
|
|
|
className={`flex-shrink-0 border-[0.5px] hover:cursor-pointer hover:bg-onboarding-background-300/30 ${
|
|
|
|
|
value === userDomain ? "border-custom-primary-100" : "border-onboarding-border-100"
|
|
|
|
|
} rounded px-3 py-1.5 text-sm font-medium`}
|
|
|
|
|
onClick={() => onChange(userDomain)}
|
|
|
|
|
>
|
|
|
|
|
{userDomain}
|
|
|
|
|
</div>
|
|
|
|
|
))}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
/>
|
|
|
|
|
{errors.use_case && <span className="text-sm text-red-500">{errors.use_case.message}</span>}
|
|
|
|
|
</div>
|
|
|
|
|
</>
|
|
|
|
|
)}
|
|
|
|
|
<Button variant="primary" type="submit" size="lg" className="w-full" disabled={isButtonDisabled}>
|
|
|
|
|
{isSubmitting ? <Spinner height="20px" width="20px" /> : "Continue"}
|
|
|
|
|
</Button>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="hidden lg:block relative w-2/5 h-screen overflow-hidden px-6 py-10 sm:px-7 sm:py-14 md:px-14 lg:px-28">
|
2024-05-23 11:15:23 +00:00
|
|
|
|
<SwitchAccountDropdown fullName={`${watch("first_name")} ${watch("last_name")}`} />
|
2024-05-08 17:31:20 +00:00
|
|
|
|
<div className="absolute inset-0 z-0">
|
|
|
|
|
{profileSetupStep === EProfileSetupSteps.USER_PERSONALIZATION ? (
|
|
|
|
|
<Image
|
|
|
|
|
src={resolvedTheme === "dark" ? UserPersonalizationDark : UserPersonalizationLight}
|
|
|
|
|
className="h-screen w-auto float-end object-cover"
|
|
|
|
|
alt="User Personalization"
|
|
|
|
|
/>
|
|
|
|
|
) : (
|
|
|
|
|
<Image
|
|
|
|
|
src={resolvedTheme === "dark" ? ProfileSetupDark : ProfileSetupLight}
|
|
|
|
|
className="h-screen w-auto float-end object-cover"
|
|
|
|
|
alt="Profile setup"
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
});
|