109 lines
3.5 KiB
TypeScript
109 lines
3.5 KiB
TypeScript
"use client"
|
|
import { z } from "zod"
|
|
import { Button } from "@/components/ui/button"
|
|
import { useSortable } from "@dnd-kit/sortable"
|
|
import { ColumnDef, flexRender, Row } from "@tanstack/react-table"
|
|
import { TableCell, TableRow } from "@/components/ui/table"
|
|
import { CSS } from "@dnd-kit/utilities"
|
|
import { schema, schemaType } from "./schema"
|
|
import { dateToLocaleString } from "@/lib/utils"
|
|
import { Pencil, Trash } from "lucide-react"
|
|
import { IconHandClick } from "@tabler/icons-react"
|
|
|
|
export function DraggableRow({ row, selectedID }: { row: Row<z.infer<typeof schema>>; selectedID: string }) {
|
|
const { transform, transition, setNodeRef, isDragging } = useSortable({ id: row.original._id })
|
|
return (
|
|
<TableRow data-dragging={isDragging} ref={setNodeRef}
|
|
className={`${row.original._id === selectedID ? "bg-blue-700/50 hover:bg-blue-700/50" : ""} relative z-0 data-[dragging=true]:z-10 data-[dragging=true]:opacity-80`}
|
|
style={{ transform: CSS.Transform.toString(transform), transition: transition }}
|
|
>
|
|
{row.getVisibleCells().map((cell) => (
|
|
<TableCell key={cell.id}>{flexRender(cell.column.columnDef.cell, cell.getContext())}</TableCell>
|
|
))}
|
|
</TableRow>
|
|
)
|
|
}
|
|
|
|
function getColumns(selectionHandler: (id: string) => void): ColumnDef<schemaType>[] {
|
|
return [
|
|
{
|
|
accessorKey: "addressGovCode",
|
|
header: "Address Gov Code",
|
|
},
|
|
{
|
|
accessorKey: "no",
|
|
header: "No",
|
|
},
|
|
{
|
|
accessorKey: "level",
|
|
header: "Level",
|
|
},
|
|
{
|
|
accessorKey: "code",
|
|
header: "Code",
|
|
},
|
|
{
|
|
accessorKey: "grossSize",
|
|
header: "Gross Size",
|
|
},
|
|
{
|
|
accessorKey: "netSize",
|
|
header: "Net Size",
|
|
},
|
|
{
|
|
accessorKey: "defaultAccessory",
|
|
header: "Default Accessory",
|
|
},
|
|
{
|
|
accessorKey: "humanLivability",
|
|
header: "Human Livability",
|
|
},
|
|
{
|
|
accessorKey: "key",
|
|
header: "Key",
|
|
},
|
|
{
|
|
accessorKey: "directionId",
|
|
header: "Direction ID",
|
|
},
|
|
{
|
|
accessorKey: "typeId",
|
|
header: "Type ID",
|
|
},
|
|
{
|
|
accessorKey: "createdAt",
|
|
header: "Created",
|
|
cell: ({ getValue }) => dateToLocaleString(getValue() as string),
|
|
},
|
|
{
|
|
accessorKey: "updatedAt",
|
|
header: "Updated",
|
|
cell: ({ getValue }) => dateToLocaleString(getValue() as string),
|
|
},
|
|
{
|
|
accessorKey: "expiryStarts",
|
|
header: "Expiry Starts",
|
|
cell: ({ getValue }) => getValue() ? dateToLocaleString(getValue() as string) : "-",
|
|
},
|
|
{
|
|
accessorKey: "expiryEnds",
|
|
header: "Expiry Ends",
|
|
cell: ({ getValue }) => getValue() ? dateToLocaleString(getValue() as string) : "-",
|
|
},
|
|
{
|
|
id: "actions",
|
|
header: "Actions",
|
|
cell: ({ row }) => {
|
|
return (
|
|
<div>
|
|
<Button className="bg-blue-600 border-blue-600 text-white" variant="outline" size="sm" onClick={() => { selectionHandler(row.original._id) }}>
|
|
<IconHandClick />
|
|
</Button>
|
|
</div>
|
|
);
|
|
},
|
|
}
|
|
]
|
|
}
|
|
|
|
export { getColumns }; |