summaryrefslogtreecommitdiff
path: root/lib/rfqs/tbe-table/vendor-contact/vendor-contact-table-column.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rfqs/tbe-table/vendor-contact/vendor-contact-table-column.tsx')
-rw-r--r--lib/rfqs/tbe-table/vendor-contact/vendor-contact-table-column.tsx70
1 files changed, 70 insertions, 0 deletions
diff --git a/lib/rfqs/tbe-table/vendor-contact/vendor-contact-table-column.tsx b/lib/rfqs/tbe-table/vendor-contact/vendor-contact-table-column.tsx
new file mode 100644
index 00000000..fcd0c3fb
--- /dev/null
+++ b/lib/rfqs/tbe-table/vendor-contact/vendor-contact-table-column.tsx
@@ -0,0 +1,70 @@
+"use client"
+// Because columns rely on React state/hooks for row actions
+
+import * as React from "react"
+import { ColumnDef, Row } from "@tanstack/react-table"
+import { ClientDataTableColumnHeaderSimple } from "@/components/client-data-table/data-table-column-simple-header"
+import { formatDate } from "@/lib/utils"
+import { Checkbox } from "@/components/ui/checkbox"
+import { VendorData } from "./vendor-contact-table"
+
+
+/** getColumns: return array of ColumnDef for 'vendors' data */
+export function getColumns(): ColumnDef<VendorData>[] {
+ return [
+
+ // Vendor Name
+ {
+ accessorKey: "contactName",
+ header: ({ column }) => (
+ <ClientDataTableColumnHeaderSimple column={column} title="Contact Name" />
+ ),
+ cell: ({ row }) => row.getValue("contactName"),
+ },
+
+ // Vendor Code
+ {
+ accessorKey: "contactPosition",
+ header: ({ column }) => (
+ <ClientDataTableColumnHeaderSimple column={column} title="Position" />
+ ),
+ cell: ({ row }) => row.getValue("contactPosition"),
+ },
+
+ // Status
+ {
+ accessorKey: "contactEmail",
+ header: ({ column }) => (
+ <ClientDataTableColumnHeaderSimple column={column} title="Email" />
+ ),
+ cell: ({ row }) => row.getValue("contactEmail"),
+ },
+
+ // Country
+ {
+ accessorKey: "contactPhone",
+ header: ({ column }) => (
+ <ClientDataTableColumnHeaderSimple column={column} title="Phone" />
+ ),
+ cell: ({ row }) => row.getValue("contactPhone"),
+ },
+
+ // Created At
+ {
+ accessorKey: "createdAt",
+ header: ({ column }) => (
+ <ClientDataTableColumnHeaderSimple column={column} title="Created At" />
+ ),
+ cell: ({ cell }) => formatDate(cell.getValue() as Date),
+ },
+
+ // Updated At
+ {
+ accessorKey: "updatedAt",
+ header: ({ column }) => (
+ <ClientDataTableColumnHeaderSimple column={column} title="Updated At" />
+ ),
+ cell: ({ cell }) => formatDate(cell.getValue() as Date),
+ },
+ ]
+} \ No newline at end of file