diff options
Diffstat (limited to 'lib/rfqs-tech/tbe-table/vendor-contact/vendor-contact-table-column.tsx')
| -rw-r--r-- | lib/rfqs-tech/tbe-table/vendor-contact/vendor-contact-table-column.tsx | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/lib/rfqs-tech/tbe-table/vendor-contact/vendor-contact-table-column.tsx b/lib/rfqs-tech/tbe-table/vendor-contact/vendor-contact-table-column.tsx deleted file mode 100644 index fcd0c3fb..00000000 --- a/lib/rfqs-tech/tbe-table/vendor-contact/vendor-contact-table-column.tsx +++ /dev/null @@ -1,70 +0,0 @@ -"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 |
