1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
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>
);
}
|