"use client" import { AlertTriangle, Plus, Save } from "lucide-react" import { Button } from "@/shared/components/ui/button" import { Alert, AlertTitle } from "@/shared/components/ui/alert" import { FieldGroup } from "@/shared/components/ui/field" import { Rhform, RhfTextField, RhfSelectField, RhfAsyncSelectField, RhfCheckboxField, } from "@/shared/components/form" import { toast } from "sonner" import { useAuthApi } from "@/shared/useApi" import { useResourceForm } from "@/shared/hooks/use-resource-form" import { useFormMutation } from "@/shared/hooks/use-form-mutation" import { toRelation, toId } from "@/shared/lib/utils" import { expenseItemFormSchema, type ExpenseItemFormValues } from "./expense-item.schema" import { EXPENSE_ITEM_ROUTES, INVENTORY_CATEGORY_ROUTES } from "@garage/api" import { InventoryCategoryCrudDialog } from "./inventory-category-crud-dialog" // ── Constants ── const ITEM_TYPE_OPTIONS = [ { value: "Expense", label: "Expense" }, ] const mapLookupOption = (item: any) => ({ value: String(item.id), label: item.title ?? item.name ?? String(item.id), }) const STORE_OBJECT = { getOptionValue: (o: any) => o, getOptionLabel: (o: any) => o.label } // ── Props ── export type ExpenseItemFormProps = { resourceId?: string | null initialData?: unknown onSuccess?: () => void } // ── Default values ── const DEFAULT_VALUES: ExpenseItemFormValues = { item_type: "Expense", item_name: "", category: null, purchase_price: undefined, purchase_chart_of_account: "", purchase_information: true, is_active: true, } // ── Mapping helpers ── function mapToFormValues(data: unknown): ExpenseItemFormValues { const d = (data as any)?.data ?? data ?? {} return { item_type: d.item_type || "Expense", item_name: d.item_name || "", category: toRelation(d.category_id, d.category_title ?? d.category_name), purchase_price: d.purchase_price ?? undefined, purchase_chart_of_account: d.purchase_chart_of_account || "", purchase_information: d.purchase_information ?? true, is_active: d.is_active ?? true, } } function mapFormToPayload(values: ExpenseItemFormValues) { return { item_type: values.item_type, item_name: values.item_name, category_id: toId(values.category), purchase_price: values.purchase_price, purchase_chart_of_account: values.purchase_chart_of_account || undefined, purchase_information: values.purchase_information, is_active: values.is_active, } } // ── Component ── export function ExpenseItemForm({ resourceId, initialData, onSuccess }: ExpenseItemFormProps) { const api = useAuthApi() const { form, isEditing } = useResourceForm({ schema: expenseItemFormSchema, defaultValues: DEFAULT_VALUES, resourceId, initialData, initialize: (id) => api.expenseItems.show(id), queryKey: [EXPENSE_ITEM_ROUTES.BY_ID, resourceId], mapToFormValues, }) const { mutate, error, isPending } = useFormMutation(form, { mutationFn: (values: ExpenseItemFormValues) => { const promise = isEditing && resourceId ? api.expenseItems.update(resourceId, mapFormToPayload(values)) : api.expenseItems.create(mapFormToPayload(values)) toast.promise(promise, { loading: isEditing ? "Updating expense item..." : "Creating expense item...", success: isEditing ? "Expense item updated successfully" : "Expense item created successfully", error: isEditing ? "Failed to update expense item" : "Failed to create expense item", }) return promise }, onSuccess: () => { form.reset() onSuccess?.() }, }) return ( mutate(values)}> {error && ( {isEditing ? "Failed to update expense item" : "Failed to create expense item"} {error.message} )}
Category
api.inventoryCategories.list()} mapOption={mapLookupOption} {...STORE_OBJECT} />
) }