diff options
Diffstat (limited to 'apps/web/components/dashboard/settings/ChangePassword.tsx')
| -rw-r--r-- | apps/web/components/dashboard/settings/ChangePassword.tsx | 132 |
1 files changed, 132 insertions, 0 deletions
diff --git a/apps/web/components/dashboard/settings/ChangePassword.tsx b/apps/web/components/dashboard/settings/ChangePassword.tsx new file mode 100644 index 00000000..d976f3e4 --- /dev/null +++ b/apps/web/components/dashboard/settings/ChangePassword.tsx @@ -0,0 +1,132 @@ +"use client"; + +import type { z } from "zod"; +import { ActionButton } from "@/components/ui/action-button"; +import { + Form, + FormControl, + FormField, + FormItem, + FormLabel, + FormMessage, +} from "@/components/ui/form"; +import { Input } from "@/components/ui/input"; +import { toast } from "@/components/ui/use-toast"; +import { api } from "@/lib/trpc"; +import { zodResolver } from "@hookform/resolvers/zod"; +import { useForm } from "react-hook-form"; + +import { zChangePasswordSchema } from "@hoarder/trpc/types/users"; + +export function ChangePassword() { + const form = useForm<z.infer<typeof zChangePasswordSchema>>({ + resolver: zodResolver(zChangePasswordSchema), + defaultValues: { + currentPassword: "", + newPassword: "", + newPasswordConfirm: "", + }, + }); + + const mutator = api.users.changePassword.useMutation({ + onSuccess: () => { + toast({ description: "Password changed successfully" }); + form.reset(); + }, + onError: (e) => { + if (e.data?.code == "UNAUTHORIZED") { + toast({ + description: "Your current password is incorrect", + variant: "destructive", + }); + } else { + toast({ description: "Something went wrong", variant: "destructive" }); + } + }, + }); + + async function onSubmit(value: z.infer<typeof zChangePasswordSchema>) { + mutator.mutate({ + currentPassword: value.currentPassword, + newPassword: value.newPassword, + }); + } + + return ( + <div className="w-full pt-4"> + <span className="text-xl">Change Password</span> + <hr className="my-2" /> + <Form {...form}> + <form + onSubmit={form.handleSubmit(onSubmit)} + className="flex w-1/2 flex-col gap-2 pt-4" + > + <FormField + control={form.control} + name="currentPassword" + render={({ field }) => { + return ( + <FormItem className="flex-1"> + <FormLabel>Current Password</FormLabel> + <FormControl> + <Input + type="password" + placeholder="Current Password" + {...field} + /> + </FormControl> + <FormMessage /> + </FormItem> + ); + }} + /> + <FormField + control={form.control} + name="newPassword" + render={({ field }) => { + return ( + <FormItem className="flex-1"> + <FormLabel>New Password</FormLabel> + <FormControl> + <Input + type="password" + placeholder="New Password" + {...field} + /> + </FormControl> + <FormMessage /> + </FormItem> + ); + }} + /> + <FormField + control={form.control} + name="newPasswordConfirm" + render={({ field }) => { + return ( + <FormItem className="flex-1"> + <FormLabel>Confirm New Password</FormLabel> + <FormControl> + <Input + type="Password" + placeholder="Confirm New Password" + {...field} + /> + </FormControl> + <FormMessage /> + </FormItem> + ); + }} + /> + <ActionButton + className="h-full" + type="submit" + loading={mutator.isPending} + > + Save + </ActionButton> + </form> + </Form> + </div> + ); +} |
