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
|
"use client";
import { Form, FormControl, FormField, FormItem } from "@/components/ui/form";
import { Input } from "@/components/ui/input";
import { Plus } from "lucide-react";
import { useRouter } from "next/navigation";
import { useForm, SubmitErrorHandler } from "react-hook-form";
import { z } from "zod";
import { zodResolver } from "@hookform/resolvers/zod";
import { toast } from "@/components/ui/use-toast";
import { api } from "@/lib/trpc";
import { ActionButton } from "@/components/ui/action-button";
const formSchema = z.object({
url: z.string().url({ message: "The link must be a valid URL" }),
});
export default function AddLink() {
const router = useRouter();
const bookmarkLinkMutator = api.bookmarks.bookmarkLink.useMutation({
onSuccess: () => {
router.refresh();
},
onError: () => {
toast({ description: "Something went wrong", variant: "destructive" });
},
});
const form = useForm<z.infer<typeof formSchema>>({
resolver: zodResolver(formSchema),
});
const onError: SubmitErrorHandler<z.infer<typeof formSchema>> = (errors) => {
toast({
description: Object.values(errors)
.map((v) => v.message)
.join("\n"),
variant: "destructive",
});
};
return (
<Form {...form}>
<form
onSubmit={form.handleSubmit(
(value) =>
bookmarkLinkMutator.mutate({ url: value.url, type: "link" }),
onError,
)}
>
<div className="container flex w-full items-center space-x-2 py-4">
<FormField
control={form.control}
name="url"
render={({ field }) => {
return (
<FormItem className="flex-1">
<FormControl>
<Input type="text" placeholder="Link" {...field} />
</FormControl>
</FormItem>
);
}}
/>
<ActionButton type="submit" loading={bookmarkLinkMutator.isPending}>
<Plus />
</ActionButton>
</div>
</form>
</Form>
);
}
|