mirror of
https://github.com/ForFarmTeam/ForFarm.git
synced 2025-12-18 21:44:08 +01:00
99 lines
3.0 KiB
TypeScript
99 lines
3.0 KiB
TypeScript
"use client";
|
|
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { useForm } from "react-hook-form";
|
|
import * as z from "zod";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select";
|
|
import { Form, FormControl, FormField, FormItem, FormLabel, FormMessage } from "@/components/ui/form";
|
|
import { Crop } from "@/types";
|
|
import { cropFormSchema } from "@/schemas/form.schema";
|
|
|
|
interface AddCropFormProps {
|
|
onSubmit: (data: Partial<Crop>) => Promise<void>;
|
|
onCancel: () => void;
|
|
}
|
|
|
|
export function AddCropForm({ onSubmit, onCancel }: AddCropFormProps) {
|
|
const form = useForm<z.infer<typeof cropFormSchema>>({
|
|
resolver: zodResolver(cropFormSchema),
|
|
defaultValues: {
|
|
name: "",
|
|
plantedDate: "",
|
|
status: "planned",
|
|
},
|
|
});
|
|
|
|
const handleSubmit = (values: z.infer<typeof cropFormSchema>) => {
|
|
onSubmit({
|
|
...values,
|
|
plantedDate: new Date(values.plantedDate),
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Form {...form}>
|
|
<form onSubmit={form.handleSubmit(handleSubmit)} className="space-y-6">
|
|
<FormField
|
|
control={form.control}
|
|
name="name"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Crop Name</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder="Enter crop name" {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name="plantedDate"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Planted Date</FormLabel>
|
|
<FormControl>
|
|
<Input type="date" {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name="status"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Status</FormLabel>
|
|
<Select onValueChange={field.onChange} defaultValue={field.value}>
|
|
<FormControl>
|
|
<SelectTrigger>
|
|
<SelectValue placeholder="Select crop status" />
|
|
</SelectTrigger>
|
|
</FormControl>
|
|
<SelectContent>
|
|
<SelectItem value="planned">Planned</SelectItem>
|
|
<SelectItem value="growing">Growing</SelectItem>
|
|
<SelectItem value="harvested">Harvested</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<div className="flex justify-end gap-2">
|
|
<Button type="button" variant="outline" onClick={onCancel}>
|
|
Cancel
|
|
</Button>
|
|
<Button type="submit">Add Crop</Button>
|
|
</div>
|
|
</form>
|
|
</Form>
|
|
);
|
|
}
|