107 lines
4.7 KiB
TypeScript
107 lines
4.7 KiB
TypeScript
"use client"
|
|
|
|
import { ResourcePage } from '@/shared/data-view/resource-page'
|
|
import { ColumnHeader } from '@/shared/data-view/table-view'
|
|
import FormDialog from '@/shared/components/form-dialog'
|
|
import { EstimateForm } from '@/modules/estimates/estimate-form'
|
|
import { ESTIMATE_ROUTES } from '@garage/api'
|
|
import type { EstimatesClient } from '@garage/api'
|
|
import { Car, FileTextIcon, UserIcon } from 'lucide-react'
|
|
import { Button } from '@/shared/components/ui/button'
|
|
import Link from 'next/link'
|
|
import { formatDate } from '@/shared/utils/formatters'
|
|
import { getVehicleLabel } from '@/modules/vehicles/utils/getVehicleLabel'
|
|
import { getFullName } from '@/shared/utils/getFullName'
|
|
|
|
export default function EstimatesPage() {
|
|
return (
|
|
<ResourcePage<EstimatesClient>
|
|
pageTitle="Estimates"
|
|
routeKey={ESTIMATE_ROUTES.INDEX}
|
|
getClient={(api) => api.estimates}
|
|
headerProps={({ selectedItem, invalidateQuery }) => ({
|
|
actions: (
|
|
<FormDialog title="Estimate">
|
|
{(resourceId) => (
|
|
<EstimateForm
|
|
resourceId={resourceId}
|
|
onSuccess={invalidateQuery}
|
|
/>
|
|
)}
|
|
</FormDialog>
|
|
),
|
|
})}
|
|
columns={({ actionsColumn }) => [
|
|
{
|
|
accessorKey: "title",
|
|
header: ({ column }) => <ColumnHeader column={column} title="Title" />,
|
|
cell: ({ row }) => {
|
|
const item = row.original
|
|
return (
|
|
<div className="flex items-center gap-2">
|
|
<Link href={`/sales/estimates/${item.id}`} className="flex items-center gap-2 hover:underline">
|
|
<FileTextIcon className="text-muted-foreground h-4 w-4" />
|
|
<span>{item.title}</span>
|
|
</Link>
|
|
</div>
|
|
)
|
|
},
|
|
},
|
|
{
|
|
accessorKey: "estimate_number",
|
|
header: ({ column }) => <ColumnHeader column={column} title="Estimate #" />,
|
|
},
|
|
{
|
|
accessorKey: "customer_name",
|
|
header: ({ column }) => <ColumnHeader column={column} title="Customer" />,
|
|
cell: ({ row }) => {
|
|
const item:any = row.original
|
|
return (
|
|
<div className="flex items-center gap-2">
|
|
<UserIcon className="h-4 w-4 text-muted-foreground" />
|
|
<span>{getFullName(item.customer) || "—"}</span>
|
|
</div>
|
|
)
|
|
}
|
|
},
|
|
{
|
|
accessorKey: "vehicle",
|
|
header: ({ column }) => <ColumnHeader column={column} title="Vehicle" />,
|
|
cell: ({ row }) => {
|
|
const item :any= row.original
|
|
return <Button variant="outline" asChild size="sm">
|
|
<Link href={`/sales/vehicles/${item.vehicle?.id}`}>
|
|
<Car/> {getVehicleLabel(item.vehicle as any) || "—"}
|
|
</Link>
|
|
</Button>
|
|
}
|
|
},
|
|
{
|
|
accessorKey: "date",
|
|
header: ({ column }) => <ColumnHeader column={column} title="Date" />,
|
|
cell: ({ row }) => {
|
|
const item = row.original
|
|
return formatDate(item.date)
|
|
}
|
|
},
|
|
{
|
|
accessorKey: "has_insurance",
|
|
header: ({ column }) => <ColumnHeader column={column} title="Insurance" />,
|
|
cell: ({ row }) => {
|
|
const item = row.original
|
|
return item.has_insurance ? "Yes" : "No"
|
|
},
|
|
},
|
|
{
|
|
accessorKey: "created_at",
|
|
header: ({ column }) => <ColumnHeader column={column} title="Created" />,
|
|
cell: ({ row }) => {
|
|
const item = row.original
|
|
return item.created_at ? new Date(item.created_at).toLocaleDateString() : "—"
|
|
},
|
|
},
|
|
actionsColumn(),
|
|
]}
|
|
/>
|
|
)
|
|
} |