summaryrefslogtreecommitdiff
path: root/lib/qna/table/qna-table-columns.tsx
blob: 01431e359531b4c31146f4328fc65d851716dc08 (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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
"use client"

import * as React from "react"
import { type ColumnDef } from "@tanstack/react-table"
import { useRouter } from "next/navigation"
import { 
  MoreHorizontal, 
  Eye, 
  Edit,
  Trash2,
  MessageSquare,
  MessageCircle,
  Clock,
  Building2,
  User,
  CheckCircle2,
  AlertCircle,
  TrendingUp
} from "lucide-react"

import { Button } from "@/components/ui/button"
import { Checkbox } from "@/components/ui/checkbox"
import {
  DropdownMenu,
  DropdownMenuContent,
  DropdownMenuItem,
  DropdownMenuSeparator,
  DropdownMenuShortcut,
  DropdownMenuTrigger,
} from "@/components/ui/dropdown-menu"
import { Badge } from "@/components/ui/badge"
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"
import { Tooltip, TooltipContent, TooltipTrigger } from "@/components/ui/tooltip"

import { formatDate } from "@/lib/utils"
import { QnaViewSelect } from "@/db/schema"
import type { DataTableRowAction } from "@/types/table"
import { DataTableColumnHeaderSimple } from "@/components/data-table/data-table-column-simple-header"


type NextRouter = ReturnType<typeof useRouter>;

interface GetColumnsOptions {
  setRowAction: React.Dispatch<React.SetStateAction<DataTableRowAction<QnaViewSelect> | null>>
  router: NextRouter;
  currentUserId?: number | string;   // ← 추가

}

export function getColumns({ setRowAction, router, currentUserId }: GetColumnsOptions): ColumnDef<QnaViewSelect>[] {
  return [
    // 선택 체크박스
    {
      id: "select",
      header: ({ table }) => (
        <Checkbox
          checked={
            table.getIsAllPageRowsSelected() ||
            (table.getIsSomePageRowsSelected() && "indeterminate")
          }
          onCheckedChange={(value) => table.toggleAllPageRowsSelected(!!value)}
          aria-label="모두 선택"
          className="translate-y-[2px]"
        />
      ),
      cell: ({ row }) => (
        <Checkbox
          checked={row.getIsSelected()}
          onCheckedChange={(value) => row.toggleSelected(!!value)}
          aria-label="행 선택"
          className="translate-y-[2px]"
        />
      ),
      enableSorting: false,
      enableHiding: false,
    },

    // 제목 (클릭 시 상세 페이지 이동)
    {
      accessorKey: "title",
      header: ({ column }) => (
        <DataTableColumnHeaderSimple column={column} title="제목" />
      ),
      cell: ({ row }) => {
        const qna = row.original
        
        return (
          <div className="flex flex-col gap-1">
            <Button
              variant="link"
              className="h-auto p-0 text-left justify-start font-medium text-foreground hover:text-primary"
              onClick={() => router.push(`/evcp/qna/${qna.id}`)}
            >
              <span className="line-clamp-2 max-w-[300px]">
                {qna.title}
              </span>
            </Button>
            
            {/* 상태 배지들 */}
            <div className="flex items-center gap-1 flex-wrap">
              {qna.hasAnswers && (
                <Badge variant="secondary" className="text-xs">
                  <CheckCircle2 className="w-3 h-3 mr-1" />
                  답변됨
                </Badge>
              )}
              {!qna.hasAnswers && (
                <Badge variant="outline" className="text-xs">
                  <AlertCircle className="w-3 h-3 mr-1" />
                  답변 대기
                </Badge>
              )}
              {qna.isPopular && (
                <Badge variant="default" className="text-xs">
                  <TrendingUp className="w-3 h-3 mr-1" />
                  인기
                </Badge>
              )}
            </div>
          </div>
        )
      },
      enableSorting: true,
      enableHiding: false,
    },

    // 작성자 정보
    {
      accessorKey: "authorName",
      header: ({ column }) => (
        <DataTableColumnHeaderSimple column={column} title="작성자" />
      ),
      cell: ({ row }) => {
        const qna = row.original
        
        return (
          <div className="flex items-center gap-2">
            <Avatar className="h-8 w-8">
              <AvatarImage src={qna.authorImageUrl || undefined} />
              <AvatarFallback>
                {qna.authorName?.slice(0, 2) || "??"}
              </AvatarFallback>
            </Avatar>
            <div className="flex flex-col">
              <span className="font-medium text-sm">{qna.authorName}</span>
              <span className="text-xs text-muted-foreground">
                {qna.authorEmail}
              </span>
            </div>
          </div>
        )
      },
      enableSorting: true,
    },

    // 회사 정보
    {
      accessorKey: "companyName",
      header: ({ column }) => (
        <DataTableColumnHeaderSimple 
          column={column} 
          title="회사"
        />
      ),
      cell: ({ row }) => {
        const qna = row.original
        
        return (
          <div className="flex flex-col gap-1">
            <span className="font-medium text-sm">
              {qna.companyName || "미지정"}
            </span>
            {qna.vendorType && (
              <span
                className="text-xs w-fit"
              >
                {qna.vendorType === "vendor" ? "일반 벤더" : "기술 벤더"}
              </span>
            )}
          </div>
        )
      },
      enableSorting: true,
    },

    // 도메인
    {
      accessorKey: "category",
      header: "카테고리",
      cell: ({ row }) => {
        const domain = row.original.category
        return (
          <Badge variant="outline" className="text-xs">
            {domain}
          </Badge>
        )
      },
      enableSorting: true,
    },

    // 답변/댓글 통계
    {
      id: "statistics",
      header: ({ column }) => (
        <DataTableColumnHeaderSimple column={column} title="활동" />
      ),
      cell: ({ row }) => {
        const qna = row.original
        
        return (
          <div className="flex items-center gap-3">
            <Tooltip>
              <TooltipTrigger asChild>
                <div className="flex items-center gap-1 text-sm">
                  <MessageSquare className="h-4 w-4 text-blue-500" />
                  <span className="font-medium">{qna.totalAnswers || 0}</span>
                </div>
              </TooltipTrigger>
              <TooltipContent>답변 수</TooltipContent>
            </Tooltip>
            
            <Tooltip>
              <TooltipTrigger asChild>
                <div className="flex items-center gap-1 text-sm">
                  <MessageCircle className="h-4 w-4 text-green-500" />
                  <span className="font-medium">{qna.totalComments || 0}</span>
                </div>
              </TooltipTrigger>
              <TooltipContent>댓글 수</TooltipContent>
            </Tooltip>
          </div>
        )
      },
      enableSorting: false,
    },

    // 작성일
    {
      accessorKey: "createdAt",
      header: ({ column }) => (
        <DataTableColumnHeaderSimple column={column} title="작성일" />
      ),
      cell: ({ row }) => (
        <div className="text-sm">
          {formatDate(row.original.createdAt)}
        </div>
      ),
      enableSorting: true,
    },

    // 최근 활동
    {
      accessorKey: "lastActivityAt",
      header: ({ column }) => (
        <DataTableColumnHeaderSimple 
          column={column} 
          title="최근 활동"
        />
      ),
      cell: ({ row }) => {
        const lastActivity = row.original.lastActivityAt
        
        return (
          <div className="text-sm">
            {lastActivity ? formatDate(lastActivity) : "없음"}
          </div>
        )
      },
      enableSorting: true,
    },

    // 액션 메뉴
    {
      id: "actions",
      cell: ({ row }) => {
        const qna = row.original
        const isAuthor = qna.author === currentUserId  

        return (
          <DropdownMenu>
            <DropdownMenuTrigger asChild>
              <Button
                aria-label="메뉴 열기"
                variant="ghost"
                className="flex h-8 w-8 p-0 data-[state=open]:bg-muted"
              >
                <MoreHorizontal className="h-4 w-4" />
              </Button>
            </DropdownMenuTrigger>
            <DropdownMenuContent align="end" className="w-[160px]">
          {/* ───────── 공통 : 상세 보기 ───────── */}
          <DropdownMenuItem onClick={() => router.push(`/evcp/qna/${qna.id}`)}>
            <Eye className="mr-2 h-4 w-4" />
            상세보기
          </DropdownMenuItem>

          {/* ───────── 본인 글일 때만 노출 ───────── */}
          {isAuthor && (
            <>
              <DropdownMenuItem onClick={() => setRowAction({ type: "update", row })}>
                <Edit className="mr-2 h-4 w-4" />
                수정
              </DropdownMenuItem>

              <DropdownMenuSeparator />

              <DropdownMenuItem
                onClick={() => setRowAction({ type: "delete", row })}
                className="text-destructive focus:text-destructive"
              >
                <Trash2 className="mr-2 h-4 w-4" />
                삭제
                <DropdownMenuShortcut>⌘⌫</DropdownMenuShortcut>
              </DropdownMenuItem>
            </>
          )}
        </DropdownMenuContent>
          </DropdownMenu>
        )
      },
      enableSorting: false,
      enableHiding: false,
    },
  ]
}