summaryrefslogtreecommitdiff
path: root/components/vendor-data-plant/tag-table/tag-table-column.tsx
blob: 6f0d977f303e8ca02034dfe7c1a66f9192802a1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
"use client"

import * as React from "react"
import { ColumnDef } from "@tanstack/react-table"
import type { Row } from "@tanstack/react-table"
import { numericFilter } from "@/lib/data-table"
import { ClientDataTableColumnHeaderSimple } from "@/components/client-data-table/data-table-column-simple-header"
import { formatDate } from "@/lib/utils"
import { Badge } from "@/components/ui/badge"
import { Button } from "@/components/ui/button"
import { Checkbox } from "@/components/ui/checkbox"
import {
    DropdownMenu,
    DropdownMenuContent,
    DropdownMenuItem,
    DropdownMenuRadioGroup,
    DropdownMenuRadioItem,
    DropdownMenuSeparator,
    DropdownMenuShortcut,
    DropdownMenuSub,
    DropdownMenuSubContent,
    DropdownMenuSubTrigger,
    DropdownMenuTrigger,
  } from "@/components/ui/dropdown-menu"
import { Ellipsis } from "lucide-react"
import { Tag } from "@/types/vendorData"
import { createFilterFn } from "@/components/client-data-table/table-filters"


export interface DataTableRowAction<TData> {
  row: Row<TData>
  type: 'open' | "update" | "delete"
}

interface GetColumnsProps {
    setRowAction: React.Dispatch<React.SetStateAction<DataTableRowAction<Tag> | null>>
}

export function getColumns({
    setRowAction,
  }: GetColumnsProps): ColumnDef<Tag>[] {
    return [
      {
        id: "select",
        header: ({ table }) => (
          <Checkbox
            checked={
              table.getIsAllPageRowsSelected() ||
              (table.getIsSomePageRowsSelected() && "indeterminate")
            }
            onCheckedChange={(value) => table.toggleAllPageRowsSelected(!!value)}
            aria-label="Select all"
            className="translate-y-0.5"
          />
        ),
        cell: ({ row }) => (
          <Checkbox
            checked={row.getIsSelected()}
            onCheckedChange={(value) => row.toggleSelected(!!value)}
            aria-label="Select row"
            className="translate-y-0.5"
          />
        ),
        enableSorting: false,
        enableHiding: false,
        size: 40,
      },

      {
        accessorKey: "tagNo",
        header: ({ column }) => (
          <ClientDataTableColumnHeaderSimple column={column} title="Tag No." />
        ),
        filterFn: createFilterFn("text"),
        cell: ({ row }) => <div className="w-20">{row.getValue("tagNo")}</div>,
        meta: {
          excelHeader: "Tag No"
        },
      },
      {
        accessorKey: "description",
        header: ({ column }) => (
          <ClientDataTableColumnHeaderSimple column={column} title="Tag Description" />
        ),
        cell: ({ row }) => <div className="w-120">{row.getValue("description")}</div>,
        meta: {
          excelHeader: "Tag Descripiton"
        },
      },
      {
        accessorKey: "tagType",
        header: ({ column }) => (
          <ClientDataTableColumnHeaderSimple column={column} title="Tag Type" />
        ),
        cell: ({ row }) => <div className="w-40">{row.getValue("tagType")}</div>,
        meta: {
          excelHeader: "Tag Type"
        },
      },
      {
        id: "validation",
        header: "Error",
        cell: ({ row }) => <div className="w-100"></div>,
      },

      {
        accessorKey: "createdAt",
        header: ({ column }) => (
          <ClientDataTableColumnHeaderSimple column={column} title="Created At" />
        ),
        cell: ({ cell }) => formatDate(cell.getValue() as Date),
        meta: {
          excelHeader: "created At"
        },
      },
      {
        accessorKey: "updatedAt",
        header: ({ column }) => (
          <ClientDataTableColumnHeaderSimple column={column} title="Updated At" />
        ),
        cell: ({ cell }) => formatDate(cell.getValue() as Date),
        meta: {
          excelHeader: "updated At"
        },
      },

      {
        id: "actions",
        cell: function Cell({ row }) {
          const [isUpdatePending, startUpdateTransition] = React.useTransition()
  
          return (
            <DropdownMenu>
              <DropdownMenuTrigger asChild>
                <Button
                  aria-label="Open menu"
                  variant="ghost"
                  className="flex size-8 p-0 data-[state=open]:bg-muted"
                >
                  <Ellipsis className="size-4" aria-hidden="true" />
                </Button>
              </DropdownMenuTrigger>
              <DropdownMenuContent align="end" className="w-40">
                <DropdownMenuItem
                  onSelect={() => setRowAction({ row, type: "update" })}
                >
                  Edit
                </DropdownMenuItem>
                <DropdownMenuSub>
                  <DropdownMenuSubTrigger>Labels</DropdownMenuSubTrigger>
                  <DropdownMenuSubContent>
                    {/* <DropdownMenuRadioGroup
                      value={row.original.label}
                      onValueChange={(value) => {
                        startUpdateTransition(() => {
                          toast.promise(
                            updateTask({
                              id: row.original.id,
                              label: value as Task["label"],
                            }),
                            {
                              loading: "Updating...",
                              success: "Label updated",
                              error: (err) => getErrorMessage(err),
                            }
                          )
                        })
                      }}
                    >
                      {tasks.label.enumValues.map((label) => (
                        <DropdownMenuRadioItem
                          key={label}
                          value={label}
                          className="capitalize"
                          disabled={isUpdatePending}
                        >
                          {label}
                        </DropdownMenuRadioItem>
                      ))}
                    </DropdownMenuRadioGroup> */}
                  </DropdownMenuSubContent>
                </DropdownMenuSub>
                <DropdownMenuSeparator />
                <DropdownMenuItem
                  onSelect={() => setRowAction({ row, type: "delete" })}
                >
                  Delete
                  <DropdownMenuShortcut>⌘⌫</DropdownMenuShortcut>
                </DropdownMenuItem>
              </DropdownMenuContent>
            </DropdownMenu>
          )
        },
        size: 40,
      },
    ]
  }