diff options
| author | joonhoekim <26rote@gmail.com> | 2025-03-25 15:55:45 +0900 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-03-25 15:55:45 +0900 |
| commit | 1a2241c40e10193c5ff7008a7b7b36cc1d855d96 (patch) | |
| tree | 8a5587f10ca55b162d7e3254cb088b323a34c41b /lib/rfqs/vendor-table/vendors-table.tsx | |
initial commit
Diffstat (limited to 'lib/rfqs/vendor-table/vendors-table.tsx')
| -rw-r--r-- | lib/rfqs/vendor-table/vendors-table.tsx | 181 |
1 files changed, 181 insertions, 0 deletions
diff --git a/lib/rfqs/vendor-table/vendors-table.tsx b/lib/rfqs/vendor-table/vendors-table.tsx new file mode 100644 index 00000000..838342bf --- /dev/null +++ b/lib/rfqs/vendor-table/vendors-table.tsx @@ -0,0 +1,181 @@ +"use client" + +import * as React from "react" +import { useRouter } from "next/navigation" +import type { + DataTableAdvancedFilterField, + DataTableFilterField, + DataTableRowAction, +} from "@/types/table" + +import { toSentenceCase } from "@/lib/utils" +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 { useFeatureFlags } from "./feature-flags-provider" +import { getColumns } from "./vendors-table-columns" +import { vendors } from "@/db/schema/vendors" +import { VendorsTableToolbarActions } from "./vendors-table-toolbar-actions" +import { VendorsTableFloatingBar } from "./vendors-table-floating-bar" +import { fetchRfqAttachmentsbyCommentId, getMatchedVendors } from "../service" +import { InviteVendorsDialog } from "./invite-vendors-dialog" +import { CommentSheet, MatchedVendorComment } from "./comments-sheet" +import { MatchedVendorRow } from "@/config/vendorRfbColumnsConfig" +import { RfqType } from "@/lib/rfqs/validations" + +interface VendorsTableProps { + promises: Promise<[Awaited<ReturnType<typeof getMatchedVendors>>]> + rfqId: number + rfqType: RfqType +} + +export function MatchedVendorsTable({ promises, rfqId, rfqType}: VendorsTableProps) { + const { featureFlags } = useFeatureFlags() + + // 1) Suspense로 받아온 데이터 + const [{ data, pageCount }] = React.use(promises) + // data는 MatchedVendorRow[] 형태 (getMatchedVendors에서 반환) + + console.log(data) + + // 2) Row 액션 상태 + const [rowAction, setRowAction] = React.useState< + DataTableRowAction<MatchedVendorRow> | null + >(null) + + // **router** 획득 + const router = useRouter() + + // 3) CommentSheet 에 넣을 상태 + // => “댓글”은 MatchedVendorComment[] 로 관리해야 함 + const [initialComments, setInitialComments] = React.useState< + MatchedVendorComment[] + >([]) + const [commentSheetOpen, setCommentSheetOpen] = React.useState(false) + const [selectedVendorIdForComments, setSelectedVendorIdForComments] = + React.useState<number | null>(null) + + // 4) rowAction이 바뀌면, type이 "comments"인지 확인 후 open + React.useEffect(() => { + if (rowAction?.type === "comments") { + openCommentSheet(rowAction.row.original.id) + } + }, [rowAction]) + + // 5) 댓글 시트 오픈 함수 + async function openCommentSheet(vendorId: number) { + setInitialComments([]) + + // (a) 현재 Row의 comments 불러옴 + const comments = rowAction?.row.original.comments + if (comments && comments.length > 0) { + // (b) 각 comment마다 첨부파일 fetch + const commentWithAttachments: MatchedVendorComment[] = await Promise.all( + comments.map(async (c) => { + const attachments = await fetchRfqAttachmentsbyCommentId(c.id) + return { + ...c, + attachments, + } + }) + ) + setInitialComments(commentWithAttachments) + } + + // (c) vendorId state + setSelectedVendorIdForComments(vendorId) + setCommentSheetOpen(true) + } + + // 6) 컬럼 정의 (memo) + const columns = React.useMemo( + () => getColumns({ setRowAction, router, openCommentSheet }), + [setRowAction, router] + ) + + // 7) 필터 정의 + const filterFields: DataTableFilterField<MatchedVendorRow>[] = [] + + const advancedFilterFields: DataTableAdvancedFilterField<MatchedVendorRow>[] = [ + { id: "vendorName", label: "Vendor Name", type: "text" }, + { id: "vendorCode", label: "Vendor Code", type: "text" }, + { id: "email", label: "Email", type: "text" }, + { id: "country", label: "Country", type: "text" }, + { + id: "vendorStatus", + label: "Vendor Status", + type: "multi-select", + options: vendors.status.enumValues.map((status) => ({ + label: toSentenceCase(status), + value: status, + })), + }, + { + id: "rfqVendorStatus", + label: "RFQ Status", + type: "multi-select", + options: ["INVITED", "ACCEPTED", "REJECTED", "QUOTED"].map((s) => ({ + label: s, + value: s, + })), + }, + { id: "rfqVendorUpdated", label: "Updated at", type: "date" }, + ] + + // 8) 테이블 생성 + const { table } = useDataTable({ + data, // MatchedVendorRow[] + columns, + pageCount, + filterFields, + enablePinning: true, + enableAdvancedFilter: true, + initialState: { + sorting: [{ id: "rfqVendorUpdated", desc: true }], + columnPinning: { right: ["actions"] }, + }, + // 행의 고유 ID + getRowId: (originalRow) => String(originalRow.id), + shallow: false, + clearOnDefault: true, + }) + + return ( + <> + <DataTable table={table}> + <DataTableAdvancedToolbar + table={table} + filterFields={advancedFilterFields} + shallow={false} + > + <VendorsTableToolbarActions table={table} rfqId={rfqId} /> + </DataTableAdvancedToolbar> + </DataTable> + + {/* 초대 다이얼로그 */} + <InviteVendorsDialog + vendors={rowAction?.row.original ? [rowAction?.row.original] : []} + onOpenChange={() => setRowAction(null)} + rfqId={rfqId} + open={rowAction?.type === "invite"} + showTrigger={false} + rfqType={rfqType} + /> + + {/* 댓글 시트 */} + <CommentSheet + open={commentSheetOpen} + onOpenChange={setCommentSheetOpen} + initialComments={initialComments} + rfqId={rfqId} + vendorId={selectedVendorIdForComments ?? 0} + currentUserId={1} + onCommentsUpdated={(updatedComments) => { + // Row 의 comments 필드도 업데이트 + if (!rowAction?.row) return + rowAction.row.original.comments = updatedComments + }} + /> + </> + ) +}
\ No newline at end of file |
