* - Replaced Supabase local environment variables - Updates packages - Force Zod v3 if peer deps require Zod v4 - Updated Dev Tool * Use correct field for pnpm overrides * Fix inaccuracies in the Agents files; fix type casting in `useForm` * Updated lock file * Be more specific when intercepting POST request in flaky e2e test
149 lines
3.9 KiB
TypeScript
149 lines
3.9 KiB
TypeScript
'use client';
|
|
|
|
import { useRouter } from 'next/navigation';
|
|
|
|
import { zodResolver } from '@hookform/resolvers/zod';
|
|
import { ExclamationTriangleIcon } from '@radix-ui/react-icons';
|
|
import { useForm } from 'react-hook-form';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { toast } from 'sonner';
|
|
|
|
import { useUpdateUser } from '@kit/supabase/hooks/use-update-user-mutation';
|
|
import { Alert, AlertDescription, AlertTitle } from '@kit/ui/alert';
|
|
import { Button } from '@kit/ui/button';
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormDescription,
|
|
FormField,
|
|
FormItem,
|
|
FormMessage,
|
|
} from '@kit/ui/form';
|
|
import { Heading } from '@kit/ui/heading';
|
|
import { Trans } from '@kit/ui/trans';
|
|
|
|
import { PasswordResetSchema } from '../schemas/password-reset.schema';
|
|
import { PasswordInput } from './password-input';
|
|
|
|
export function UpdatePasswordForm(params: {
|
|
redirectTo: string;
|
|
heading?: React.ReactNode;
|
|
}) {
|
|
const updateUser = useUpdateUser();
|
|
const router = useRouter();
|
|
const { t } = useTranslation();
|
|
|
|
const form = useForm({
|
|
resolver: zodResolver(PasswordResetSchema),
|
|
defaultValues: {
|
|
password: '',
|
|
repeatPassword: '',
|
|
},
|
|
});
|
|
|
|
if (updateUser.error) {
|
|
const error = updateUser.error as unknown as { code: string };
|
|
|
|
return <ErrorState error={error} onRetry={() => updateUser.reset()} />;
|
|
}
|
|
|
|
return (
|
|
<div className={'flex w-full flex-col space-y-6'}>
|
|
<div className={'flex justify-center'}>
|
|
{params.heading && (
|
|
<Heading className={'text-center'} level={4}>
|
|
{params.heading}
|
|
</Heading>
|
|
)}
|
|
</div>
|
|
|
|
<Form {...form}>
|
|
<form
|
|
className={'flex w-full flex-1 flex-col'}
|
|
onSubmit={form.handleSubmit(async ({ password }) => {
|
|
await updateUser.mutateAsync({
|
|
password,
|
|
redirectTo: params.redirectTo,
|
|
});
|
|
|
|
router.replace(params.redirectTo);
|
|
|
|
toast.success(t('account:updatePasswordSuccessMessage'));
|
|
})}
|
|
>
|
|
<div className={'flex-col space-y-2.5'}>
|
|
<FormField
|
|
name={'password'}
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormControl>
|
|
<PasswordInput autoComplete={'new-password'} {...field} />
|
|
</FormControl>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
name={'repeatPassword'}
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormControl>
|
|
<PasswordInput autoComplete={'new-password'} {...field} />
|
|
</FormControl>
|
|
|
|
<FormDescription>
|
|
<Trans i18nKey={'common:repeatPassword'} />
|
|
</FormDescription>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<Button
|
|
disabled={updateUser.isPending}
|
|
type="submit"
|
|
className={'w-full'}
|
|
>
|
|
<Trans i18nKey={'auth:passwordResetLabel'} />
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</Form>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function ErrorState(props: {
|
|
onRetry: () => void;
|
|
error: {
|
|
code: string;
|
|
};
|
|
}) {
|
|
const { t } = useTranslation('auth');
|
|
|
|
const errorMessage = t(`errors.${props.error.code}`, {
|
|
defaultValue: t('errors.resetPasswordError'),
|
|
});
|
|
|
|
return (
|
|
<div className={'flex flex-col space-y-4'}>
|
|
<Alert variant={'destructive'}>
|
|
<ExclamationTriangleIcon className={'s-6'} />
|
|
|
|
<AlertTitle>
|
|
<Trans i18nKey={'common:genericError'} />
|
|
</AlertTitle>
|
|
|
|
<AlertDescription>{errorMessage}</AlertDescription>
|
|
</Alert>
|
|
|
|
<Button onClick={props.onRetry} variant={'outline'}>
|
|
<Trans i18nKey={'common:retry'} />
|
|
</Button>
|
|
</div>
|
|
);
|
|
}
|