From 333429adbaaa592cc96b480a5228f0e3f1de4cc2 Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Thu, 8 Feb 2024 03:25:43 +0000 Subject: [refactor] Use react form hock for the AddLink --- web/app/dashboard/bookmarks/components/AddLink.tsx | 70 +++++++++++++++------- 1 file changed, 47 insertions(+), 23 deletions(-) (limited to 'web/app') diff --git a/web/app/dashboard/bookmarks/components/AddLink.tsx b/web/app/dashboard/bookmarks/components/AddLink.tsx index fab4db8b..fb77786c 100644 --- a/web/app/dashboard/bookmarks/components/AddLink.tsx +++ b/web/app/dashboard/bookmarks/components/AddLink.tsx @@ -1,43 +1,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 { useState } from "react"; +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 [link, setLink] = useState(""); - const bookmarkLink = async () => { - const [_resp, error] = await APIClient.bookmarkLink(link); + const form = useForm>({ + resolver: zodResolver(formSchema), + }); + + async function onSubmit(value: z.infer) { + const [_resp, error] = await APIClient.bookmarkLink(value.url); if (error) { - // TODO: Proper error handling - alert(error.message); + toast({ description: error.message, variant: "destructive" }); return; } router.refresh(); + } + + const onError: SubmitErrorHandler> = (errors) => { + toast({ + description: Object.values(errors) + .map((v) => v.message) + .join("\n"), + variant: "destructive", + }); }; return ( -
- setLink(val.target.value)} - onKeyUp={async (event) => { - if (event.key == "Enter") { - bookmarkLink(); - setLink(""); - } - }} - /> - -
+
+ +
+ { + return ( + + + + + + ); + }} + /> + +
+
+ ); } -- cgit v1.2.3-70-g09d2