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
|
import * as React from "react"
import { type Table } from "@tanstack/react-table"
import {
Plus,
Send,
Users,
Download,
RefreshCw,
FileText,
MessageSquare,
CheckCircle2
} from "lucide-react"
import { toast } from "sonner"
import { useRouter } from "next/navigation"
import { Button } from "@/components/ui/button"
import {
DropdownMenu,
DropdownMenuContent,
DropdownMenuItem,
DropdownMenuSeparator,
DropdownMenuTrigger,
} from "@/components/ui/dropdown-menu"
import {
RequestDocumentsDialog,
RequestEvaluationDialog,
} from "./periodic-evaluation-action-dialogs"
import { PeriodicEvaluationView } from "@/db/schema"
import { exportTableToExcel } from "@/lib/export"
import { FinalizeEvaluationDialog } from "./periodic-evaluation-finalize-dialogs"
import { useAuthRole } from "@/hooks/use-auth-role"
interface PeriodicEvaluationsTableToolbarActionsProps {
table: Table<PeriodicEvaluationView>
onRefresh?: () => void
}
export function PeriodicEvaluationsTableToolbarActions({
table,
onRefresh
}: PeriodicEvaluationsTableToolbarActionsProps) {
const [isLoading, setIsLoading] = React.useState(false)
const [createEvaluationDialogOpen, setCreateEvaluationDialogOpen] = React.useState(false)
const [requestDocumentsDialogOpen, setRequestDocumentsDialogOpen] = React.useState(false)
const [requestEvaluationDialogOpen, setRequestEvaluationDialogOpen] = React.useState(false)
const [finalizeEvaluationDialogOpen, setFinalizeEvaluationDialogOpen] = React.useState(false)
const router = useRouter()
// 권한 체크 (방법 1 또는 방법 2 중 선택)
const { hasRole, isLoading: roleLoading } = useAuthRole()
const canManageEvaluations = hasRole('정기평가') || hasRole('admin')
// 선택된 행들
const selectedRows = table.getFilteredSelectedRowModel().rows
const hasSelection = selectedRows.length > 0
// ✅ selectedEvaluations를 useMemo로 안정화
const selectedEvaluations = React.useMemo(() => {
return selectedRows.map(row => row.original)
}, [selectedRows])
// ✅ 각 상태별 평가들을 개별적으로 메모이제이션
const pendingSubmissionEvaluations = React.useMemo(() => {
return table
.getFilteredSelectedRowModel()
.rows
.map(row => row.original)
.filter(e => e.status === "PENDING_SUBMISSION"||e.status === "PENDING");
}, [table.getFilteredSelectedRowModel().rows]);
const submittedEvaluations = React.useMemo(() => {
return table
.getFilteredSelectedRowModel()
.rows
.map(row => row.original)
.filter(e => e.status === "SUBMITTED" || e.status === "PENDING_SUBMISSION");
}, [table.getFilteredSelectedRowModel().rows]);
const inReviewEvaluations = React.useMemo(() => {
return table
.getFilteredSelectedRowModel()
.rows
.map(row => row.original)
.filter(e => e.status === "IN_REVIEW");
}, [table.getFilteredSelectedRowModel().rows]);
const reviewCompletedEvaluations = React.useMemo(() => {
return table
.getFilteredSelectedRowModel()
.rows
.map(row => row.original)
.filter(e => e.status === "REVIEW_COMPLETED");
}, [table.getFilteredSelectedRowModel().rows]);
const finalizedEvaluations = React.useMemo(() => {
return table
.getFilteredSelectedRowModel()
.rows
.map(row => row.original)
.filter(e => e.status === "FINALIZED");
}, [table.getFilteredSelectedRowModel().rows]);
// ✅ 선택된 항목들의 상태 분석 - 안정화된 개별 배열들 사용
const selectedStats = React.useMemo(() => {
const pendingSubmission = pendingSubmissionEvaluations.length
const submitted = submittedEvaluations.length
const inReview = inReviewEvaluations.length
const reviewCompleted = reviewCompletedEvaluations.length
const finalized = finalizedEvaluations.length
// 협력업체에게 자료 요청 가능: PENDING_SUBMISSION 상태
const canRequestDocuments = pendingSubmission > 0
// 평가자에게 평가 요청 가능: SUBMITTED 상태 (제출됐지만 아직 평가 시작 안됨)
const canRequestEvaluation = submitted > 0
// 평가 확정 가능: REVIEW_COMPLETED 상태
const canFinalizeEvaluation = reviewCompleted > 0
return {
pendingSubmission,
submitted,
inReview,
reviewCompleted,
finalized,
canRequestDocuments,
canRequestEvaluation,
canFinalizeEvaluation,
total: selectedEvaluations.length
}
}, [
pendingSubmissionEvaluations.length,
submittedEvaluations.length,
inReviewEvaluations.length,
reviewCompletedEvaluations.length,
finalizedEvaluations.length,
selectedEvaluations.length
])
// ----------------------------------------------------------------
// 다이얼로그 성공 핸들러
// ----------------------------------------------------------------
const handleActionSuccess = React.useCallback(() => {
table.resetRowSelection()
onRefresh?.()
router.refresh()
}, [table, onRefresh, router])
// ----------------------------------------------------------------
// 내보내기 핸들러
// ----------------------------------------------------------------
const handleExport = React.useCallback(() => {
exportTableToExcel(table, {
filename: "periodic-evaluations",
excludeColumns: ["select", "actions"],
})
}, [table])
// 권한이 없거나 로딩 중인 경우 내보내기 버튼만 표시
if (roleLoading) {
return (
<div className="flex items-center gap-2">
<div className="flex items-center gap-1 border-l pl-2 ml-2">
<Button
variant="outline"
size="sm"
disabled
className="gap-2"
>
<Download className="size-4 animate-spin" aria-hidden="true" />
<span className="hidden sm:inline">로딩중...</span>
</Button>
</div>
</div>
)
}
return (
<>
<div className="flex items-center gap-2">
{/* 유틸리티 버튼들 */}
<div className="flex items-center gap-1 border-l pl-2 ml-2">
<Button
variant="outline"
size="sm"
onClick={handleExport}
className="gap-2"
>
<Download className="size-4" aria-hidden="true" />
<span className="hidden sm:inline">내보내기</span>
</Button>
</div>
{/* 선택된 항목 액션 버튼들 - 정기평가 권한이 있는 경우만 표시 */}
{canManageEvaluations && hasSelection && (
<div className="flex items-center gap-1 border-l pl-2 ml-2">
{/* 협력업체 자료 요청 버튼 */}
{selectedStats.canRequestDocuments && (
<Button
variant="outline"
size="sm"
className="gap-2 text-blue-600 border-blue-200 hover:bg-blue-50"
onClick={() => setRequestDocumentsDialogOpen(true)}
disabled={isLoading}
>
<FileText className="size-4" aria-hidden="true" />
<span className="hidden sm:inline">
자료 요청 ({selectedStats.pendingSubmission})
</span>
</Button>
)}
{/* 평가자 평가 요청 버튼 */}
{selectedStats.canRequestEvaluation && (
<Button
variant="outline"
size="sm"
className="gap-2 text-green-600 border-green-200 hover:bg-green-50"
onClick={() => setRequestEvaluationDialogOpen(true)}
disabled={isLoading}
>
<Users className="size-4" aria-hidden="true" />
<span className="hidden sm:inline">
평가 요청 ({selectedStats.submitted})
</span>
</Button>
)}
{/* 평가 확정 버튼 */}
{selectedStats.canFinalizeEvaluation && (
<Button
variant="outline"
size="sm"
className="gap-2 text-purple-600 border-purple-200 hover:bg-purple-50"
onClick={() => setFinalizeEvaluationDialogOpen(true)}
disabled={isLoading}
>
<CheckCircle2 className="size-4" aria-hidden="true" />
<span className="hidden sm:inline">
평가 확정 ({selectedStats.reviewCompleted})
</span>
</Button>
)}
</div>
)}
{/* 권한이 없는 경우 안내 메시지 (선택사항) */}
{!canManageEvaluations && hasSelection && (
<div className="flex items-center gap-1 border-l pl-2 ml-2">
<div className="text-xs text-muted-foreground px-2 py-1">
평가 관리 권한이 필요합니다
</div>
</div>
)}
</div>
{/* 다이얼로그들 - 권한이 있는 경우만 렌더링 */}
{canManageEvaluations && (
<>
{/* 협력업체 자료 요청 다이얼로그 */}
<RequestDocumentsDialog
open={requestDocumentsDialogOpen}
onOpenChange={setRequestDocumentsDialogOpen}
evaluations={selectedEvaluations}
onSuccess={handleActionSuccess}
/>
{/* 평가자 평가 요청 다이얼로그 */}
<RequestEvaluationDialog
open={requestEvaluationDialogOpen}
onOpenChange={setRequestEvaluationDialogOpen}
evaluations={selectedEvaluations}
onSuccess={handleActionSuccess}
/>
{/* 평가 확정 다이얼로그 */}
<FinalizeEvaluationDialog
open={finalizeEvaluationDialogOpen}
onOpenChange={setFinalizeEvaluationDialogOpen}
evaluations={reviewCompletedEvaluations}
onSuccess={handleActionSuccess}
/>
</>
)}
</>
)
}
|