From 4b2d468701ab069fdc2347f345da56abe37c70be Mon Sep 17 00:00:00 2001 From: rlaks5757 Date: Fri, 28 Mar 2025 14:25:29 +0900 Subject: Reapply "Merge branch 'dev' into feature/kiman" This reverts commit 494a473964fa85b36c7846750c3a012a3c8468c7. --- lib/poa/table/poa-table-columns.tsx | 165 ++++++++++++++++++++++++++++++++++++ 1 file changed, 165 insertions(+) create mode 100644 lib/poa/table/poa-table-columns.tsx (limited to 'lib/poa/table/poa-table-columns.tsx') diff --git a/lib/poa/table/poa-table-columns.tsx b/lib/poa/table/poa-table-columns.tsx new file mode 100644 index 00000000..b362e54c --- /dev/null +++ b/lib/poa/table/poa-table-columns.tsx @@ -0,0 +1,165 @@ +"use client" + +import * as React from "react" +import { type DataTableRowAction } from "@/types/table" +import { type ColumnDef } from "@tanstack/react-table" +import { InfoIcon, PenIcon } from "lucide-react" + +import { formatDate } from "@/lib/utils" +import { Button } from "@/components/ui/button" +import { + Tooltip, + TooltipContent, + TooltipProvider, + TooltipTrigger, +} from "@/components/ui/tooltip" +import { DataTableColumnHeaderSimple } from "@/components/data-table/data-table-column-simple-header" +import { POADetail } from "@/db/schema/contract" +import { poaColumnsConfig } from "@/config/poaColumnsConfig" + +interface GetColumnsProps { + setRowAction: React.Dispatch | null>> +} + +/** + * tanstack table column definitions with nested headers + */ +export function getColumns({ setRowAction }: GetColumnsProps): ColumnDef[] { + // ---------------------------------------------------------------- + // 1) actions column (buttons for item info) + // ---------------------------------------------------------------- + const actionsColumn: ColumnDef = { + id: "actions", + enableHiding: false, + cell: function Cell({ row }) { + const hasSignature = row.original.hasSignature; + + return ( +
+ {/* Item Info Button */} + + + + + + + View Item Info + + + + + {/* Signature Request Button - only show if no signature exists */} + {!hasSignature && ( + + + + + + + Request Electronic Signature + + + + )} +
+ ); + }, + size: 80, + }; + + // ---------------------------------------------------------------- + // 2) Regular columns grouped by group name + // ---------------------------------------------------------------- + // 2-1) groupMap: { [groupName]: ColumnDef[] } + const groupMap: Record[]> = {}; + + poaColumnsConfig.forEach((cfg) => { + // Use "_noGroup" if no group is specified + const groupName = cfg.group || "_noGroup"; + + if (!groupMap[groupName]) { + groupMap[groupName] = []; + } + + // Child column definition + const childCol: ColumnDef = { + accessorKey: cfg.id, + enableResizing: true, + header: ({ column }) => ( + + ), + meta: { + excelHeader: cfg.excelHeader, + group: cfg.group, + type: cfg.type, + }, + cell: ({ cell }) => { + const value = cell.getValue(); + + if (cfg.type === "date") { + const dateVal = value as Date; + return ( +
+ {formatDate(dateVal)} +
+ ); + } + if (cfg.type === "number") { + const numVal = value as number; + return ( +
+ {numVal ? numVal.toLocaleString() : "-"} +
+ ); + } + return ( +
+ {value ?? "-"} +
+ ); + }, + }; + + groupMap[groupName].push(childCol); + }); + + // ---------------------------------------------------------------- + // 2-2) Create actual parent columns (groups) from the groupMap + // ---------------------------------------------------------------- + const nestedColumns: ColumnDef[] = []; + + // Order can be fixed by pre-defining group order or sorting + Object.entries(groupMap).forEach(([groupName, colDefs]) => { + if (groupName === "_noGroup") { + // No group → Add as top-level columns + nestedColumns.push(...colDefs); + } else { + // Parent column + nestedColumns.push({ + id: groupName, + header: groupName, + columns: colDefs, + }); + } + }); + + // ---------------------------------------------------------------- + // 3) Final column array: nestedColumns + actionsColumn + // ---------------------------------------------------------------- + return [ + ...nestedColumns, + actionsColumn, + ]; +} \ No newline at end of file -- cgit v1.2.3