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
166
167
168
169
170
171
172
173
174
175
176
|
"use client";
import * as React from "react";
import { type ColumnDef } from "@tanstack/react-table";
import { format } from "date-fns";
import { ko } from "date-fns/locale";
import { Badge } from "@/components/ui/badge";
import { Button } from "@/components/ui/button";
import { Checkbox } from "@/components/ui/checkbox";
import {
DropdownMenu,
DropdownMenuContent,
DropdownMenuItem,
DropdownMenuTrigger,
DropdownMenuShortcut,
} from "@/components/ui/dropdown-menu";
import { MoreHorizontal, Eye, Edit, Trash2 } from "lucide-react";
import type { DataTableRowAction } from "@/types/table";
import { complianceSurveyTemplates } from "@/db/schema/compliance";
import { DataTableColumnHeaderSimple } from "@/components/data-table/data-table-column-simple-header";
interface GetColumnsProps {
setRowAction: React.Dispatch<React.SetStateAction<DataTableRowAction<typeof complianceSurveyTemplates.$inferSelect> | null>>;
}
export function getColumns({ setRowAction }: GetColumnsProps): ColumnDef<typeof complianceSurveyTemplates.$inferSelect>[] {
// ----------------------------------------------------------------
// 1) select 컬럼 (체크박스)
// ----------------------------------------------------------------
const selectColumn: ColumnDef<typeof complianceSurveyTemplates.$inferSelect> = {
id: "select",
header: ({ table }) => (
<Checkbox
checked={
table.getIsAllPageRowsSelected() ||
(table.getIsSomePageRowsSelected() && "indeterminate")
}
onCheckedChange={(value) => table.toggleAllPageRowsSelected(!!value)}
aria-label="Select all"
className="translate-y-0.5"
/>
),
cell: ({ row }) => (
<Checkbox
checked={row.getIsSelected()}
onCheckedChange={(value) => row.toggleSelected(!!value)}
aria-label="Select row"
className="translate-y-0.5"
/>
),
size: 40,
enableSorting: false,
enableHiding: false,
};
// ----------------------------------------------------------------
// 2) actions 컬럼 (Dropdown 메뉴)
// ----------------------------------------------------------------
const actionsColumn: ColumnDef<typeof complianceSurveyTemplates.$inferSelect> = {
id: "actions",
header: "작업",
enableHiding: false,
cell: ({ row }) => {
const template = row.original;
return (
<DropdownMenu>
<DropdownMenuTrigger asChild>
<Button variant="ghost" className="h-8 w-8 p-0">
<span className="sr-only">메뉴 열기</span>
<MoreHorizontal className="h-4 w-4" />
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent align="end">
<DropdownMenuItem onClick={() => setRowAction({ type: 'update', row: row })}>
<Edit className="mr-2 h-4 w-4" />
Edit
</DropdownMenuItem>
<DropdownMenuItem onClick={() => setRowAction({ type: 'delete', row: row })}>
<Trash2 className="mr-2 h-4 w-4" />
Delete
<DropdownMenuShortcut>⌘⌫</DropdownMenuShortcut>
</DropdownMenuItem>
<DropdownMenuItem onClick={() => window.location.href = `/evcp/compliance/${template.id}`}>
<Eye className="mr-2 h-4 w-4" />
Detail
</DropdownMenuItem>
</DropdownMenuContent>
</DropdownMenu>
);
},
size: 40,
};
// ----------------------------------------------------------------
// 3) 일반 컬럼들 (정렬 가능)
// ----------------------------------------------------------------
const dataColumns: ColumnDef<typeof complianceSurveyTemplates.$inferSelect>[] = [
{
accessorKey: "name",
header: ({ column }) => (
<DataTableColumnHeaderSimple column={column} title="템플릿명" />
),
cell: ({ row }) => (
<div className="font-medium">{row.getValue("name")}</div>
),
enableResizing: true,
},
{
accessorKey: "description",
header: ({ column }) => (
<DataTableColumnHeaderSimple column={column} title="설명" />
),
cell: ({ row }) => (
<div className="max-w-md truncate">{row.getValue("description")}</div>
),
enableResizing: true,
},
{
accessorKey: "version",
header: ({ column }) => (
<DataTableColumnHeaderSimple column={column} title="버전" />
),
cell: ({ row }) => (
<Badge variant="secondary">{row.getValue("version")}</Badge>
),
enableResizing: true,
},
{
accessorKey: "isActive",
header: ({ column }) => (
<DataTableColumnHeaderSimple column={column} title="상태" />
),
cell: ({ row }) => {
const isActive = row.getValue("isActive") as boolean;
return (
<Badge variant={isActive ? "default" : "secondary"}>
{isActive ? "활성" : "비활성"}
</Badge>
);
},
enableResizing: true,
},
{
accessorKey: "createdAt",
header: ({ column }) => (
<DataTableColumnHeaderSimple column={column} title="생성일" />
),
cell: ({ row }) => {
const date = row.getValue("createdAt") as Date;
return date ? format(new Date(date), 'yyyy-MM-dd', { locale: ko }) : '-';
},
enableResizing: true,
},
{
accessorKey: "updatedAt",
header: ({ column }) => (
<DataTableColumnHeaderSimple column={column} title="수정일" />
),
cell: ({ row }) => {
const date = row.getValue("updatedAt") as Date;
return date ? format(new Date(date), 'yyyy-MM-dd', { locale: ko }) : '-';
},
enableResizing: true,
},
];
// ----------------------------------------------------------------
// 4) 최종 컬럼 배열: select, dataColumns, actions
// ----------------------------------------------------------------
return [
selectColumn,
...dataColumns,
actionsColumn,
];
}
|