garage-erp/apps/dashboard/modules/vehicles/vehicle-document-form.tsx
Mohammad Khyata c7eb23dd3f fix bugs
Co-authored-by: Copilot <copilot@github.com>
2026-05-07 13:32:35 +03:00

171 lines
5.9 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,
RhfDateField,
RhfAsyncSelectField,
RhfDocumentField,
} from "@/shared/components/form"
import { DocumentTypeInlineForm } from "./inline-forms/document-type-inline-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 { getFullName } from "@/shared/utils/getFullName"
import { vehicleDocumentFormSchema, type VehicleDocumentFormValues } from "./vehicle-document.schema"
// ── Props ──
export type VehicleDocumentFormProps = {
vehicleId: string
resourceId?: string | null
initialData?: unknown
onSuccess?: () => void
}
// ── Default values ──
const DEFAULT_VALUES: VehicleDocumentFormValues = {
document_type: null,
customer: null,
document_number: "",
document_expire: "",
file: null,
}
// ── Mapping helpers ──
const mapLookupOption = (item: any) => ({
value: String(item.id),
label: item.name ?? item.title ?? String(item.id),
})
const STORE_OBJECT = { getOptionValue: (o: any) => o, getOptionLabel: (o: any) => o.label }
function mapToFormValues(data: unknown): VehicleDocumentFormValues {
const d = (data as any)?.data ?? data ?? {}
return {
document_type: toRelation(d.document_type_id, d.document_type?.name ?? d.document_type?.title),
customer: toRelation(d.customer_id, getFullName(d.customer) || d.customer?.name),
document_number: d.document_number || "",
document_expire: d.document_expire || "",
file: null,
}
}
function mapToPayload(values: VehicleDocumentFormValues, vehicleId: string) {
return {
vehicle_id: vehicleId,
document_type_id: toId(values.document_type),
customer_id: toId(values.customer),
document_number: values.document_number || undefined,
document_expire: values.document_expire || undefined,
document_file: values.file instanceof File ? values.file : undefined,
}
}
// ── Component ──
export function VehicleDocumentForm({ vehicleId, resourceId, initialData, onSuccess }: VehicleDocumentFormProps) {
const api = useAuthApi()
const { form, isEditing } = useResourceForm<VehicleDocumentFormValues, any>({
schema: vehicleDocumentFormSchema,
defaultValues: DEFAULT_VALUES,
resourceId,
initialData,
mapToFormValues,
})
const { mutate, error, isPending } = useFormMutation(form, {
mutationFn: (values: VehicleDocumentFormValues) => {
const payload = mapToPayload(values, vehicleId)
const promise = isEditing && resourceId
? api.vehicleDocuments.updateDocument(resourceId, payload)
: api.vehicleDocuments.createDocument(payload)
toast.promise(promise, {
loading: isEditing ? "Updating document..." : "Uploading document...",
success: isEditing ? "Document updated successfully" : "Document uploaded successfully",
error: isEditing ? "Failed to update document" : "Failed to upload document",
})
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 document" : "Failed to upload document"}
</AlertTitle>
{error.message}
</Alert>
)}
<FieldGroup>
<RhfAsyncSelectField
name="document_type"
label="Document Type"
placeholder="Select document type"
queryKey={["document-types"]}
listFn={() => api.vehicleDocuments.listDocumentTypes()}
mapOption={mapLookupOption}
createForm={(props) => <DocumentTypeInlineForm {...props} />}
createLabel="Document Type"
{...STORE_OBJECT}
/>
{/* <RhfAsyncSelectField
name="customer"
label="Customer"
placeholder="Select customer"
queryKey={["customers"]}
listFn={() => api.customers.list()}
mapOption={(item: any) => ({
value: String(item.id),
label: getFullName(item) || item.name || `#${item.id}`,
})}
{...STORE_OBJECT}
/> */}
<RhfTextField
name="document_number"
label="Document Number"
placeholder="e.g. DOC-001"
/>
<RhfDateField
name="document_expire"
label="Expiry Date"
/>
<RhfDocumentField
name="file"
label="Document File"
required
/>
<Button type="submit" disabled={isPending} className="w-full">
{isPending ? null : isEditing ? <Save /> : <Plus />}
{isPending ? "Saving..." : isEditing ? "Update Document" : "Upload Document"}
</Button>
</FieldGroup>
</Rhform>
)
}