chore: add user personalization step to onboarding profile setup screen.

This commit is contained in:
Prateek Shourya 2024-04-30 14:16:36 +05:30
parent e2ede25f57
commit 0438a0ba2b
4 changed files with 721 additions and 247 deletions

View File

@ -24,6 +24,8 @@ import { FileService } from "@/services/file.service";
// assets // assets
import ProfileSetupDark from "public/onboarding/profile-setup-dark.svg"; import ProfileSetupDark from "public/onboarding/profile-setup-dark.svg";
import ProfileSetupLight from "public/onboarding/profile-setup-light.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 = { type TProfileSetupFormValues = {
first_name: string; first_name: string;
@ -31,6 +33,7 @@ type TProfileSetupFormValues = {
avatar?: string | null; avatar?: string | null;
password?: string; password?: string;
confirm_password?: string; confirm_password?: string;
role?: string;
use_case?: string; use_case?: string;
}; };
@ -40,6 +43,7 @@ const defaultValues: Partial<TProfileSetupFormValues> = {
avatar: "", avatar: "",
password: undefined, password: undefined,
confirm_password: undefined, confirm_password: undefined,
role: undefined,
use_case: undefined, use_case: undefined,
}; };
@ -50,15 +54,25 @@ type Props = {
finishOnboarding: () => Promise<void>; finishOnboarding: () => Promise<void>;
}; };
const USE_CASES = [ enum EProfileSetupSteps {
"Build Products", ALL = "ALL",
"Manage Feedbacks", USER_DETAILS = "USER_DETAILS",
"Service delivery", USER_PERSONALIZATION = "USER_PERSONALIZATION",
"Field force management", }
"Code Repository Integration",
"Bug Tracking", const USER_ROLE = ["Individual contributor", "Senior Leader", "Manager", "Executive", "Freelancer", "Student"];
"Test Case Management",
"Resource allocation", const USER_DOMAIN = [
"Engineering",
"Product",
"Marketing",
"Sales",
"Operations",
"Legal",
"Finance",
"Human Resources",
"Project",
"Other",
]; ];
const fileService = new FileService(); const fileService = new FileService();
@ -67,6 +81,9 @@ const authService = new AuthService();
export const ProfileSetup: React.FC<Props> = observer((props) => { export const ProfileSetup: React.FC<Props> = observer((props) => {
const { user, totalSteps, stepChange, finishOnboarding } = props; const { user, totalSteps, stepChange, finishOnboarding } = props;
// states // states
const [profileSetupStep, setProfileSetupStep] = useState<EProfileSetupSteps>(
user?.is_password_autoset ? EProfileSetupSteps.USER_DETAILS : EProfileSetupSteps.ALL
);
const [isRemoving, setIsRemoving] = useState(false); const [isRemoving, setIsRemoving] = useState(false);
const [isImageUploadModalOpen, setIsImageUploadModalOpen] = useState(false); const [isImageUploadModalOpen, setIsImageUploadModalOpen] = useState(false);
const [isPasswordInputFocused, setIsPasswordInputFocused] = useState(false); const [isPasswordInputFocused, setIsPasswordInputFocused] = useState(false);
@ -95,37 +112,25 @@ export const ProfileSetup: React.FC<Props> = observer((props) => {
mode: "onChange", mode: "onChange",
}); });
const handleUserDetailUpdate = async (data: Partial<IUser>) => {
await updateCurrentUser(data);
};
const handleUserProfileUpdate = async (data: Partial<TUserProfile>) => {
await updateUserProfile(data);
};
const handleSetPassword = async (password: string) => { const handleSetPassword = async (password: string) => {
const token = await authService.requestCSRFToken().then((data) => data?.csrf_token); const token = await authService.requestCSRFToken().then((data) => data?.csrf_token);
await authService.setPassword(token, { password }); await authService.setPassword(token, { password });
}; };
const onSubmit = async (formData: TProfileSetupFormValues) => { const handleSubmitProfileSetup = async (formData: TProfileSetupFormValues) => {
if (!user) return;
const userDetailsPayload: Partial<IUser> = { const userDetailsPayload: Partial<IUser> = {
first_name: formData.first_name, first_name: formData.first_name,
last_name: formData.last_name, last_name: formData.last_name,
avatar: formData.avatar, avatar: formData.avatar,
}; };
const profileUpdatePayload: Partial<TUserProfile> = { const profileUpdatePayload: Partial<TUserProfile> = {
use_case: formData.use_case, use_case: formData.use_case,
role: formData.role,
}; };
try { try {
await Promise.all([ await Promise.all([
handleUserDetailUpdate(userDetailsPayload), updateCurrentUser(userDetailsPayload),
handleUserProfileUpdate(profileUpdatePayload), updateUserProfile(profileUpdatePayload),
formData.password ? handleSetPassword(formData.password) : Promise.resolve(),
stepChange({ profile_complete: true }), stepChange({ profile_complete: true }),
]).then(() => { ]).then(() => {
captureEvent(USER_DETAILS, { captureEvent(USER_DETAILS, {
@ -137,7 +142,8 @@ export const ProfileSetup: React.FC<Props> = observer((props) => {
title: "Success", title: "Success",
message: "Profile setup completed!", message: "Profile setup completed!",
}); });
if (totalSteps === 1) { // For Invited Users, they will skip all other steps and finish onboarding.
if (totalSteps <= 2) {
finishOnboarding(); finishOnboarding();
} }
}); });
@ -154,6 +160,71 @@ export const ProfileSetup: React.FC<Props> = observer((props) => {
} }
}; };
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) : Promise.resolve(),
]).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), stepChange({ profile_complete: true })]).then(() => {
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) => { const handleDelete = (url: string | null | undefined) => {
if (!url) return; if (!url) return;
@ -172,6 +243,8 @@ export const ProfileSetup: React.FC<Props> = observer((props) => {
const isValidPassword = (password: string, confirmPassword?: string) => const isValidPassword = (password: string, confirmPassword?: string) =>
getPasswordStrength(password) >= 3 && password === confirmPassword; 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( const isButtonDisabled = useMemo(
() => () =>
isValid && isValid &&
@ -187,242 +260,286 @@ export const ProfileSetup: React.FC<Props> = observer((props) => {
[isValid, isPasswordAlreadySetup, isSignUpUsingMagicCode, password, confirmPassword] [isValid, isPasswordAlreadySetup, isSignUpUsingMagicCode, password, confirmPassword]
); );
const isCurrentStepUserPersonalization = profileSetupStep === EProfileSetupSteps.USER_PERSONALIZATION;
return ( return (
<div className="flex h-full w-full"> <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="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"> <div className="flex items-center justify-between">
<OnboardingHeader currentStep={1} totalSteps={totalSteps} /> <OnboardingHeader currentStep={isCurrentStepUserPersonalization ? 2 : 1} totalSteps={totalSteps} />
<div className="shrink-0 lg:hidden"> <div className="shrink-0 lg:hidden">
<SwitchOrDeleteAccountDropdown fullName={`${watch("first_name")} ${watch("last_name")}`} /> <SwitchOrDeleteAccountDropdown fullName={`${watch("first_name")} ${watch("last_name")}`} />
</div> </div>
</div> </div>
<div className="flex flex-col w-full items-center justify-center p-8 mt-6"> <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"> <div className="text-center space-y-1 py-4 mx-auto">
<h3 className="text-3xl font-bold text-onboarding-text-100">Welcome to Plane!</h3> <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"> <p className="font-medium text-onboarding-text-400">
Lets setup your profile, tell us a bit about yourself. {isCurrentStepUserPersonalization
? "Lets personalize Plane for you."
: "Lets setup your profile, tell us a bit about yourself."}
</p> </p>
</div> </div>
<form onSubmit={handleSubmit(onSubmit)} className="w-full mx-auto mt-2 space-y-4 sm:w-96"> <form onSubmit={handleSubmit(onSubmit)} className="w-full mx-auto mt-2 space-y-4 sm:w-96">
<Controller {profileSetupStep !== EProfileSetupSteps.USER_PERSONALIZATION && (
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="flex gap-4">
<div className="space-y-1">
<label className="text-sm text-onboarding-text-300 font-medium" htmlFor="first_name">
First name
</label>
<Controller <Controller
control={control} control={control}
name="first_name" name="avatar"
rules={{ render={({ field: { onChange, value } }) => (
required: "First name is required", <UserImageUploadModal
maxLength: { isOpen={isImageUploadModalOpen}
value: 24, onClose={() => setIsImageUploadModalOpen(false)}
message: "First name must be within 24 characters.", isRemoving={isRemoving}
}, handleDelete={() => handleDelete(getValues("avatar"))}
}} onSuccess={(url) => {
render={({ field: { value, onChange, ref } }) => ( onChange(url);
<Input setIsImageUploadModalOpen(false);
id="first_name" }}
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="flex gap-4">
<div className="space-y-1">
<label className="text-sm text-onboarding-text-300 font-medium" htmlFor="first_name">
First name
</label>
<Controller
control={control}
name="first_name" name="first_name"
type="text" rules={{
value={value} required: "First name is required",
autoFocus maxLength: {
onChange={onChange} value: 24,
ref={ref} message: "First name must be within 24 characters.",
hasError={Boolean(errors.first_name)} },
placeholder="RWilbur" }}
className="w-full border-onboarding-border-100 focus:border-custom-primary-100" 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="RWilbur"
className="w-full border-onboarding-border-100 focus:border-custom-primary-100"
/>
)}
/> />
)} {errors.first_name && <span className="text-sm text-red-500">{errors.first_name.message}</span>}
/> </div>
{errors.first_name && <span className="text-sm text-red-500">{errors.first_name.message}</span>} <div className="space-y-1">
</div> <label className="text-sm text-onboarding-text-300 font-medium" htmlFor="last_name">
<div className="space-y-1"> Last name
<label className="text-sm text-onboarding-text-300 font-medium" htmlFor="last_name"> </label>
Last name <Controller
</label> control={control}
<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" name="last_name"
type="text" rules={{
value={value} required: "Last name is required",
onChange={onChange} maxLength: {
ref={ref} value: 24,
hasError={Boolean(errors.last_name)} message: "Last name must be within 24 characters.",
placeholder="Wright" },
className="w-full border-onboarding-border-100 focus:border-custom-primary-100" }}
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 focus:border-custom-primary-100"
/>
)}
/> />
)} {errors.last_name && <span className="text-sm text-red-500">{errors.last_name.message}</span>}
/> </div>
{errors.last_name && <span className="text-sm text-red-500">{errors.last_name.message}</span>} </div>
</div> {!isPasswordAlreadySetup && (
</div> <div className="space-y-1">
{!isPasswordAlreadySetup && ( <label className="text-sm text-onboarding-text-300 font-medium" htmlFor="password">
<div className="space-y-1"> Set a password{" "}
<label className="text-sm text-onboarding-text-300 font-medium" htmlFor="password"> {!isSignUpUsingMagicCode && <span className="text-onboarding-text-400">(optional)</span>}
Set a password{" "} </label>
{!isSignUpUsingMagicCode && <span className="text-onboarding-text-400">(optional)</span>} <Controller
</label> control={control}
<Controller name="password"
control={control} rules={{
name="password" required: isSignUpUsingMagicCode ? "Password is required" : false,
rules={{ }}
required: isSignUpUsingMagicCode ? "Password is required" : false, render={({ field: { value, onChange, ref } }) => (
}} <div className="relative flex items-center rounded-md bg-onboarding-background-200">
render={({ field: { value, onChange, ref } }) => ( <Input
<div className="relative flex items-center rounded-md bg-onboarding-background-200"> type={showPassword ? "text" : "password"}
<Input name="password"
type={showPassword ? "text" : "password"} value={value}
name="password" onChange={onChange}
value={value} ref={ref}
onChange={onChange} hasError={Boolean(errors.password)}
ref={ref} placeholder="New password..."
hasError={Boolean(errors.password)} className="w-full border border-onboarding-border-100 !bg-onboarding-background-200 pr-12 placeholder:text-onboarding-text-400"
placeholder="New password..." onFocus={() => setIsPasswordInputFocused(true)}
className="w-full border border-onboarding-border-100 !bg-onboarding-background-200 pr-12 placeholder:text-onboarding-text-400" onBlur={() => setIsPasswordInputFocused(false)}
onFocus={() => setIsPasswordInputFocused(true)} />
onBlur={() => setIsPasswordInputFocused(false)} {showPassword ? (
/> <EyeOff
{showPassword ? ( className="absolute right-3 h-4 w-4 stroke-custom-text-400 hover:cursor-pointer"
<EyeOff onClick={() => setShowPassword(false)}
className="absolute right-3 h-4 w-4 stroke-custom-text-400 hover:cursor-pointer" />
onClick={() => setShowPassword(false)} ) : (
/> <Eye
) : ( className="absolute right-3 h-4 w-4 stroke-custom-text-400 hover:cursor-pointer"
<Eye onClick={() => setShowPassword(true)}
className="absolute right-3 h-4 w-4 stroke-custom-text-400 hover:cursor-pointer" />
onClick={() => setShowPassword(true)} )}
/> </div>
)} )}
</div> />
)} {isPasswordInputFocused && <PasswordStrengthMeter password={watch("password") ?? ""} />}
/> {errors.password && <span className="text-sm text-red-500">{errors.password.message}</span>}
{isPasswordInputFocused && <PasswordStrengthMeter password={watch("password") ?? ""} />}
{errors.password && <span className="text-sm text-red-500">{errors.password.message}</span>}
</div>
)}
{!isPasswordAlreadySetup && password && getPasswordStrength(password) >= 3 && (
<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 || "Password doesn't match",
}}
render={({ field: { value, onChange, ref } }) => (
<div className="relative flex items-center rounded-md bg-onboarding-background-200">
<Input
type={showPassword ? "text" : "password"}
name="confirm_password"
value={value}
onChange={onChange}
ref={ref}
hasError={Boolean(errors.password)}
placeholder="Confirm password..."
className="w-full border border-onboarding-border-100 !bg-onboarding-background-200 pr-12 placeholder:text-onboarding-text-400"
/>
{showPassword ? (
<EyeOff
className="absolute right-3 h-4 w-4 stroke-custom-text-400 hover:cursor-pointer"
onClick={() => setShowPassword(false)}
/>
) : (
<Eye
className="absolute right-3 h-4 w-4 stroke-custom-text-400 hover:cursor-pointer"
onClick={() => setShowPassword(true)}
/>
)}
</div>
)}
/>
{errors.confirm_password && (
<span className="text-sm text-red-500">{errors.confirm_password.message}</span>
)}
</div>
)}
<div className="space-y-1">
<label className="text-sm text-onboarding-text-300 font-medium" htmlFor="use_case">
How will you use Plane? 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">
{USE_CASES.map((useCase) => (
<div
key={useCase}
className={`flex-shrink-0 border-[0.5px] hover:cursor-pointer hover:bg-onboarding-background-300/30 ${
value === useCase ? "border-custom-primary-100" : "border-onboarding-border-100"
} rounded px-3 py-1.5 text-sm font-medium`}
onClick={() => onChange(useCase)}
>
{useCase}
</div>
))}
</div> </div>
)} )}
/> {!isPasswordAlreadySetup && password && getPasswordStrength(password) >= 3 && (
{errors.use_case && <span className="text-sm text-red-500">{errors.use_case.message}</span>} <div className="space-y-1">
</div> <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 || "Password doesn't match",
}}
render={({ field: { value, onChange, ref } }) => (
<div className="relative flex items-center rounded-md bg-onboarding-background-200">
<Input
type={showPassword ? "text" : "password"}
name="confirm_password"
value={value}
onChange={onChange}
ref={ref}
hasError={Boolean(errors.password)}
placeholder="Confirm password..."
className="w-full border border-onboarding-border-100 !bg-onboarding-background-200 pr-12 placeholder:text-onboarding-text-400"
/>
{showPassword ? (
<EyeOff
className="absolute right-3 h-4 w-4 stroke-custom-text-400 hover:cursor-pointer"
onClick={() => setShowPassword(false)}
/>
) : (
<Eye
className="absolute right-3 h-4 w-4 stroke-custom-text-400 hover:cursor-pointer"
onClick={() => setShowPassword(true)}
/>
)}
</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">
<label className="text-sm text-onboarding-text-300 font-medium" htmlFor="role">
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">
<label className="text-sm text-onboarding-text-300 font-medium" htmlFor="use_case">
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 <Button
variant="primary" variant="primary"
type="submit" type="submit"
@ -439,11 +556,19 @@ export const ProfileSetup: React.FC<Props> = observer((props) => {
<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"> <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">
<SwitchOrDeleteAccountDropdown fullName={`${watch("first_name")} ${watch("last_name")}`} /> <SwitchOrDeleteAccountDropdown fullName={`${watch("first_name")} ${watch("last_name")}`} />
<div className="absolute inset-0 z-0"> <div className="absolute inset-0 z-0">
<Image {profileSetupStep === EProfileSetupSteps.USER_PERSONALIZATION ? (
src={resolvedTheme === "dark" ? ProfileSetupDark : ProfileSetupLight} <Image
className="h-screen w-auto float-end object-cover" src={resolvedTheme === "dark" ? UserPersonalizationDark : UserPersonalizationLight}
alt="Profile setup" 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> </div>
</div> </div>

View File

@ -91,8 +91,16 @@ const OnboardingPage: NextPageWithLayout = observer(() => {
}; };
useEffect(() => { useEffect(() => {
if (workspacesList && workspacesList?.length > 0) setTotalSteps(1); // If user is already invited to a workspace, only show profile setup steps.
else setTotalSteps(3); if (workspacesList && workspacesList?.length > 0) {
// If password is auto set then show two different steps for profile setup, else merge them.
if (user?.is_password_autoset) setTotalSteps(2);
else setTotalSteps(1);
} else {
// If password is auto set then total steps will increase to 4 due to extra step at profile setup stage.
if (user?.is_password_autoset) setTotalSteps(4);
else setTotalSteps(3);
}
// eslint-disable-next-line react-hooks/exhaustive-deps // eslint-disable-next-line react-hooks/exhaustive-deps
}, []); }, []);
@ -122,7 +130,7 @@ const OnboardingPage: NextPageWithLayout = observer(() => {
} }
// For Invited Users, they will skip all other steps. // For Invited Users, they will skip all other steps.
if (totalSteps && totalSteps === 1) return; if (totalSteps && totalSteps <= 2) return;
if (onboardingStep.profile_complete && !(onboardingStep.workspace_join || onboardingStep.workspace_create)) { if (onboardingStep.profile_complete && !(onboardingStep.workspace_join || onboardingStep.workspace_create)) {
setStep(EOnboardingSteps.WORKSPACE_CREATE_OR_JOIN); setStep(EOnboardingSteps.WORKSPACE_CREATE_OR_JOIN);

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 209 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 169 KiB