summaryrefslogtreecommitdiff
path: root/lib/evaluation-target-list/table/evaluation-targets-toolbar-actions.tsx
blob: 82b7c97c27c12b1ca27c1cd713bfe7b5cbf63df7 (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
"use client"

import * as React from "react"
import { type Table } from "@tanstack/react-table"
import { 
  Plus, 
  Check, 
  MessageSquare, 
  X, 
  Download,
  Upload,
  RefreshCw,
  Settings
} 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 { ManualCreateEvaluationTargetDialog } from "./manual-create-evaluation-target-dialog"
import { 
  ConfirmTargetsDialog,
  ExcludeTargetsDialog,
  RequestReviewDialog
} from "./evaluation-target-action-dialogs"
import { EvaluationTargetWithDepartments } from "@/db/schema"
import { exportTableToExcel } from "@/lib/export"

interface EvaluationTargetsTableToolbarActionsProps {
  table: Table<EvaluationTargetWithDepartments>
  onRefresh?: () => void
}

export function EvaluationTargetsTableToolbarActions({ 
  table, 
  onRefresh 
}: EvaluationTargetsTableToolbarActionsProps) {
  const [isLoading, setIsLoading] = React.useState(false)
  const [manualCreateDialogOpen, setManualCreateDialogOpen] = React.useState(false)
  const [confirmDialogOpen, setConfirmDialogOpen] = React.useState(false)
  const [excludeDialogOpen, setExcludeDialogOpen] = React.useState(false)
  const [reviewDialogOpen, setReviewDialogOpen] = React.useState(false)
  const router = useRouter()

  // 선택된 행들
  const selectedRows = table.getFilteredSelectedRowModel().rows
  const hasSelection = selectedRows.length > 0
  const selectedTargets = selectedRows.map(row => row.original)

  // 선택된 항목들의 상태 분석
  const selectedStats = React.useMemo(() => {
    const pending = selectedTargets.filter(t => t.status === "PENDING").length
    const confirmed = selectedTargets.filter(t => t.status === "CONFIRMED").length
    const excluded = selectedTargets.filter(t => t.status === "EXCLUDED").length
    const consensusTrue = selectedTargets.filter(t => t.consensusStatus === true).length
    const consensusFalse = selectedTargets.filter(t => t.consensusStatus === false).length
    const consensusNull = selectedTargets.filter(t => t.consensusStatus === null).length

    return {
      pending,
      confirmed,
      excluded,
      consensusTrue,
      consensusFalse,
      consensusNull,
      canConfirm: pending > 0 && consensusTrue > 0,
      canExclude: pending > 0,
      canRequestReview: pending > 0
    }
  }, [selectedTargets])

  // ----------------------------------------------------------------
  // 신규 평가 대상 생성 (자동)
  // ----------------------------------------------------------------
  const handleAutoGenerate = async () => {
    setIsLoading(true)
    try {
      // TODO: 발주실적에서 자동 추출 API 호출
      toast.success("평가 대상이 자동으로 생성되었습니다.")
      router.refresh()
    } catch (error) {
      console.error('Error auto generating targets:', error)
      toast.error("자동 생성 중 오류가 발생했습니다.")
    } finally {
      setIsLoading(false)
    }
  }

  // ----------------------------------------------------------------
  // 신규 평가 대상 생성 (수동)
  // ----------------------------------------------------------------
  const handleManualCreate = () => {
    setManualCreateDialogOpen(true)
  }

  // ----------------------------------------------------------------
  // 다이얼로그 성공 핸들러
  // ----------------------------------------------------------------
  const handleActionSuccess = () => {
    table.resetRowSelection()
    onRefresh?.()
    router.refresh()
  }

  return (
    <>
      <div className="flex items-center gap-2">
        {/* 신규 생성 드롭다운 */}
        <DropdownMenu>
          <DropdownMenuTrigger asChild>
            <Button
              variant="default"
              size="sm"
              className="gap-2"
              disabled={isLoading}
            >
              <Plus className="size-4" aria-hidden="true" />
              <span className="hidden sm:inline">신규 생성</span>
            </Button>
          </DropdownMenuTrigger>
          <DropdownMenuContent align="start">
            <DropdownMenuItem onClick={handleAutoGenerate} disabled={isLoading}>
              <RefreshCw className="size-4 mr-2" />
              자동 생성 (발주실적 기반)
            </DropdownMenuItem>
            <DropdownMenuItem onClick={handleManualCreate}>
              <Plus className="size-4 mr-2" />
              수동 생성
            </DropdownMenuItem>
          </DropdownMenuContent>
        </DropdownMenu>

        {/* 유틸리티 버튼들 */}
        <div className="flex items-center gap-1 border-l pl-2 ml-2">
          <Button
            variant="outline"
            size="sm"
            onClick={() =>
              exportTableToExcel(table, {
                filename: "vendor-target-list",
                excludeColumns: ["select", "actions"],
              })
            }
            className="gap-2"
          >
            <Download className="size-4" aria-hidden="true" />
            <span className="hidden sm:inline">내보내기</span>
          </Button>
        </div>

        {/* 선택된 항목 액션 버튼들 */}
        {hasSelection && (
          <div className="flex items-center gap-1 border-l pl-2 ml-2">
            {/* 확정 버튼 */}
            {selectedStats.canConfirm && (
              <Button
                variant="success"
                size="sm"
                className="gap-2"
                onClick={() => setConfirmDialogOpen(true)}
                disabled={isLoading}
              >
                <Check className="size-4" aria-hidden="true" />
                <span className="hidden sm:inline">
                  확정 ({selectedStats.consensusTrue})
                </span>
              </Button>
            )}

            {/* 제외 버튼 */}
            {selectedStats.canExclude && (
              <Button
                variant="destructive"
                size="sm"
                className="gap-2"
                onClick={() => setExcludeDialogOpen(true)}
                disabled={isLoading}
              >
                <X className="size-4" aria-hidden="true" />
                <span className="hidden sm:inline">
                  제외 ({selectedStats.pending})
                </span>
              </Button>
            )}

            {/* 의견 요청 버튼 */}
            {selectedStats.canRequestReview && (
              <Button
                variant="outline"
                size="sm"
                className="gap-2"
                onClick={() => setReviewDialogOpen(true)}
                disabled={isLoading}
              >
                <MessageSquare className="size-4" aria-hidden="true" />
                <span className="hidden sm:inline">
                  의견 요청 ({selectedStats.pending})
                </span>
              </Button>
            )}
          </div>
        )}
      </div>

      {/* 수동 생성 다이얼로그 */}
      <ManualCreateEvaluationTargetDialog
        open={manualCreateDialogOpen}
        onOpenChange={setManualCreateDialogOpen}
      />

      {/* 확정 컨펌 다이얼로그 */}
      <ConfirmTargetsDialog
        open={confirmDialogOpen}
        onOpenChange={setConfirmDialogOpen}
        targets={selectedTargets}
        onSuccess={handleActionSuccess}
      />

      {/* 제외 컨펌 다이얼로그 */}
      <ExcludeTargetsDialog
        open={excludeDialogOpen}
        onOpenChange={setExcludeDialogOpen}
        targets={selectedTargets}
        onSuccess={handleActionSuccess}
      />

      {/* 의견 요청 다이얼로그 */}
      <RequestReviewDialog
        open={reviewDialogOpen}
        onOpenChange={setReviewDialogOpen}
        targets={selectedTargets}
        onSuccess={handleActionSuccess}
      />

      {/* 선택 정보 표시 */}
      {/* {hasSelection && (
        <div className="text-xs text-muted-foreground">
          선택된 {selectedRows.length}개 항목: 
          대기중 {selectedStats.pending}개, 
          확정 {selectedStats.confirmed}개, 
          제외 {selectedStats.excluded}개
          {selectedStats.consensusTrue > 0 && ` | 의견일치 ${selectedStats.consensusTrue}개`}
          {selectedStats.consensusFalse > 0 && ` | 의견불일치 ${selectedStats.consensusFalse}개`}
        </div>
      )} */}
    </>
  )
}