blob: 16df1a1936d11e7bda4a794e2e4a7674f0af675a (
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
|
// components/vendor-items/item-table-toolbar-actions.tsx
"use client"
import * as React from "react"
import { type Table } from "@tanstack/react-table"
import { Download, Upload } from "lucide-react"
import { toast } from "sonner"
import { exportTableToExcel } from "@/lib/export"
import { Button } from "@/components/ui/button"
// 만약 서버 액션이나 API 라우트를 이용해 업로드 처리한다면 import
import { importTasksExcel } from "@/lib/tasks/service" // 예시
import {
VendorMaterialsView
} from "@/db/schema/vendors"
import { AddItemDialog } from "./add-item-dialog"
import { DeleteVendorItemsDialog } from "./delete-vendor-items-dialog"
interface VendorsTableToolbarActionsProps {
table: Table<VendorMaterialsView>
vendorId: number
}
export function VendorsTableToolbarActions({ table, vendorId }: VendorsTableToolbarActionsProps) {
// 파일 input을 숨기고, 버튼 클릭 시 참조해 클릭하는 방식
const fileInputRef = React.useRef<HTMLInputElement>(null)
// 선택된 행들 가져오기
const selectedRows = table.getFilteredSelectedRowModel().rows
// 파일이 선택되었을 때 처리
async function onFileChange(event: React.ChangeEvent<HTMLInputElement>) {
const file = event.target.files?.[0]
if (!file) return
// 파일 초기화 (동일 파일 재업로드 시에도 onChange가 트리거되도록)
event.target.value = ""
// 서버 액션 or API 호출
try {
// 예: 서버 액션 호출
const { errorFile, errorMessage } = await importTasksExcel(file)
if (errorMessage) {
toast.error(errorMessage)
}
if (errorFile) {
// 에러 엑셀을 다운로드
const url = URL.createObjectURL(errorFile)
const link = document.createElement("a")
link.href = url
link.download = "errors.xlsx"
link.click()
URL.revokeObjectURL(url)
} else {
// 성공
toast.success("Import success")
// 필요 시 revalidateTag("tasks") 등
}
} catch (err) {
toast.error("파일 업로드 중 오류가 발생했습니다.")
}
}
function handleImportClick() {
// 숨겨진 <input type="file" /> 요소를 클릭
fileInputRef.current?.click()
}
return (
<div className="flex items-center gap-2">
<AddItemDialog vendorId={vendorId} />
{/* 삭제 버튼 - 선택된 행이 있을 때만 표시 */}
{selectedRows.length > 0 && (
<DeleteVendorItemsDialog
vendorId={vendorId}
items={selectedRows.map((row) => row.original)}
onSuccess={() => {
// 삭제 성공 후 선택 해제
table.toggleAllPageRowsSelected(false)
}}
/>
)}
{/** Import 버튼 (파일 업로드) */}
<Button variant="outline" size="sm" className="gap-2" onClick={handleImportClick}>
<Upload className="size-4" aria-hidden="true" />
<span className="hidden sm:inline">Import</span>
</Button>
{/*
실제로는 숨겨진 input과 연결:
- accept=".xlsx,.xls" 등으로 Excel 파일만 업로드 허용
*/}
<input
ref={fileInputRef}
type="file"
accept=".xlsx,.xls"
className="hidden"
onChange={onFileChange}
/>
{/** Export 버튼 */}
<Button
variant="outline"
size="sm"
onClick={() =>
exportTableToExcel(table, {
filename: "vendor-items",
excludeColumns: ["select", "actions"],
})
}
className="gap-2"
>
<Download className="size-4" aria-hidden="true" />
<span className="hidden sm:inline">Export</span>
</Button>
</div>
)
}
|