107 lines
2.9 KiB
TypeScript
107 lines
2.9 KiB
TypeScript
"use client";
|
|
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { useForm } from "react-hook-form";
|
|
import { z } from "zod";
|
|
|
|
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from "@/components/ui/form";
|
|
import { toast } from "@/components/ui/use-toast";
|
|
import { Input } from "./ui/input";
|
|
import { Textarea } from "./ui/textarea";
|
|
|
|
const displayFormSchema = z.object({
|
|
name: z.string().trim().min(1, "Name is required."),
|
|
description: z.string().trim().min(1, "Description is required."),
|
|
prompt: z.string().trim().min(1, "Prompt is required."),
|
|
});
|
|
|
|
type DisplayFormValues = z.infer<typeof displayFormSchema>;
|
|
|
|
// This can come from your database or API.
|
|
const defaultValues: Partial<DisplayFormValues> = {
|
|
name: "",
|
|
description: "",
|
|
prompt: "",
|
|
};
|
|
|
|
export default function AddCriteriaForm() {
|
|
const form = useForm<DisplayFormValues>({
|
|
resolver: zodResolver(displayFormSchema),
|
|
defaultValues,
|
|
});
|
|
|
|
function onSubmit(data: DisplayFormValues) {
|
|
toast({
|
|
title: "You submitted the following values:",
|
|
description: (
|
|
<pre className="mt-2 w-[340px] rounded-md bg-slate-950 p-4">
|
|
<code className="text-white">{JSON.stringify(data, null, 2)}</code>
|
|
</pre>
|
|
),
|
|
});
|
|
}
|
|
|
|
return (
|
|
<Form {...form}>
|
|
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-8">
|
|
<FormField
|
|
control={form.control}
|
|
name="name"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Name</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder="Enter Name..." {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="description"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Description</FormLabel>
|
|
<FormControl>
|
|
<Textarea placeholder="Enter description..." {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="prompt"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Prompt</FormLabel>
|
|
<FormControl>
|
|
<Textarea placeholder="Enter prompt..." {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<div className="flex items-center gap-4 flex-col sm:flex-row">
|
|
<Button className="w-full" size="lg">
|
|
Create
|
|
</Button>
|
|
<Button variant="secondary" className="w-full" size="lg">
|
|
Create and add another
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</Form>
|
|
);
|
|
}
|