207 lines
7.2 KiB
TypeScript

"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<ExpenseItemFormValues, any>({
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 (
<Rhform form={form} onSubmit={(values) => mutate(values)}>
{error && (
<Alert variant="destructive" className="mb-4">
<AlertTriangle className="me-2 h-4 w-4" />
<AlertTitle>
{isEditing ? "Failed to update expense item" : "Failed to create expense item"}
</AlertTitle>
{error.message}
</Alert>
)}
<FieldGroup>
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2">
<RhfSelectField
name="item_type"
label="Item Type"
options={ITEM_TYPE_OPTIONS}
required
/>
<RhfTextField
name="item_name"
label="Item Name"
placeholder="e.g. Office Supplies"
required
/>
</div>
<div>
<div className="mb-1 flex items-center justify-between">
<span className="text-sm font-medium">Category</span>
<InventoryCategoryCrudDialog />
</div>
<RhfAsyncSelectField
name="category"
label=""
placeholder="Select category"
queryKey={[INVENTORY_CATEGORY_ROUTES.INDEX]}
listFn={() => api.inventoryCategories.list()}
mapOption={mapLookupOption}
{...STORE_OBJECT}
/>
</div>
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2">
<RhfTextField
name="purchase_price"
label="Purchase Price"
placeholder="0.00"
type="number"
/>
<RhfTextField
name="purchase_chart_of_account"
label="Purchase Chart of Account"
placeholder="e.g. Expenses"
/>
</div>
<div className="flex flex-col gap-3">
<RhfCheckboxField
name="purchase_information"
label="Purchase Information"
/>
<RhfCheckboxField
name="is_active"
label="Active"
/>
</div>
</FieldGroup>
<div className="mt-6 flex justify-end">
<Button type="submit" disabled={isPending}>
{isEditing ? (
<>
<Save className="me-2 h-4 w-4" />
{isPending ? "Saving..." : "Save Changes"}
</>
) : (
<>
<Plus className="me-2 h-4 w-4" />
{isPending ? "Creating..." : "Create Expense Item"}
</>
)}
</Button>
</div>
</Rhform>
)
}