mirror of
https://github.com/documenso/documenso.git
synced 2025-11-09 20:12:31 +10:00
161 lines
4.7 KiB
TypeScript
161 lines
4.7 KiB
TypeScript
import { zodResolver } from '@hookform/resolvers/zod';
|
|
import { msg } from '@lingui/core/macro';
|
|
import { useLingui } from '@lingui/react';
|
|
import { Trans } from '@lingui/react/macro';
|
|
import { useForm } from 'react-hook-form';
|
|
import { match } from 'ts-pattern';
|
|
import { z } from 'zod';
|
|
|
|
import { authClient } from '@documenso/auth/client';
|
|
import type { SessionUser } from '@documenso/auth/server/lib/session/session';
|
|
import { AppError } from '@documenso/lib/errors/app-error';
|
|
import { ZCurrentPasswordSchema, ZPasswordSchema } from '@documenso/trpc/server/auth-router/schema';
|
|
import { cn } from '@documenso/ui/lib/utils';
|
|
import { Button } from '@documenso/ui/primitives/button';
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from '@documenso/ui/primitives/form/form';
|
|
import { PasswordInput } from '@documenso/ui/primitives/password-input';
|
|
import { useToast } from '@documenso/ui/primitives/use-toast';
|
|
|
|
export const ZPasswordFormSchema = z
|
|
.object({
|
|
currentPassword: ZCurrentPasswordSchema,
|
|
password: ZPasswordSchema,
|
|
repeatedPassword: ZPasswordSchema,
|
|
})
|
|
.refine((data) => data.password === data.repeatedPassword, {
|
|
message: 'Passwords do not match',
|
|
path: ['repeatedPassword'],
|
|
});
|
|
|
|
export type TPasswordFormSchema = z.infer<typeof ZPasswordFormSchema>;
|
|
|
|
export type PasswordFormProps = {
|
|
className?: string;
|
|
user: SessionUser;
|
|
};
|
|
|
|
export const PasswordForm = ({ className }: PasswordFormProps) => {
|
|
const { _ } = useLingui();
|
|
const { toast } = useToast();
|
|
|
|
const form = useForm<TPasswordFormSchema>({
|
|
values: {
|
|
currentPassword: '',
|
|
password: '',
|
|
repeatedPassword: '',
|
|
},
|
|
resolver: zodResolver(ZPasswordFormSchema),
|
|
});
|
|
|
|
const isSubmitting = form.formState.isSubmitting;
|
|
|
|
const onFormSubmit = async ({ currentPassword, password }: TPasswordFormSchema) => {
|
|
try {
|
|
await authClient.emailPassword.updatePassword({
|
|
currentPassword,
|
|
password,
|
|
});
|
|
|
|
form.reset();
|
|
|
|
toast({
|
|
title: _(msg`Password updated`),
|
|
description: _(msg`Your password has been updated successfully.`),
|
|
duration: 5000,
|
|
});
|
|
} catch (err) {
|
|
const error = AppError.parseError(err);
|
|
|
|
const errorMessage = match(error.code)
|
|
.with('NO_PASSWORD', () => msg`User has no password.`)
|
|
.with('INCORRECT_PASSWORD', () => msg`Current password is incorrect.`)
|
|
.with(
|
|
'SAME_PASSWORD',
|
|
() => msg`Your new password cannot be the same as your old password.`,
|
|
)
|
|
.otherwise(
|
|
() =>
|
|
msg`We encountered an unknown error while attempting to update your password. Please try again later.`,
|
|
);
|
|
|
|
toast({
|
|
title: _(msg`An error occurred`),
|
|
description: _(errorMessage),
|
|
variant: 'destructive',
|
|
});
|
|
}
|
|
};
|
|
|
|
return (
|
|
<Form {...form}>
|
|
<form
|
|
className={cn('flex w-full flex-col gap-y-4', className)}
|
|
onSubmit={form.handleSubmit(onFormSubmit)}
|
|
>
|
|
<fieldset className="flex w-full flex-col gap-y-4" disabled={isSubmitting}>
|
|
<FormField
|
|
control={form.control}
|
|
name="currentPassword"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>
|
|
<Trans>Current Password</Trans>
|
|
</FormLabel>
|
|
<FormControl>
|
|
<PasswordInput autoComplete="current-password" {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name="password"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>
|
|
<Trans>Password</Trans>
|
|
</FormLabel>
|
|
<FormControl>
|
|
<PasswordInput autoComplete="new-password" {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name="repeatedPassword"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>
|
|
<Trans>Repeat Password</Trans>
|
|
</FormLabel>
|
|
<FormControl>
|
|
<PasswordInput autoComplete="new-password" {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
</fieldset>
|
|
|
|
<div className="ml-auto mt-4">
|
|
<Button type="submit" loading={isSubmitting}>
|
|
{isSubmitting ? <Trans>Updating password...</Trans> : <Trans>Update password</Trans>}
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</Form>
|
|
);
|
|
};
|