A checkbox has been added for user acceptance of terms and conditions during sign-up. This change includes adding a new adjustable flag in the configuration to control the display of the checkbox. A new file "terms-and-conditions-form-field.tsx" is added to handle the checkbox UI part. Also, localization support has been added for the feature.
168 lines
4.0 KiB
TypeScript
168 lines
4.0 KiB
TypeScript
'use client';
|
|
|
|
import { zodResolver } from '@hookform/resolvers/zod';
|
|
import { ArrowRight } from 'lucide-react';
|
|
import { useForm } from 'react-hook-form';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
import { Button } from '@kit/ui/button';
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormDescription,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from '@kit/ui/form';
|
|
import { If } from '@kit/ui/if';
|
|
import { Input } from '@kit/ui/input';
|
|
import { Trans } from '@kit/ui/trans';
|
|
|
|
import { PasswordSignUpSchema } from '../schemas/password-sign-up.schema';
|
|
import { TermsAndConditionsFormField } from './terms-and-conditions-form-field';
|
|
|
|
export function PasswordSignUpForm({
|
|
defaultValues,
|
|
displayTermsCheckbox,
|
|
onSubmit,
|
|
loading,
|
|
}: {
|
|
defaultValues?: {
|
|
email: string;
|
|
};
|
|
|
|
displayTermsCheckbox?: boolean;
|
|
|
|
onSubmit: (params: {
|
|
email: string;
|
|
password: string;
|
|
repeatPassword: string;
|
|
}) => unknown;
|
|
loading: boolean;
|
|
}) {
|
|
const { t } = useTranslation();
|
|
|
|
const form = useForm({
|
|
resolver: zodResolver(PasswordSignUpSchema),
|
|
defaultValues: {
|
|
email: defaultValues?.email ?? '',
|
|
password: '',
|
|
repeatPassword: '',
|
|
},
|
|
});
|
|
|
|
return (
|
|
<Form {...form}>
|
|
<form
|
|
className={'w-full space-y-2.5'}
|
|
onSubmit={form.handleSubmit(onSubmit)}
|
|
>
|
|
<FormField
|
|
control={form.control}
|
|
name={'email'}
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>
|
|
<Trans i18nKey={'common:emailAddress'} />
|
|
</FormLabel>
|
|
|
|
<FormControl>
|
|
<Input
|
|
data-test={'email-input'}
|
|
required
|
|
type="email"
|
|
placeholder={t('emailPlaceholder')}
|
|
{...field}
|
|
/>
|
|
</FormControl>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name={'password'}
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>
|
|
<Trans i18nKey={'common:password'} />
|
|
</FormLabel>
|
|
|
|
<FormControl>
|
|
<Input
|
|
required
|
|
data-test={'password-input'}
|
|
type="password"
|
|
placeholder={''}
|
|
{...field}
|
|
/>
|
|
</FormControl>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name={'repeatPassword'}
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>
|
|
<Trans i18nKey={'auth:repeatPassword'} />
|
|
</FormLabel>
|
|
|
|
<FormControl>
|
|
<Input
|
|
required
|
|
data-test={'repeat-password-input'}
|
|
type="password"
|
|
placeholder={''}
|
|
{...field}
|
|
/>
|
|
</FormControl>
|
|
|
|
<FormMessage />
|
|
|
|
<FormDescription className={'pb-2 text-xs'}>
|
|
<Trans i18nKey={'auth:repeatPasswordHint'} />
|
|
</FormDescription>
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<If condition={displayTermsCheckbox}>
|
|
<TermsAndConditionsFormField />
|
|
</If>
|
|
|
|
<Button
|
|
data-test={'auth-submit-button'}
|
|
className={'w-full'}
|
|
type="submit"
|
|
disabled={loading}
|
|
>
|
|
<If
|
|
condition={loading}
|
|
fallback={
|
|
<>
|
|
<Trans i18nKey={'auth:signUpWithEmail'} />
|
|
|
|
<ArrowRight
|
|
className={
|
|
'zoom-in animate-in slide-in-from-left-2 fill-mode-both h-4 delay-500 duration-500'
|
|
}
|
|
/>
|
|
</>
|
|
}
|
|
>
|
|
<Trans i18nKey={'auth:signingUp'} />
|
|
</If>
|
|
</Button>
|
|
</form>
|
|
</Form>
|
|
);
|
|
}
|