1
1
"use client" ;
2
2
3
- import React , { MouseEvent , useEffect , useState } from "react" ;
4
- import { useAboutDispatch } from "@/app/about/hooks/use-about-dispatch" ;
5
- import { useAboutCtx } from "@/app/about/hooks/use-about" ;
6
- import ButtonForm from "@/app/components/button-form" ;
7
- import InputForm from "@/app/components/input-form" ;
3
+ import React , { useEffect } from "react" ;
8
4
import Image from "next/image" ;
9
- import { useForm } from 'react-hook-form'
10
- import { UpdateUserFormSchema } from "@/app/about/interfaces/update-user-form-schema" ;
11
- import { zodResolver } from "@hookform/resolvers/zod" ;
12
- import { UpdateUserSchema } from "@/app/about/schemas/update-user-schema" ;
13
5
import { getObjectErrors } from "@/app/utils/get-object-errors" ;
6
+ import { About } from "@/app/about/components/index" ;
14
7
import {
15
8
DialogTitle ,
16
9
Dialog ,
17
10
DialogBackdrop ,
18
11
DialogPanel ,
19
12
} from "@headlessui/react" ;
20
-
21
- export default function UpdateUserModal ( ) {
22
- const { shouldOpenUpdateUserModal, user, showLoading } = useAboutCtx ( ) ;
23
-
24
- const { register, handleSubmit, watch, formState : { errors } } = useForm < UpdateUserFormSchema > ( {
25
- resolver : zodResolver ( UpdateUserSchema )
26
- } ) ;
27
-
28
- const file = watch ( "file" )
29
-
30
- const { updateUser, setOpenUpdateUserModal } = useAboutDispatch ( ) ;
31
-
32
- const [ shouldHideUpdatePassword , setShouldHideUpdatePassword ] =
33
- useState < boolean > ( true ) ;
34
-
35
- const handleSetShouldUpdatePassword = ( ) =>
36
- setShouldHideUpdatePassword ( ! shouldHideUpdatePassword ) ;
37
-
38
-
39
- const handleOnCancelUpdateUserModal = ( e : MouseEvent < HTMLButtonElement > ) => {
40
- e . preventDefault ( ) ;
41
- setOpenUpdateUserModal ( ) ;
42
- } ;
43
-
44
- const handleFormSubmit = ( data : UpdateUserFormSchema ) => {
45
- const { success } = UpdateUserSchema . safeParse ( data ) ;
46
- if ( success ) updateUser ( data ) ;
47
- } ;
13
+ import { useUpdateUserModal } from "@/app/about/hooks/use-update-user-modal" ;
14
+
15
+ export function UpdateUserModal ( ) {
16
+ const {
17
+ errors,
18
+ shouldOpenUpdateUserModal,
19
+ handleSubmit,
20
+ handleFormSubmit,
21
+ user,
22
+ file,
23
+ register,
24
+ showLoading,
25
+ handleSetShouldUpdatePassword,
26
+ shouldHideUpdatePassword,
27
+ handleOnCancelUpdateUserModal,
28
+ } = useUpdateUserModal ( ) ;
48
29
49
30
useEffect ( ( ) => {
50
31
if ( errors ) {
51
- getObjectErrors ( errors )
32
+ getObjectErrors ( errors ) ;
52
33
}
53
- } , [ errors ] )
34
+ } , [ errors ] ) ;
54
35
55
36
return (
56
37
< Dialog
@@ -78,7 +59,7 @@ export default function UpdateUserModal() {
78
59
>
79
60
Update user
80
61
</ DialogTitle >
81
- < form onSubmit = { handleSubmit ( handleFormSubmit ) } className = "w-full h-1/4 bg-white shadow-md rounded px-8 pt-6 pb-8" >
62
+ < About . UpdateForm onSubmit = { handleSubmit ( handleFormSubmit ) } >
82
63
< Image
83
64
alt = "User profile image"
84
65
src = { ( ( ) => {
@@ -98,86 +79,111 @@ export default function UpdateUserModal() {
98
79
height = { 200 }
99
80
crossOrigin = "use-credentials"
100
81
/>
101
- < InputForm
102
- label = "User profile image"
103
- placeholder = "User profile image"
104
- id = "file"
105
- type = "file"
106
- name = "file"
107
- register = { register ( "file" , { required : false } ) }
108
- />
109
82
110
- < InputForm
111
- label = "User id"
112
- placeholder = { user ?. id }
113
- id = "id"
114
- type = "text"
115
- name = "id"
116
- disabled
117
- register = { register ( "id" , { required : true , value : user ?. id } ) }
118
- />
119
- < InputForm
120
- label = "User name"
121
- placeholder = { user ?. name }
122
- id = "name"
123
- type = "text"
124
- name = "name"
125
- register = { register ( "name" , { required : true , value : user ?. name } ) }
126
- />
127
- < InputForm
128
- label = "User email"
129
- placeholder = { user ?. email }
130
- id = "email"
131
- type = "email"
132
- name = "email"
133
- register = { register ( "email" , { required : true , value : user ?. email } ) }
134
- />
135
- < InputForm
136
- label = "User username"
137
- placeholder = { user ?. username }
138
- id = "username"
139
- type = "text"
140
- name = "username"
141
- register = { register ( "username" , { required : true , value : user ?. username } ) }
142
- />
143
- < ButtonForm
144
- disabled = { showLoading }
145
- type = "button"
146
- model = { showLoading ? "disabled" : "warning" }
147
- placeholder = "Update password"
148
- handleOnClick = { handleSetShouldUpdatePassword }
149
- />
150
- < InputForm
151
- hidden = { shouldHideUpdatePassword }
152
- label = { shouldHideUpdatePassword ? "" : "User password" }
153
- placeholder = "**********"
154
- id = "password"
155
- type = "password"
156
- name = "password"
157
- register = { register ( "password" , { required : false , value : user ?. password } ) }
158
- />
159
- </ form >
83
+ < About . InputWrapper >
84
+ < About . Label id = "file" > Profile image</ About . Label >
85
+ < About . Input
86
+ id = "file"
87
+ type = "file"
88
+ register = { register ( "file" , { required : false } ) }
89
+ />
90
+ </ About . InputWrapper >
91
+
92
+ < About . InputWrapper >
93
+ < About . Label id = "id" > ID</ About . Label >
94
+ < About . Input
95
+ id = "id"
96
+ disabled
97
+ register = { register ( "id" , {
98
+ required : true ,
99
+ value : user ?. id ,
100
+ } ) }
101
+ />
102
+ </ About . InputWrapper >
103
+
104
+ < About . InputWrapper >
105
+ < About . Label id = "name" > Name</ About . Label >
106
+ < About . Input
107
+ id = "name"
108
+ register = { register ( "name" , {
109
+ required : true ,
110
+ value : user ?. name ,
111
+ } ) }
112
+ />
113
+ </ About . InputWrapper >
114
+
115
+ < About . InputWrapper >
116
+ < About . Label id = "email" > Email</ About . Label >
117
+ < About . Input
118
+ id = "email"
119
+ type = "email"
120
+ register = { register ( "email" , {
121
+ required : true ,
122
+ value : user ?. email ,
123
+ } ) }
124
+ />
125
+ </ About . InputWrapper >
126
+
127
+ < About . InputWrapper >
128
+ < About . Label id = "username" > Username</ About . Label >
129
+ < About . Input
130
+ id = "username"
131
+ register = { register ( "username" , {
132
+ required : true ,
133
+ value : user ?. username ,
134
+ } ) }
135
+ />
136
+ </ About . InputWrapper >
137
+
138
+ < About . ButtonWrapper >
139
+ < About . Button
140
+ disabled = { showLoading }
141
+ model = { showLoading ? "disabled" : "warning" }
142
+ onClick = { handleSetShouldUpdatePassword }
143
+ >
144
+ Update password
145
+ </ About . Button >
146
+ </ About . ButtonWrapper >
147
+
148
+ < About . InputWrapper >
149
+ < About . Label
150
+ id = "password"
151
+ hidden = { shouldHideUpdatePassword }
152
+ >
153
+ { shouldHideUpdatePassword ? "" : "Password" }
154
+ </ About . Label >
155
+ < About . Input
156
+ hidden = { shouldHideUpdatePassword }
157
+ id = "password"
158
+ type = "password"
159
+ register = { register ( "password" , {
160
+ required : false ,
161
+ value : user ?. password ,
162
+ } ) }
163
+ />
164
+ </ About . InputWrapper >
165
+
166
+ < About . ButtonWrapper >
167
+ < About . Button
168
+ disabled = { showLoading }
169
+ type = "submit"
170
+ model = { showLoading ? "disabled" : "success" }
171
+ >
172
+ Update
173
+ </ About . Button >
174
+
175
+ < About . Button
176
+ disabled = { showLoading }
177
+ model = { showLoading ? "disabled" : "warning" }
178
+ onClick = { handleOnCancelUpdateUserModal }
179
+ >
180
+ Cancel
181
+ </ About . Button >
182
+ </ About . ButtonWrapper >
183
+ </ About . UpdateForm >
160
184
</ div >
161
185
</ div >
162
186
</ div >
163
- < div className = "flex flex-row justify-around items-center bg-gray-50 px-4 py-3 sm:flex sm:flex-row-reverse sm:px-6" >
164
- < >
165
- < ButtonForm
166
- disabled = { showLoading }
167
- type = "submit"
168
- model = { showLoading ? "disabled" : "success" }
169
- placeholder = "Update"
170
- handleOnClick = { ( ) => null }
171
- />
172
- < ButtonForm
173
- disabled = { showLoading }
174
- type = "submit"
175
- model = { showLoading ? "disabled" : "warning" }
176
- placeholder = "Cancel"
177
- handleOnClick = { handleOnCancelUpdateUserModal }
178
- />
179
- </ >
180
- </ div >
181
187
</ DialogPanel >
182
188
</ div >
183
189
</ div >
0 commit comments