From 13dc007de652ce3da2a5e85d2cdccafe2288dea9 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Thu, 4 Sep 2025 10:46:19 +0000 Subject: (임수민) EDP 벤더별 진척도 페이지 구현 - menu 작업 - 오류수정 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/edp-progress/table/edp-progress-table.tsx | 61 +++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 lib/edp-progress/table/edp-progress-table.tsx (limited to 'lib/edp-progress/table/edp-progress-table.tsx') diff --git a/lib/edp-progress/table/edp-progress-table.tsx b/lib/edp-progress/table/edp-progress-table.tsx new file mode 100644 index 00000000..dc3073a4 --- /dev/null +++ b/lib/edp-progress/table/edp-progress-table.tsx @@ -0,0 +1,61 @@ +"use client" + +import * as React from "react" +import type { + DataTableAdvancedFilterField, + DataTableFilterField, +} 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 { getColumns, type EDPVendorRow } from "./edp-progress-table-columns" +import { EDPProgressTableToolbarActions } from "./edp-progress-table-toolbar-actions" + +interface Props { + promises: Promise<[ + { data: EDPVendorRow[]; pageCount: number }, + ]> +} + +export function EDPProgressTable({ promises }: Props) { + const columns = React.useMemo(() => getColumns(), []) + + const [{ data, pageCount }] = React.use(promises) + + const filterFields: DataTableFilterField[] = [] + const advancedFilterFields: DataTableAdvancedFilterField[] = [ + { id: "vendorName", label: "Vendor Name", type: "text" }, + { id: "totalTags", label: "Tags", type: "number" }, + { id: "totalForms", label: "Forms", type: "number" }, + { id: "completionPercentage", label: "Completion %", type: "number" }, + ] + + const { table } = useDataTable({ + data, + columns, + pageCount, + filterFields, + enablePinning: true, + enableAdvancedFilter: true, + initialState: { + sorting: [{ id: "completionPercentage", desc: true }], + columnPinning: { left: ["select"], right: [] }, + }, + getRowId: (row) => String(row.vendorId), + shallow: false, + clearOnDefault: true, + }) + + return ( + + + + + + ) +} -- cgit v1.2.3