mirror of
https://github.com/ForFarmTeam/ForFarm.git
synced 2025-12-19 05:54:08 +01:00
143 lines
4.5 KiB
TypeScript
143 lines
4.5 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, FormDescription, FormField, FormItem, FormLabel, FormMessage } from "@/components/ui/form";
|
|
import { useState } from "react";
|
|
import { Loader2 } from "lucide-react";
|
|
import type { Farm } from "@/types";
|
|
|
|
const farmFormSchema = z.object({
|
|
name: z.string().min(2, "Farm name must be at least 2 characters"),
|
|
location: z.string().min(2, "Location must be at least 2 characters"),
|
|
type: z.string().min(1, "Please select a farm type"),
|
|
area: z.string().optional(),
|
|
});
|
|
|
|
export interface AddFarmFormProps {
|
|
onSubmit: (data: Partial<Farm>) => Promise<void>;
|
|
onCancel: () => void;
|
|
}
|
|
|
|
export function AddFarmForm({ onSubmit, onCancel }: AddFarmFormProps) {
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
|
|
const form = useForm<z.infer<typeof farmFormSchema>>({
|
|
resolver: zodResolver(farmFormSchema),
|
|
defaultValues: {
|
|
name: "",
|
|
location: "",
|
|
type: "",
|
|
area: "",
|
|
},
|
|
});
|
|
|
|
const handleSubmit = async (values: z.infer<typeof farmFormSchema>) => {
|
|
try {
|
|
setIsSubmitting(true);
|
|
await onSubmit(values);
|
|
form.reset();
|
|
} catch (error) {
|
|
console.error("Error submitting form:", error);
|
|
} finally {
|
|
setIsSubmitting(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<Form {...form}>
|
|
<form onSubmit={form.handleSubmit(handleSubmit)} className="space-y-6">
|
|
<FormField
|
|
control={form.control}
|
|
name="name"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Farm Name</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder="Enter farm name" {...field} />
|
|
</FormControl>
|
|
<FormDescription>This is your farm's display name.</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name="location"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Location</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder="Enter farm location" {...field} />
|
|
</FormControl>
|
|
<FormDescription>City, region or specific address</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name="type"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Farm Type</FormLabel>
|
|
<Select onValueChange={field.onChange} defaultValue={field.value}>
|
|
<FormControl>
|
|
<SelectTrigger>
|
|
<SelectValue placeholder="Select farm type" />
|
|
</SelectTrigger>
|
|
</FormControl>
|
|
<SelectContent>
|
|
<SelectItem value="durian">Durian</SelectItem>
|
|
<SelectItem value="mango">Mango</SelectItem>
|
|
<SelectItem value="rice">Rice</SelectItem>
|
|
<SelectItem value="mixed">Mixed Crops</SelectItem>
|
|
<SelectItem value="other">Other</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name="area"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Total Area (optional)</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder="e.g., 10 hectares" {...field} />
|
|
</FormControl>
|
|
<FormDescription>The total size of your farm</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<div className="flex justify-end gap-2">
|
|
<Button type="button" variant="outline" onClick={onCancel} disabled={isSubmitting}>
|
|
Cancel
|
|
</Button>
|
|
<Button type="submit" disabled={isSubmitting} className="bg-green-600 hover:bg-green-700">
|
|
{isSubmitting ? (
|
|
<>
|
|
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
|
|
Creating...
|
|
</>
|
|
) : (
|
|
"Create Farm"
|
|
)}
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</Form>
|
|
);
|
|
}
|