blob: 9200e81b17ac48c79c5bc002d1c3b2b2a3798a97 (
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
|
"use client"
import * as React from "react"
import { type Table } from "@tanstack/react-table"
import { Download, RefreshCcw, Upload } from "lucide-react"
import { toast } from "sonner"
import { exportTableToExcel } from "@/lib/export"
import { Button } from "@/components/ui/button"
import { ViewTagSubfields } from "@/db/schema/vendorData"
interface ItemsTableToolbarActionsProps {
table: Table<ViewTagSubfields>
}
export function TagNumberingTableToolbarActions({ table }: ItemsTableToolbarActionsProps) {
const [isLoading, setIsLoading] = React.useState(false)
const syncTags = async () => {
try {
setIsLoading(true)
// API 엔드포인트 호출
const response = await fetch('/api/cron/tag-types')
if (!response.ok) {
const errorData = await response.json()
throw new Error(errorData.error || 'Failed to sync tag numberings')
}
const data = await response.json()
// 성공 메시지 표시
toast.success(
`tag numberings synced successfully! ${data.result.items} items processed.`
)
// 페이지 새로고침으로 테이블 데이터 업데이트
window.location.reload()
} catch (error) {
console.error('Error syncing tag numberings:', error)
toast.error(
error instanceof Error
? error.message
: 'An error occurred while syncing tag numberings'
)
} finally {
setIsLoading(false)
}
}
return (
<div className="flex items-center gap-2">
{/** 4) Export 버튼 */}
<Button
variant="samsung"
size="sm"
className="gap-2"
onClick={syncTags}
disabled={isLoading}
>
<RefreshCcw className={`size-4 ${isLoading ? 'animate-spin' : ''}`} aria-hidden="true" />
<span className="hidden sm:inline">
{isLoading ? 'Syncing...' : 'Get Tag Numbering'}
</span>
</Button>
{/** 4) Export 버튼 */}
<Button
variant="outline"
size="sm"
onClick={() =>
exportTableToExcel(table, {
filename: "tasks",
excludeColumns: ["select", "actions"],
})
}
className="gap-2"
>
<Download className="size-4" aria-hidden="true" />
<span className="hidden sm:inline">Export</span>
</Button>
</div>
)
}
|