-
Notifications
You must be signed in to change notification settings - Fork 228
/
Copy pathindex.js
306 lines (284 loc) · 9.19 KB
/
index.js
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
import { useState, useEffect } from "react";
// Material Dashboard 2 React components
import MDBox from "components/MDBox";
import MDTypography from "components/MDTypography";
import MDInput from "components/MDInput";
import MDButton from "components/MDButton";
import MDAlert from "components/MDAlert";
// Material Dashboard 2 React example components
import DashboardLayout from "examples/LayoutContainers/DashboardLayout";
import DashboardNavbar from "examples/Navbars/DashboardNavbar";
import Footer from "examples/Footer";
// Overview page components
import Header from "layouts/user-profile/Header";
import AuthService from "../../services/auth-service";
const UserProfile = () => {
const [isDemo, setIsDemo] = useState(false);
const [notification, setNotification] = useState(false);
const [user, setUser] = useState({
name: "",
email: "",
newPassword: "",
confirmPassword: "",
});
const [errors, setErrors] = useState({
nameError: false,
emailError: false,
newPassError: false,
confirmPassError: false,
});
const getUserData = async () => {
const response = await AuthService.getProfile();
if (response.data.id == 1) {
setIsDemo(process.env.REACT_APP_IS_DEMO === "true");
}
setUser((prevUser) => ({
...prevUser,
...response.data.attributes,
currentPassword: "",
newPassword: "",
confirmPassword: "",
}));
};
useEffect(() => {
getUserData();
}, []);
useEffect(() => {
if (notification === true) {
setTimeout(() => {
setNotification(false);
}, 5000);
}
}, [notification]);
const changeHandler = (e) => {
setUser({
...user,
[e.target.name]: e.target.value,
});
};
const submitHandler = async (e) => {
e.preventDefault();
// validation
const mailFormat = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/;
if (user.name.trim().length === 0) {
setErrors({ ...errors, nameError: true });
return;
}
if (user.email.trim().length === 0 || !user.email.trim().match(mailFormat)) {
setErrors({ ...errors, emailError: true });
return;
}
if (user.confirmPassword || user.newPassword) {
// in the api the confirmed password should be the same with the current password, not the new one
if (user.confirmPassword.trim() !== user.newPassword.trim()) {
setErrors({ ...errors, confirmPassError: true });
return;
}
if (user.newPassword.trim().length < 8) {
setErrors({ ...errors, newPassError: true });
return;
}
}
let userData = {
data: {
type: "profile",
attributes: {
name: user.name,
email: user.email,
},
},
};
// set new user data for call
if (user.newPassword.length > 0) {
userData = {
data: {
type: "profile",
attributes: {
name: user.name,
email: user.email,
password: user.newPassword,
password_confirmation: user.confirmPassword,
},
},
};
}
// call api for update
const response = await AuthService.updateProfile(JSON.stringify(userData));
// reset errors
setErrors({
nameError: false,
emailError: false,
passwordError: false,
newPassError: false,
confirmPassError: false,
});
setNotification(true);
};
return (
<DashboardLayout>
<DashboardNavbar />
<MDBox mb={2} />
<Header name={user.name}>
{notification && (
<MDAlert color="info" mt="20px">
<MDTypography variant="body2" color="white">
Your profile has been updated
</MDTypography>
</MDAlert>
)}
<MDBox
component="form"
role="form"
onSubmit={submitHandler}
display="flex"
flexDirection="column"
>
<MDBox display="flex" flexDirection="row" mt={5} mb={3}>
<MDBox
display="flex"
flexDirection="column"
alignItems="flex-start"
width="100%"
mr={2}
>
<MDTypography variant="body2" color="text" ml={1} fontWeight="regular">
Name
</MDTypography>
<MDBox mb={2} width="100%">
<MDInput
type="name"
fullWidth
name="name"
value={user.name}
onChange={changeHandler}
error={errors.nameError}
/>
{errors.nameError && (
<MDTypography variant="caption" color="error" fontWeight="light">
The name can not be null
</MDTypography>
)}
</MDBox>
</MDBox>
<MDBox
display="flex"
flexDirection="column"
alignItems="flex-start"
width="100%"
ml={2}
>
<MDTypography variant="body2" color="text" ml={1} fontWeight="regular">
Email
</MDTypography>
<MDBox mb={1} width="100%">
<MDInput
type="email"
fullWidth
name="email"
value={user.email}
onChange={changeHandler}
error={errors.emailError}
disabled={isDemo}
/>
{errors.emailError && (
<MDTypography variant="caption" color="error" fontWeight="light">
The email must be valid
</MDTypography>
)}
</MDBox>
{isDemo && (
<MDTypography variant="caption" color="text" fontWeight="light">
In the demo version the email can not be updated
</MDTypography>
)}
</MDBox>
</MDBox>
<MDBox display="flex" flexDirection="column" mb={3}>
<MDBox display="flex" flexDirection="row">
<MDBox
display="flex"
flexDirection="column"
alignItems="flex-start"
width="100%"
mr={2}
>
<MDTypography variant="body2" color="text" ml={1} fontWeight="regular">
New Password
</MDTypography>
<MDBox mb={2} width="100%">
<MDInput
type="password"
fullWidth
name="newPassword"
placeholder="New Password"
value={user.newPassword}
onChange={changeHandler}
error={errors.newPassError}
disabled={isDemo}
inputProps={{
autoComplete: "new-password",
form: {
autoComplete: "off",
},
}}
/>
{errors.newPassError && (
<MDTypography variant="caption" color="error" fontWeight="light">
The password must be of at least 8 characters
</MDTypography>
)}
</MDBox>
</MDBox>
<MDBox
display="flex"
flexDirection="column"
alignItems="flex-start"
width="100%"
ml={2}
>
<MDTypography variant="body2" color="text" ml={1} fontWeight="regular">
Password Confirmation
</MDTypography>
<MDBox mb={1} width="100%">
<MDInput
type="password"
fullWidth
name="confirmPassword"
placeholder="Confirm Password"
value={user.confirmPassword}
onChange={changeHandler}
error={errors.confirmPassError}
disabled={isDemo}
inputProps={{
autoComplete: "confirmPassword",
form: {
autoComplete: "off",
},
}}
/>
{errors.confirmPassError && (
<MDTypography variant="caption" color="error" fontWeight="light">
The password confirmation must match the current password
</MDTypography>
)}
</MDBox>
{isDemo && (
<MDTypography variant="caption" color="text" ml={1} fontWeight="light">
In the demo version the password can not be updated
</MDTypography>
)}
</MDBox>
</MDBox>
<MDBox mt={4} display="flex" justifyContent="end">
<MDButton variant="gradient" color="info" type="submit">
Save changes
</MDButton>
</MDBox>
</MDBox>
</MDBox>
</Header>
<Footer />
</DashboardLayout>
);
};
export default UserProfile;