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
|
import type { SubmitErrorHandler } from "react-hook-form";
import { useState } from "react";
import { ActionButton } from "@/components/ui/action-button";
import { Button } from "@/components/ui/button";
import {
Dialog,
DialogClose,
DialogContent,
DialogFooter,
DialogHeader,
DialogTitle,
DialogTrigger,
} from "@/components/ui/dialog";
import { Form, FormControl, FormField, FormItem } 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 { z } from "zod";
export function AddLinkButton({ children }: { children: React.ReactNode }) {
const [isOpen, setOpen] = useState(false);
const formSchema = z.object({
url: z.string().url({ message: "The link must be a valid URL" }),
});
const form = useForm<z.infer<typeof formSchema>>({
resolver: zodResolver(formSchema),
defaultValues: {
url: "",
},
});
const invalidateBookmarksCache = api.useUtils().bookmarks.invalidate;
const createBookmarkMutator = api.bookmarks.createBookmark.useMutation({
onSuccess: () => {
invalidateBookmarksCache();
form.reset();
setOpen(false);
},
onError: () => {
toast({ description: "Something went wrong", variant: "destructive" });
},
});
const onError: SubmitErrorHandler<z.infer<typeof formSchema>> = (errors) => {
toast({
description: Object.values(errors)
.map((v) => v.message)
.join("\n"),
variant: "destructive",
});
};
return (
<Dialog open={isOpen} onOpenChange={setOpen}>
<DialogTrigger asChild>{children}</DialogTrigger>
<DialogContent>
<Form {...form}>
<DialogHeader>
<DialogTitle>Add Link</DialogTitle>
</DialogHeader>
<form
className="flex flex-col gap-4"
onSubmit={form.handleSubmit(
(value) =>
createBookmarkMutator.mutate({ url: value.url, type: "link" }),
onError,
)}
>
<FormField
control={form.control}
name="url"
render={({ field }) => {
return (
<FormItem className="flex-1">
<FormControl>
<Input type="text" placeholder="Link" {...field} />
</FormControl>
</FormItem>
);
}}
/>
<DialogFooter className="flex-shrink gap-1 sm:justify-end">
<DialogClose asChild>
<Button type="button" variant="secondary">
Close
</Button>
</DialogClose>
<ActionButton
type="submit"
loading={createBookmarkMutator.isPending}
>
Add
</ActionButton>
</DialogFooter>
</form>
</Form>
</DialogContent>
</Dialog>
);
}
|