blob: fb77786cddb11c789b521ec0998286a755a2efaf (
plain) (
blame)
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
|
"use client";
import { Button } from "@/components/ui/button";
import { Form, FormControl, FormField, FormItem } from "@/components/ui/form";
import { Input } from "@/components/ui/input";
import APIClient from "@/lib/api";
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";
const formSchema = z.object({
url: z.string().url({ message: "The link must be a valid URL" }),
});
export default function AddLink() {
const router = useRouter();
const form = useForm<z.infer<typeof formSchema>>({
resolver: zodResolver(formSchema),
});
async function onSubmit(value: z.infer<typeof formSchema>) {
const [_resp, error] = await APIClient.bookmarkLink(value.url);
if (error) {
toast({ description: error.message, variant: "destructive" });
return;
}
router.refresh();
}
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(onSubmit, onError)}>
<div className="py-4 container flex w-full items-center space-x-2">
<FormField
control={form.control}
name="url"
render={({ field }) => {
return (
<FormItem className="flex-1">
<FormControl>
<Input type="text" placeholder="Link" {...field} />
</FormControl>
</FormItem>
);
}}
/>
<Button type="submit">
<Plus />
</Button>
</div>
</form>
</Form>
);
}
|