summaryrefslogtreecommitdiff
path: root/lib/poa/table/poa-table-columns.tsx
blob: 7aad609ef981c34f7a660590ca8eb1070426d2db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
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<React.SetStateAction<DataTableRowAction<POADetail> | null>>
}

/**
 * tanstack table column definitions with nested headers
 */
export function getColumns({ setRowAction }: GetColumnsProps): ColumnDef<POADetail>[] {
  // ----------------------------------------------------------------
  // 1) actions column (buttons for item info)
  // ----------------------------------------------------------------
  const actionsColumn: ColumnDef<POADetail> = {
    id: "actions",
    enableHiding: false,
    cell: function Cell({ row }) {
      const hasSignature = row.original.hasSignature;
      
      return (
        <div className="flex items-center space-x-1">
          {/* Item Info Button */}
          <TooltipProvider>
            <Tooltip>
              <TooltipTrigger asChild>
                <Button
                  variant="ghost"
                  size="icon"
                  onClick={() => setRowAction({ row, type: "items" })}
                >
                  <InfoIcon className="h-4 w-4" aria-hidden="true" />
                </Button>
              </TooltipTrigger>
              <TooltipContent>
                View Item Info
              </TooltipContent>
            </Tooltip>
          </TooltipProvider>
          
          {/* Signature Request Button - only show if no signature exists */}
          {!hasSignature && (
            <TooltipProvider>
              <Tooltip>
                <TooltipTrigger asChild>
                  <Button
                    variant="ghost"
                    size="icon"
                    onClick={() => setRowAction({ row, type: "signature" })}
                  >
                    <PenIcon className="h-4 w-4" aria-hidden="true" />
                  </Button>
                </TooltipTrigger>
                <TooltipContent>
                  Request Electronic Signature
                </TooltipContent>
              </Tooltip>
            </TooltipProvider>
          )}
        </div>
      );
    },
    size: 80,
  };

  // ----------------------------------------------------------------
  // 2) Regular columns grouped by group name
  // ----------------------------------------------------------------
  // 2-1) groupMap: { [groupName]: ColumnDef<POADetail>[] }
  const groupMap: Record<string, ColumnDef<POADetail>[]> = {};

  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<POADetail> = {
      accessorKey: cfg.id,
      enableResizing: true,
      header: ({ column }) => (
        <DataTableColumnHeaderSimple column={column} title={cfg.label} />
      ),
      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 (
            <div className="text-sm">
              {formatDate(dateVal, "KR")}
            </div>
          );
        }
        if (cfg.type === "number") {
          const numVal = value as number;
          return (
            <div className="text-sm">
              {numVal ? numVal.toLocaleString() : "-"}
            </div>
          );
        }
        return (
          <div className="text-sm">
            {value ?? "-"}
          </div>
        );
      },
    };

    groupMap[groupName].push(childCol);
  });

  // ----------------------------------------------------------------
  // 2-2) Create actual parent columns (groups) from the groupMap
  // ----------------------------------------------------------------
  const nestedColumns: ColumnDef<POADetail>[] = [];

  // 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,
  ];
}