2024-06-12 15:15:22 +00:00
|
|
|
"use client"
|
|
|
|
import { Button } from "@/components/ui/button"
|
2024-06-26 20:52:33 +00:00
|
|
|
import {
|
|
|
|
ContextMenu,
|
|
|
|
ContextMenuContent,
|
|
|
|
ContextMenuItem,
|
|
|
|
ContextMenuTrigger,
|
|
|
|
} from "@/components/ui/context-menu"
|
2024-06-12 15:15:22 +00:00
|
|
|
import {
|
|
|
|
DropdownMenu,
|
|
|
|
DropdownMenuCheckboxItem,
|
|
|
|
DropdownMenuContent,
|
|
|
|
DropdownMenuTrigger,
|
2024-06-19 09:34:45 +00:00
|
|
|
DropdownMenuRadioItem,
|
|
|
|
DropdownMenuRadioGroup
|
2024-06-12 15:15:22 +00:00
|
|
|
} from "@/components/ui/dropdown-menu"
|
|
|
|
import { Input } from "@/components/ui/input"
|
2024-06-29 14:26:46 +00:00
|
|
|
import { Component, ComponentProps, use, useState } from "react"
|
2024-06-12 15:15:22 +00:00
|
|
|
import {
|
|
|
|
ColumnDef,
|
|
|
|
flexRender,
|
|
|
|
SortingState,
|
|
|
|
getSortedRowModel,
|
|
|
|
ColumnFiltersState,
|
|
|
|
VisibilityState,
|
|
|
|
getFilteredRowModel,
|
|
|
|
getCoreRowModel,
|
|
|
|
getPaginationRowModel,
|
2024-06-27 14:08:14 +00:00
|
|
|
useReactTable
|
2024-06-12 15:15:22 +00:00
|
|
|
} from "@tanstack/react-table"
|
|
|
|
|
|
|
|
import {
|
|
|
|
Table,
|
|
|
|
TableBody,
|
|
|
|
TableCell,
|
|
|
|
TableHead,
|
|
|
|
TableHeader,
|
|
|
|
TableRow,
|
|
|
|
} from "@/components/ui/table"
|
2024-06-27 14:49:56 +00:00
|
|
|
import { EyeIcon, Trash2 } from "lucide-react"
|
2024-06-22 15:29:14 +00:00
|
|
|
import { usePathname } from "next/navigation"
|
2024-06-27 10:44:31 +00:00
|
|
|
import FormContextMenu from "./contextMenu"
|
2024-06-27 14:49:56 +00:00
|
|
|
import { deleteRecords } from "app/lib/del"
|
|
|
|
import { Pathname } from "app/types"
|
2024-06-27 21:12:53 +00:00
|
|
|
import { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTrigger } from "@/components/ui/dialog"
|
|
|
|
import pluralize from "app/lib/pluralize"
|
2024-06-29 15:21:56 +00:00
|
|
|
import { updateTextField } from "app/lib/update"
|
2024-06-12 15:15:22 +00:00
|
|
|
|
2024-06-30 11:36:13 +00:00
|
|
|
export interface DataTableProps<TData, TValue> {
|
2024-06-12 15:15:22 +00:00
|
|
|
columns: ColumnDef<TData, TValue>[]
|
|
|
|
data: TData[]
|
|
|
|
}
|
|
|
|
|
2024-06-24 08:27:53 +00:00
|
|
|
|
2024-06-12 15:15:22 +00:00
|
|
|
export function DataTable<TData, TValue>({
|
|
|
|
columns,
|
|
|
|
data,
|
2024-06-30 15:36:44 +00:00
|
|
|
children,
|
|
|
|
tableName
|
|
|
|
}: DataTableProps<TData, TValue> & ComponentProps<"div"> & { tableName: string }) {
|
2024-06-12 15:15:22 +00:00
|
|
|
//STATE
|
|
|
|
const [sorting, setSorting] = useState<SortingState>([])
|
|
|
|
const [columnFilters, setColumnFilters] = useState<ColumnFiltersState>(
|
|
|
|
[]
|
|
|
|
)
|
|
|
|
const [columnVisibility, setColumnVisibility] =
|
|
|
|
useState<VisibilityState>({})
|
|
|
|
//
|
2024-06-30 15:36:44 +00:00
|
|
|
const pathname: Pathname = usePathname()
|
2024-06-12 15:15:22 +00:00
|
|
|
const table = useReactTable({
|
|
|
|
data,
|
|
|
|
columns,
|
2024-06-27 14:08:14 +00:00
|
|
|
enableRowSelection: true,
|
|
|
|
enableMultiRowSelection: true,
|
2024-06-12 15:15:22 +00:00
|
|
|
getCoreRowModel: getCoreRowModel(),
|
|
|
|
getPaginationRowModel: getPaginationRowModel(),
|
|
|
|
onSortingChange: setSorting,
|
|
|
|
getSortedRowModel: getSortedRowModel(),
|
|
|
|
onColumnFiltersChange: setColumnFilters,
|
|
|
|
getFilteredRowModel: getFilteredRowModel(),
|
|
|
|
onColumnVisibilityChange: setColumnVisibility,
|
|
|
|
state: {
|
|
|
|
sorting,
|
|
|
|
columnFilters,
|
|
|
|
columnVisibility,
|
2024-06-29 15:21:56 +00:00
|
|
|
},
|
|
|
|
//this is where you put arbitrary functions etc to make them accessible via the table api
|
|
|
|
meta: {
|
|
|
|
updateTextField,
|
2024-06-30 15:36:44 +00:00
|
|
|
tableName,
|
|
|
|
pathname
|
2024-06-27 14:08:14 +00:00
|
|
|
}
|
2024-06-12 15:15:22 +00:00
|
|
|
})
|
2024-06-29 14:26:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2024-06-30 11:36:13 +00:00
|
|
|
|
2024-06-19 09:34:45 +00:00
|
|
|
const [filterBy, setFilterBy] = useState(table.getAllColumns()[0])
|
2024-06-29 14:26:46 +00:00
|
|
|
const [isContextMenuOpen, setIsContextMenuOpen] = useState(false)
|
2024-06-12 15:15:22 +00:00
|
|
|
return (<>
|
2024-06-27 14:49:56 +00:00
|
|
|
<div className="flex justify-between items-center py-4">
|
2024-06-19 11:14:23 +00:00
|
|
|
<div className="flex gap-2">
|
2024-06-19 09:54:07 +00:00
|
|
|
<DropdownMenu>
|
|
|
|
<DropdownMenuTrigger asChild>
|
|
|
|
<Button variant="outline" className="ml-auto">
|
|
|
|
Filter by
|
|
|
|
</Button>
|
|
|
|
</DropdownMenuTrigger>
|
|
|
|
<DropdownMenuContent align="end">
|
|
|
|
<DropdownMenuRadioGroup value={filterBy} onValueChange={setFilterBy} >
|
|
|
|
{table
|
|
|
|
.getAllColumns()
|
|
|
|
.filter((column) => column.getCanFilter())
|
|
|
|
.map((column) => {
|
|
|
|
return (
|
|
|
|
<DropdownMenuRadioItem value={column} className="capitalize" key={column.id}>
|
|
|
|
{column.id}
|
|
|
|
</DropdownMenuRadioItem>
|
|
|
|
)
|
|
|
|
})}
|
|
|
|
</DropdownMenuRadioGroup>
|
|
|
|
</DropdownMenuContent>
|
|
|
|
</DropdownMenu>
|
|
|
|
<Input
|
|
|
|
placeholder={`${filterBy.id}`}
|
|
|
|
value={(table.getColumn(filterBy.id)?.getFilterValue() as string) ?? ""}
|
|
|
|
onChange={(event) =>
|
|
|
|
table.getColumn(filterBy.id)?.setFilterValue(event.target.value)
|
|
|
|
}
|
|
|
|
className="max-w-sm"
|
|
|
|
/>
|
|
|
|
</div>
|
2024-06-22 15:29:14 +00:00
|
|
|
|
2024-06-26 17:32:18 +00:00
|
|
|
{children}
|
|
|
|
|
2024-06-27 21:12:53 +00:00
|
|
|
<Dialog>
|
|
|
|
<DialogTrigger asChild>
|
|
|
|
<Button variant="destructive" disabled={!(table.getIsSomeRowsSelected() || table.getIsAllRowsSelected())}>
|
|
|
|
<Trash2 />
|
|
|
|
</Button>
|
|
|
|
</DialogTrigger>
|
|
|
|
<DialogContent>
|
|
|
|
<DialogHeader>
|
|
|
|
{`Delete ${Object.keys(table.getState().rowSelection).length} ${pluralize(pathname.slice(1))}?`}
|
|
|
|
</DialogHeader>
|
|
|
|
<DialogDescription>
|
|
|
|
{`Deleting ${pluralize(pathname.slice(1))} cannot be undone!`}
|
|
|
|
</DialogDescription>
|
|
|
|
<DialogFooter>
|
|
|
|
<DialogClose asChild>
|
|
|
|
<Button variant="destructive"
|
|
|
|
onClick={() => {
|
|
|
|
const selectedRows = table.getState().rowSelection
|
|
|
|
const rowIds = Object.keys(selectedRows)
|
|
|
|
const recordIds = rowIds.map(id => Number(table.getRow(id).original.id))
|
|
|
|
console.table(recordIds)
|
|
|
|
deleteRecords(recordIds, pathname)
|
|
|
|
}}>
|
|
|
|
Yes, delete them!</Button>
|
|
|
|
</DialogClose>
|
|
|
|
</DialogFooter>
|
|
|
|
</DialogContent>
|
|
|
|
</Dialog>
|
|
|
|
|
|
|
|
|
2024-06-22 15:29:14 +00:00
|
|
|
|
2024-06-19 09:34:45 +00:00
|
|
|
<DropdownMenu>
|
|
|
|
<DropdownMenuTrigger asChild>
|
2024-06-19 11:14:23 +00:00
|
|
|
<Button variant="outline" className="justify-self-end">
|
2024-06-19 16:01:42 +00:00
|
|
|
<EyeIcon />
|
2024-06-12 15:15:22 +00:00
|
|
|
</Button>
|
|
|
|
</DropdownMenuTrigger>
|
|
|
|
<DropdownMenuContent align="end">
|
|
|
|
{table
|
|
|
|
.getAllColumns()
|
|
|
|
.filter(
|
|
|
|
(column) => column.getCanHide()
|
|
|
|
)
|
|
|
|
.map((column) => {
|
|
|
|
return (
|
|
|
|
<DropdownMenuCheckboxItem
|
|
|
|
key={column.id}
|
|
|
|
className="capitalize"
|
|
|
|
checked={column.getIsVisible()}
|
|
|
|
onCheckedChange={(value) =>
|
|
|
|
column.toggleVisibility(!!value)
|
|
|
|
}
|
|
|
|
>
|
|
|
|
{column.id}
|
|
|
|
</DropdownMenuCheckboxItem>
|
|
|
|
)
|
|
|
|
})}
|
|
|
|
</DropdownMenuContent>
|
|
|
|
</DropdownMenu>
|
|
|
|
</div>
|
|
|
|
<div className="rounded-md border">
|
2024-06-27 10:44:31 +00:00
|
|
|
|
2024-06-12 15:15:22 +00:00
|
|
|
<Table>
|
|
|
|
<TableHeader>
|
|
|
|
{table.getHeaderGroups().map((headerGroup) => (
|
|
|
|
<TableRow key={headerGroup.id}>
|
|
|
|
{headerGroup.headers.map((header) => {
|
|
|
|
return (
|
|
|
|
<TableHead key={header.id}>
|
|
|
|
{header.isPlaceholder
|
|
|
|
? null
|
|
|
|
: flexRender(
|
|
|
|
header.column.columnDef.header,
|
|
|
|
header.getContext()
|
|
|
|
)}
|
|
|
|
</TableHead>
|
|
|
|
)
|
|
|
|
})}
|
|
|
|
</TableRow>
|
|
|
|
))}
|
|
|
|
</TableHeader>
|
|
|
|
<TableBody>
|
|
|
|
{table.getRowModel().rows?.length ? (
|
|
|
|
table.getRowModel().rows.map((row) => (
|
2024-06-29 14:26:46 +00:00
|
|
|
<ContextMenu onOpenChange={open => setIsContextMenuOpen(open)}>
|
2024-06-27 10:44:31 +00:00
|
|
|
<ContextMenuTrigger asChild>
|
|
|
|
<TableRow
|
|
|
|
key={row.id}
|
|
|
|
data-state={row.getIsSelected() && "selected"}
|
|
|
|
tabIndex={0}
|
|
|
|
>
|
|
|
|
{row.getVisibleCells().map((cell) => (
|
2024-06-26 20:52:33 +00:00
|
|
|
<TableCell key={cell.id}>
|
|
|
|
{flexRender(cell.column.columnDef.cell, cell.getContext())}
|
|
|
|
</TableCell>
|
2024-06-27 10:44:31 +00:00
|
|
|
))}
|
2024-06-29 14:26:46 +00:00
|
|
|
<FormContextMenu
|
|
|
|
row={row}
|
2024-06-30 15:36:44 +00:00
|
|
|
table={table}
|
2024-06-29 14:26:46 +00:00
|
|
|
/>
|
2024-06-27 10:44:31 +00:00
|
|
|
</TableRow>
|
|
|
|
</ContextMenuTrigger>
|
|
|
|
</ContextMenu>
|
2024-06-12 15:15:22 +00:00
|
|
|
))
|
|
|
|
) : (
|
|
|
|
<TableRow>
|
|
|
|
<TableCell colSpan={columns.length} className="h-24 text-center">
|
|
|
|
No results.
|
|
|
|
</TableCell>
|
|
|
|
</TableRow>
|
|
|
|
)}
|
|
|
|
</TableBody>
|
|
|
|
</Table>
|
|
|
|
<div className="flex items-center justify-end space-x-2 py-4">
|
|
|
|
<Button
|
|
|
|
variant="outline"
|
|
|
|
size="sm"
|
|
|
|
onClick={() => table.previousPage()}
|
|
|
|
disabled={!table.getCanPreviousPage()}
|
2024-06-29 15:21:56 +00:00
|
|
|
onBlur={true}
|
2024-06-12 15:15:22 +00:00
|
|
|
>
|
|
|
|
Previous
|
|
|
|
</Button>
|
|
|
|
<Button
|
|
|
|
variant="outline"
|
|
|
|
size="sm"
|
|
|
|
onClick={() => table.nextPage()}
|
|
|
|
disabled={!table.getCanNextPage()}
|
|
|
|
>
|
|
|
|
Next
|
|
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|