summaryrefslogtreecommitdiff
path: root/lib/po/table/po-table.tsx
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-03-26 00:37:41 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-03-26 00:37:41 +0000
commite0dfb55c5457aec489fc084c4567e791b4c65eb1 (patch)
tree68543a65d88f5afb3a0202925804103daa91bc6f /lib/po/table/po-table.tsx
3/25 까지의 대표님 작업사항
Diffstat (limited to 'lib/po/table/po-table.tsx')
-rw-r--r--lib/po/table/po-table.tsx164
1 files changed, 164 insertions, 0 deletions
diff --git a/lib/po/table/po-table.tsx b/lib/po/table/po-table.tsx
new file mode 100644
index 00000000..49fbdda4
--- /dev/null
+++ b/lib/po/table/po-table.tsx
@@ -0,0 +1,164 @@
+"use client"
+
+import * as React from "react"
+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 { useFeatureFlags } from "./feature-flags-provider"
+import { toast } from "sonner"
+
+import { getPOs, requestSignatures } from "../service"
+import { getColumns } from "./po-table-columns"
+import { ContractDetail } from "@/db/schema/contract"
+import { PoTableToolbarActions } from "./po-table-toolbar-actions"
+import { SignatureRequestModal } from "./sign-request-dialog"
+
+interface ItemsTableProps {
+ promises: Promise<
+ [
+ Awaited<ReturnType<typeof getPOs>>,
+ ]
+ >
+}
+
+// Interface for signing party
+interface SigningParty {
+ signerEmail: string;
+ signerName: string;
+ signerPosition: string;
+ signerType: "REQUESTER" | "VENDOR";
+ vendorContactId?: number;
+}
+
+export function PoListsTable({ promises }: ItemsTableProps) {
+ const { featureFlags } = useFeatureFlags()
+
+ const [{ data, pageCount }] =
+ React.use(promises)
+
+ const [rowAction, setRowAction] =
+ React.useState<DataTableRowAction<ContractDetail> | null>(null)
+
+ // State for signature request modal
+ const [signatureModalOpen, setSignatureModalOpen] = React.useState(false)
+ const [selectedContract, setSelectedContract] = React.useState<ContractDetail | null>(null)
+
+ // Handle row actions
+ React.useEffect(() => {
+ if (!rowAction) return
+
+ if (rowAction.type === "signature") {
+ // Open signature request modal with the selected contract
+ setSelectedContract(rowAction.row.original)
+ setSignatureModalOpen(true)
+ setRowAction(null)
+ } else if (rowAction.type === "items") {
+ // Existing handler for "items" action type
+ // Your existing code here
+ setRowAction(null)
+ }
+ }, [rowAction])
+
+ const columns = React.useMemo(
+ () => getColumns({ setRowAction }),
+ [setRowAction]
+ )
+
+ // Updated handler to work with multiple signers
+ const handleSignatureRequest = async (
+ values: { signers: SigningParty[] },
+ contractId: number
+ ): Promise<void> => {
+ try {
+ const result = await requestSignatures({
+ contractId,
+ signers: values.signers
+ });
+
+ // Handle the result
+ if (result.success) {
+ toast.success(result.message || "Signature requests sent successfully");
+ } else {
+ toast.error(result.message || "Failed to send signature requests");
+ }
+ } catch (error) {
+ console.error("Error sending signature requests:", error);
+ toast.error("An error occurred while sending the signature requests");
+ }
+ }
+
+ const filterFields: DataTableFilterField<ContractDetail>[] = [
+ // Your existing filter fields
+ ]
+
+ const advancedFilterFields: DataTableAdvancedFilterField<ContractDetail>[] = [
+ {
+ id: "contractNo",
+ label: "Contract No",
+ type: "text",
+ },
+ {
+ id: "contractName",
+ label: "Contract Name",
+ type: "text",
+ },
+ {
+ id: "createdAt",
+ label: "Created At",
+ type: "date",
+ },
+ {
+ id: "updatedAt",
+ label: "Updated At",
+ type: "date",
+ },
+ ]
+
+ const { table } = useDataTable({
+ data,
+ columns,
+ pageCount,
+ filterFields,
+ enablePinning: true,
+ enableAdvancedFilter: true,
+ initialState: {
+ sorting: [{ id: "createdAt", desc: true }],
+ columnPinning: { right: ["actions"] },
+ },
+ getRowId: (originalRow) => String(originalRow.id),
+ shallow: false,
+ clearOnDefault: true,
+ })
+
+ return (
+ <>
+ <DataTable
+ table={table}
+ >
+ <DataTableAdvancedToolbar
+ table={table}
+ filterFields={advancedFilterFields}
+ shallow={false}
+ >
+ <PoTableToolbarActions table={table} />
+ </DataTableAdvancedToolbar>
+ </DataTable>
+
+ {/* Enhanced Dual Signature Request Modal */}
+ {selectedContract && (
+ <SignatureRequestModal
+ contract={selectedContract}
+ open={signatureModalOpen}
+ onOpenChange={setSignatureModalOpen}
+ onSubmit={handleSignatureRequest}
+ />
+ )}
+ </>
+ )
+} \ No newline at end of file