-
-
Notifications
You must be signed in to change notification settings - Fork 170
Expand file tree
/
Copy path_client.tsx
More file actions
450 lines (404 loc) · 13.4 KB
/
_client.tsx
File metadata and controls
450 lines (404 loc) · 13.4 KB
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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
"use client";
import { useEffect, useState, useRef } from "react";
import { zodResolver } from "@hookform/resolvers/zod";
import type { SubmitHandler } from "react-hook-form";
import { useForm } from "react-hook-form";
import { api } from "@/server/trpc/react";
import { toast } from "sonner";
import type { saveSettingsInput } from "@/schema/profile";
import { saveSettingsSchema } from "@/schema/profile";
import { uploadFile } from "@/utils/s3helpers";
import type { user } from "@/server/db/schema";
import { Button } from "@/components/ui-components/button";
import { Loader2 } from "lucide-react";
import { Subheading, Heading } from "@/components/ui-components/heading";
import { Avatar } from "@/components/ui-components/avatar";
import { Input } from "@/components/ui-components/input";
import {
ErrorMessage,
Field,
Label,
} from "@/components/ui-components/fieldset";
import { Textarea } from "@/components/ui-components/textarea";
import { Switch } from "@/components/ui-components/switch";
import { Divider } from "@/components/ui-components/divider";
import { Text } from "@/components/ui-components/text";
type User = Pick<
typeof user.$inferSelect,
| "name"
| "username"
| "bio"
| "location"
| "websiteUrl"
| "emailNotifications"
| "newsletter"
| "image"
| "email"
| "id"
>;
type ProfilePhoto = {
status: "success" | "error" | "loading" | "idle";
url: string;
};
const Settings = ({ profile }: { profile: User }) => {
const {
register,
handleSubmit,
reset,
formState: { errors, isSubmitting },
} = useForm<saveSettingsInput>({
resolver: zodResolver(saveSettingsSchema),
defaultValues: {
...profile,
username: profile.username || "",
},
});
const { emailNotifications: eNotifications, newsletter } = profile;
const [emailNotifications, setEmailNotifications] = useState(eNotifications);
const [weeklyNewsletter, setWeeklyNewsletter] = useState(newsletter);
const [newEmail, setNewEmail] = useState("");
const [sendForVerification, setSendForVerification] = useState(false);
const [loading, setLoading] = useState(false);
const [emailError, setEmailError] = useState("");
const [cooldown, setCooldown] = useState(0);
const [profilePhoto, setProfilePhoto] = useState<ProfilePhoto>({
status: "idle",
url: profile.image,
});
const { mutate, isError, isSuccess } = api.profile.edit.useMutation();
const { mutate: getUploadUrl } = api.profile.getUploadUrl.useMutation();
const { mutate: updateUserPhotoUrl } =
api.profile.updateProfilePhotoUrl.useMutation();
const { mutate: updateEmail } = api.profile.updateEmail.useMutation();
const fileInputRef = useRef<HTMLInputElement>(null);
const isValidEmail = (email: string) => /\S+@\S+\.\S+/.test(email);
useEffect(() => {
if (isSuccess) {
toast.success("Saved", { className: "toast-success" });
}
if (isError) {
toast.error("Something went wrong saving settings.", {
className: "toast-error",
});
}
}, [isError, isSuccess]);
useEffect(() => {
if (cooldown > 0) {
const timer = setTimeout(() => setCooldown(cooldown - 1), 1000);
return () => clearTimeout(timer);
}
}, [cooldown]);
const onSubmit: SubmitHandler<saveSettingsInput> = (values) => {
mutate({ ...values, newsletter: weeklyNewsletter, emailNotifications });
};
const uploadToUrl = async (signedUrl: string, file: File) => {
setProfilePhoto({ status: "loading", url: "" });
if (!file) {
setProfilePhoto({ status: "error", url: "" });
toast.error("Invalid file upload.");
return;
}
const response = await uploadFile(signedUrl, file);
const { fileLocation } = response;
await updateUserPhotoUrl({
url: fileLocation,
});
return fileLocation;
};
const imageChange = async (e: React.ChangeEvent<HTMLInputElement>) => {
if (e.target.files && e.target.files.length > 0) {
const file = e.target.files[0];
const { size, type } = file;
await getUploadUrl(
{ size, type },
{
onError(error) {
if (error) return toast.error(error.message);
return toast.error(
"Something went wrong uploading the photo, please retry.",
);
},
async onSuccess(signedUrl) {
const url = await uploadToUrl(signedUrl, file);
if (!url) {
return toast.error(
"Something went wrong uploading the photo, please retry.",
);
}
setProfilePhoto({ status: "success", url });
toast.success(
"Profile photo successfully updated. This may take a few minutes to update around the site.",
);
},
},
);
}
};
const handleNewEmailUpdate = async () => {
if (cooldown > 0) {
return;
}
if (!isValidEmail(newEmail)) {
setEmailError("Please enter a valid email address");
return;
}
setLoading(true);
await updateEmail(
{ newEmail },
{
onError(error) {
setLoading(false);
if (error) return toast.error(error.message);
return toast.error(
"Something went wrong sending the verification link.",
);
},
onSuccess() {
setLoading(false);
toast.success("Verification link sent to your email.");
setSendForVerification(true);
setCooldown(120); // Set a 2 minute cooldown
setEmailError(""); // Clear any existing error
},
},
);
};
return (
<form
className="mx-auto max-w-4xl p-3 pt-8 sm:px-4"
onSubmit={handleSubmit(onSubmit)}
>
<Heading level={1}>Your Settings</Heading>
<Divider className="my-10 mt-6" />
<section className="grid gap-x-8 gap-y-6 sm:grid-cols-2">
<div className="space-y-1">
<Subheading level={2}>Profile Picture</Subheading>
<Text>This will be displayed on your public profile</Text>
</div>
<Field>
<div className="flex items-center space-x-4">
<Avatar
square
src={
profilePhoto.status === "error" ||
profilePhoto.status === "loading"
? undefined
: `${profilePhoto.url}`
}
alt="Profile photo upload section"
className="h-16 w-16 overflow-hidden rounded-full"
/>
<div>
<Button
color="dark/white"
type="button"
className="h-[30px] rounded-md text-xs"
onClick={() => fileInputRef.current?.click()}
>
Change avatar
</Button>
<Input
type="file"
id="file-input"
name="user-photo"
accept="image/png, image/gif, image/jpeg"
onChange={imageChange}
className="hidden"
ref={fileInputRef}
/>
<Text className="mt-1 text-xs text-gray-500">
JPG, GIF or PNG. 1MB max.
</Text>
</div>
</div>
</Field>
</section>
<Divider className="my-10" soft />
<section className="grid gap-x-8 gap-y-6 sm:grid-cols-2">
<div className="space-y-1">
<Subheading level={2}>Full Name</Subheading>
<Text>This will be displayed on your public profile</Text>
</div>
<Field>
<Input
id="name"
type="text"
autoComplete="given-name"
invalid={!!errors?.name}
{...register("name")}
/>
{errors?.name && <ErrorMessage>{errors.name.message}</ErrorMessage>}
</Field>
</section>
<Divider className="my-10" soft />
<section className="grid gap-x-8 gap-y-6 sm:grid-cols-2">
<div className="space-y-1">
<Subheading level={2}>Username</Subheading>
<Text>This will be how you share your profile</Text>
</div>
<Field>
<Input
id="username"
type="text"
autoComplete="username"
invalid={!!errors?.username}
{...register("username")}
/>
{errors?.username && (
<ErrorMessage>{errors.username.message}</ErrorMessage>
)}
</Field>
</section>
<Divider className="my-10" soft />
<section className="grid gap-x-8 gap-y-6 sm:grid-cols-2">
<div className="space-y-1">
<Subheading level={2}>Bio</Subheading>
<Text>
This will be displayed on your public profile. Maximum 200
characters.
</Text>
</div>
<Field>
<Textarea
id="bio"
rows={3}
maxLength={200}
invalid={!!errors?.bio}
{...register("bio")}
/>
{errors?.bio && <ErrorMessage>{errors.bio.message}</ErrorMessage>}
</Field>
</section>
<Divider className="my-10" soft />
<section className="grid gap-x-8 gap-y-6 sm:grid-cols-2">
<div className="space-y-1">
<Subheading level={2}>Location</Subheading>
<Text>This is where you live</Text>
</div>
<Field>
<Input
id="location"
type="text"
placeholder="The moon 🌙"
autoComplete="country-name"
invalid={!!errors?.location}
{...register("location")}
/>
{errors?.location && (
<ErrorMessage>{errors.location.message}</ErrorMessage>
)}
</Field>
</section>
<Divider className="my-10" soft />
<section className="grid gap-x-8 gap-y-6 sm:grid-cols-2">
<div className="space-y-1">
<Subheading level={2}>Website URL</Subheading>
<Text>A link to your website (optional)</Text>
</div>
<Field>
<Input
id="websiteUrl"
type="text"
placeholder="https://example.com"
autoComplete="url"
invalid={!!errors?.websiteUrl}
{...register("websiteUrl")}
/>
{errors?.websiteUrl && (
<ErrorMessage>{errors.websiteUrl.message}</ErrorMessage>
)}
</Field>
</section>
<Divider className="my-10" soft />
<section className="mt-6 grid gap-x-8 gap-y-6 sm:grid-cols-2">
<div className="space-y-1">
<Subheading level={3}>Current Email</Subheading>
<Text>This is where we will send all communications</Text>
</div>
<Field>
<Input type="text" value={profile.email || ""} disabled />
</Field>
</section>
<section className="mt-6 grid gap-x-8 gap-y-6 sm:grid-cols-2">
<div className="space-y-1">
<Subheading level={3}>Update Email</Subheading>
<Text>
You can alter your email by verifying a new email address.
</Text>
</div>
<Field>
<Input
type="email"
id="newEmail"
onChange={(e) => {
setNewEmail(e.target.value);
if (sendForVerification) {
setEmailError(""); // Clear error when user starts typing again
}
}}
value={newEmail}
/>
{emailError && sendForVerification && (
<ErrorMessage>{emailError}</ErrorMessage>
)}
<div className="mt-2 flex justify-end">
<Button
color="pink"
disabled={
!isValidEmail(newEmail) ||
newEmail === profile.email ||
loading ||
cooldown > 0
}
onClick={handleNewEmailUpdate}
>
{loading && (
<Loader2 className="text-primary h-6 w-6 animate-spin" />
)}
{cooldown > 0 ? `Wait ${cooldown}s` : "Send Verification Email"}
</Button>
</div>
</Field>
</section>
<Divider className="my-10" soft />
<section className="mt-6 space-y-4">
<Field className="flex items-center justify-between">
<Label passive className="flex flex-col">
<span>Allow notifications from the platform</span>
<Text className="text-xs text-gray-500">
Send an email when a user interacts with you on the platform
</Text>
</Label>
<Switch
color="pink"
checked={emailNotifications}
onChange={setEmailNotifications}
/>
</Field>
<Field className="flex items-center justify-between">
<Label passive className="flex flex-col">
<span>Weekly Newsletter</span>
<Text className="text-xs text-gray-500">
Receive our weekly newsletter
</Text>
</Label>
<Switch
color="pink"
checked={weeklyNewsletter}
onChange={setWeeklyNewsletter}
/>
</Field>
</section>
<Divider className="my-10" soft />
<div className="flex justify-end space-x-4">
<Button color="dark/white" onClick={() => reset()}>
Reset
</Button>
<Button color="pink" type="submit" disabled={isSubmitting}>
{isSubmitting ? "Saving..." : "Save Changes"}
</Button>
</div>
</form>
);
};
export default Settings;