summaryrefslogtreecommitdiff
path: root/lib/rfqs/cbe-table/cbe-table.tsx
blob: 37fbc3f4cf16bccd81c151d7cae8eeb000d6592f (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
"use client"

import * as React from "react"
import { useRouter } from "next/navigation"
import type {
  DataTableAdvancedFilterField,
  DataTableFilterField,
  DataTableRowAction,
} from "@/types/table"

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 { fetchRfqAttachmentsbyCommentId, getCBE } from "../service"
import { getColumns } from "./cbe-table-columns"
import { VendorWithCbeFields } from "@/config/vendorCbeColumnsConfig"
import { CommentSheet, CbeComment } from "./comments-sheet"
import { useSession } from "next-auth/react" // Next-auth session hook 추가
import { VendorContactsDialog } from "./vendor-contact-dialog"
import { InviteVendorsDialog } from "./invite-vendors-dialog"
import { VendorsTableToolbarActions } from "./cbe-table-toolbar-actions"

interface VendorsTableProps {
  promises: Promise<
    [
      Awaited<ReturnType<typeof getCBE>>,
    ]
  >
  rfqId: number
}


export function CbeTable({ promises, rfqId }: VendorsTableProps) {

  // Suspense로 받아온 데이터
  const [{ data, pageCount }] = React.use(promises)
  const { data: session } = useSession() // 세션 정보 가져오기

  const currentUserId = session?.user?.id ? parseInt(session.user.id, 10) : 0
  const currentUser = session?.user


  const [rowAction, setRowAction] = React.useState<DataTableRowAction<VendorWithCbeFields> | null>(null)

  // **router** 획득
  const router = useRouter()

  const [initialComments, setInitialComments] = React.useState<CbeComment[]>([])
  const [commentSheetOpen, setCommentSheetOpen] = React.useState(false)
  const [isLoadingComments, setIsLoadingComments] = React.useState(false)
  // const [selectedRfqIdForComments, setSelectedRfqIdForComments] = React.useState<number | null>(null)

  const [selectedVendorId, setSelectedVendorId] = React.useState<number | null>(null)
  const [selectedCbeId, setSelectedCbeId] = React.useState<number | null>(null)
  const [isContactDialogOpen, setIsContactDialogOpen] = React.useState(false)
  const [selectedVendor, setSelectedVendor] = React.useState<VendorWithCbeFields | null>(null)
  // console.log("selectedVendorId", selectedVendorId)
  // console.log("selectedCbeId", selectedCbeId)

  React.useEffect(() => {
    if (rowAction?.type === "comments") {
      // rowAction가 새로 세팅된 뒤 여기서 openCommentSheet 실행
      openCommentSheet(Number(rowAction.row.original.responseId))
    } 
  }, [rowAction])

  async function openCommentSheet(responseId: number) {
    setInitialComments([])
    setIsLoadingComments(true)
    const comments = rowAction?.row.original.comments
    // const rfqId = rowAction?.row.original.rfqId
    const vendorId = rowAction?.row.original.vendorId

    if (comments && comments.length > 0) {
      const commentWithAttachments: CbeComment[] = await Promise.all(
        comments.map(async (c) => {
          const attachments = await fetchRfqAttachmentsbyCommentId(c.id)

          return {
            ...c,
            commentedBy: currentUserId, // DB나 API 응답에 있다고 가정
            attachments,
          }
        })
      )
      // 3) state에 저장 -> CommentSheet에서 initialComments로 사용
      setInitialComments(commentWithAttachments)
    }

    // if(rfqId){ setSelectedRfqIdForComments(rfqId)}
    if(vendorId){ setSelectedVendorId(vendorId)}
    setSelectedCbeId(responseId)
    setCommentSheetOpen(true)
    setIsLoadingComments(false)
  }

  const openVendorContactsDialog = (vendorId: number, vendor: VendorWithCbeFields) => {
    setSelectedVendorId(vendorId)
    setSelectedVendor(vendor)
    setIsContactDialogOpen(true)
  }

  // getColumns() 호출 시, router를 주입
  const columns = React.useMemo(
    () => getColumns({ setRowAction, router, openCommentSheet, openVendorContactsDialog }),
    [setRowAction, router]
  )

  const filterFields: DataTableFilterField<VendorWithCbeFields>[] = [
  ]

  const advancedFilterFields: DataTableAdvancedFilterField<VendorWithCbeFields>[] = [
    { id: "vendorName", label: "Vendor Name", type: "text" },
    { id: "vendorCode", label: "Vendor Code", type: "text" },
    { id: "respondedAt", label: "Updated at", type: "date" },
  ]


  const { table } = useDataTable({
    data,
    columns,
    pageCount,
    filterFields,
    enablePinning: true,
    enableAdvancedFilter: true,
    initialState: {
      sorting: [{ id: "respondedAt", desc: true }],
      columnPinning: { right: ["comments"] },
    },
    getRowId: (originalRow) => String(originalRow.responseId),
    shallow: false,
    clearOnDefault: true,
  })

  return (
    <>
      <DataTable
        table={table}
      >
        <DataTableAdvancedToolbar
          table={table}
          filterFields={advancedFilterFields}
          shallow={false}
        >
          <VendorsTableToolbarActions table={table} rfqId={rfqId} />
        </DataTableAdvancedToolbar>
      </DataTable>

      <CommentSheet
        currentUserId={currentUserId}
        open={commentSheetOpen}
        onOpenChange={setCommentSheetOpen}
        rfqId={rfqId}
        cbeId={selectedCbeId ?? 0}
        vendorId={selectedVendorId ?? 0}
        isLoading={isLoadingComments}
        initialComments={initialComments}
      />

      <InviteVendorsDialog
        vendors={rowAction?.row.original ? [rowAction?.row.original] : []}
        onOpenChange={() => setRowAction(null)}
        rfqId={rfqId}
        open={rowAction?.type === "invite"}
        showTrigger={false}
        currentUser={currentUser}
      />

      <VendorContactsDialog
        isOpen={isContactDialogOpen}
        onOpenChange={setIsContactDialogOpen}
        vendorId={selectedVendorId}
        vendor={selectedVendor}
      />

    </>
  )
}