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
|
"use client"
import * as React from "react"
import { useRouter } from "next/navigation"
import type {
DataTableAdvancedFilterField,
DataTableFilterField,
DataTableRowAction,
} from "@/types/table"
import { toast } from "sonner"
import { useDataTable } from "@/hooks/use-data-table"
import { DataTable } from "@/components/data-table/data-table"
import { DataTableAdvancedToolbar } from "@/components/data-table/data-table-advanced-toolbar"
import { getColumns } from "./tbe-table-columns"
import { fetchRfqAttachmentsbyCommentId, getTBEforVendor } from "../../rfqs/service"
import { CommentSheet, TbeComment } from "./comments-sheet"
import { TbeVendorFields } from "@/config/vendorTbeColumnsConfig"
import { useTbeFileHandlers } from "./tbeFileHandler"
import { useSession } from "next-auth/react"
import { RfqDeailDialog } from "./rfq-detail-dialog"
interface VendorsTableProps {
promises: Promise<
[
Awaited<ReturnType<typeof getTBEforVendor>>,
]
>
}
export function TbeVendorTable({ promises }: VendorsTableProps) {
const { data: session } = useSession()
const userVendorId = session?.user?.companyId
const userId = Number(session?.user?.id)
// Suspense로 받아온 데이터
const [{ data, pageCount }] = React.use(promises)
const [rowAction, setRowAction] = React.useState<DataTableRowAction<TbeVendorFields> | null>(null)
// router 획득
const router = useRouter()
const [initialComments, setInitialComments] = React.useState<TbeComment[]>([])
const [isLoadingComments, setIsLoadingComments] = React.useState(false)
const [commentSheetOpen, setCommentSheetOpen] = React.useState(false)
const [selectedRfqIdForComments, setSelectedRfqIdForComments] = React.useState<number | null>(null)
const [isRfqDetailDialogOpen, setIsRfqDetailDialogOpen] = React.useState(false)
const [selectedRfqId, setSelectedRfqId] = React.useState<number | null>(null)
const [selectedRfq, setSelectedRfq] = React.useState<TbeVendorFields | null>(null)
const openVendorContactsDialog = (rfqId: number, rfq: TbeVendorFields) => {
setSelectedRfqId(rfqId)
setSelectedRfq(rfq)
setIsRfqDetailDialogOpen(true)
}
// TBE 파일 핸들러 훅 사용
const {
handleDownloadTbeTemplate,
handleUploadTbeResponse,
UploadDialog,
} = useTbeFileHandlers()
React.useEffect(() => {
if (rowAction?.type === "comments") {
// rowAction가 새로 세팅된 뒤 여기서 openCommentSheet 실행
openCommentSheet(Number(rowAction.row.original.id))
}
}, [rowAction])
async function openCommentSheet(vendorId: number) {
setInitialComments([])
setIsLoadingComments(true)
const comments = rowAction?.row.original.comments
try {
if (comments && comments.length > 0) {
const commentWithAttachments: TbeComment[] = await Promise.all(
comments.map(async (c) => {
// 서버 액션을 사용하여 코멘트 첨부 파일 가져오기
const attachments = await fetchRfqAttachmentsbyCommentId(c.id)
return {
...c,
commentedBy: userId, // DB나 API 응답에 있다고 가정
attachments,
}
})
)
setInitialComments(commentWithAttachments)
}
setSelectedRfqIdForComments(vendorId)
setCommentSheetOpen(true)
} catch (error) {
console.error("Error loading comments:", error)
toast.error("Failed to load comments")
} finally {
// End loading regardless of success/failure
setIsLoadingComments(false)
}
}
// getColumns() 호출 시, 필요한 모든 핸들러 함수 주입
const columns = React.useMemo(
() => getColumns({
setRowAction,
router,
openCommentSheet,
handleDownloadTbeTemplate,
handleUploadTbeResponse,
openVendorContactsDialog
}),
[setRowAction, router, openCommentSheet, handleDownloadTbeTemplate, handleUploadTbeResponse, openVendorContactsDialog]
)
const filterFields: DataTableFilterField<TbeVendorFields>[] = []
const advancedFilterFields: DataTableAdvancedFilterField<TbeVendorFields>[] = [
{ id: "rfqCode", label: "RFQ Code", type: "text" },
{ id: "projectCode", label: "Project Code", type: "text" },
{ id: "projectName", label: "Project Name", type: "text" },
{ id: "rfqCode", label: "RFQ Code", type: "text" },
{ id: "tbeResult", label: "TBE Result", type: "text" },
{ id: "tbeNote", label: "TBE Note", type: "text" },
{ id: "rfqCode", label: "RFQ Code", type: "text" },
{ id: "hasResponse", label: "Response?", type: "boolean" },
{ id: "rfqVendorUpdated", label: "Updated at", type: "date" },
{ id: "dueDate", label: "Project Name", type: "date" },
]
const { table } = useDataTable({
data,
columns,
pageCount,
filterFields,
enablePinning: true,
enableAdvancedFilter: true,
initialState: {
sorting: [{ id: "rfqVendorUpdated", desc: true }],
columnPinning: { right: ["comments", "tbeDocuments"] }, // tbeDocuments 컬럼을 우측에 고정
},
getRowId: (originalRow) => String(originalRow.id),
shallow: false,
clearOnDefault: true,
})
return (
<>
<DataTable table={table}>
<DataTableAdvancedToolbar
table={table}
filterFields={advancedFilterFields}
shallow={false}
/>
</DataTable>
{/* 코멘트 시트 */}
{commentSheetOpen && selectedRfqIdForComments && (
<CommentSheet
open={commentSheetOpen}
onOpenChange={setCommentSheetOpen}
rfqId={selectedRfqIdForComments}
initialComments={initialComments}
vendorId={userVendorId || 0}
currentUserId={userId || 0}
isLoading={isLoadingComments} // Pass the loading state
/>
)}
<RfqDeailDialog
isOpen={isRfqDetailDialogOpen}
onOpenChange={setIsRfqDetailDialogOpen}
rfqId={selectedRfqId}
rfq={selectedRfq}
/>
{/* TBE 파일 다이얼로그 */}
<UploadDialog />
</>
)
}
|