import { useState } from 'react';
import {
ColumnDef,
SortingState,
flexRender,
getCoreRowModel,
getPaginationRowModel,
getSortedRowModel,
useReactTable,
} from '@tanstack/react-table';
import { Trash2Icon } from 'lucide-react';
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from '@/components/ui/table';
import { DataTablePagination } from './DataTablePagination';
import { useNavigate, useSearchParams } from 'react-router-dom';
// import SearchInput from './SearchInput';
import { Button } from '@/components/ui/button';
import {
AlertDialog,
AlertDialogCancel,
AlertDialogContent,
AlertDialogDescription,
AlertDialogFooter,
AlertDialogHeader,
AlertDialogTitle,
AlertDialogTrigger,
} from '@/components/ui/alert-dialog';
interface DataTableProps<TData, TValue> {
columns: ColumnDef<TData, TValue>[];
data: TData[];
totalEntries: number;
bulkDeleteHandler: (items: number[]) => void;
bulkDeleteIsLoading: boolean;
isFetching?: boolean;
clickHandler?: (id: number) => void;
selectRows: boolean;
name: string;
title: string;
isTeachersTable?: boolean;
}
export function DataTable<
TData extends { user_id: number; teacher_id?: number },
TValue
>({
columns,
data,
totalEntries,
bulkDeleteHandler,
bulkDeleteIsLoading,
isFetching = false,
clickHandler = () => {},
selectRows = true,
name,
title,
isTeachersTable = false,
}: DataTableProps<TData, TValue>) {
const [searchParams, setSearchParams] = useSearchParams();
const navigate = useNavigate();
const sort = searchParams.get('sort');
const [sorting, setSorting] = useState<SortingState>(
sort ? [{ desc: sort.startsWith('-'), id: sort.replace('-', '') }] : []
);
const [rowSelection, setRowSelection] = useState({});
const pagination = {
pageIndex: Number(searchParams.get('page')) || 0,
pageSize: Number(searchParams.get('pageSize')) || 10,
};
// useEffect(() => {
// if (sorting.length === 0) return;
// setSearchParams((searchParams) => {
// searchParams.set('sort', (sorting[0].desc ? '-' : '') + sorting[0].id);
// return searchParams;
// });
// }, [sorting, setSearchParams]);
const table = useReactTable({
data,
columns,
getCoreRowModel: getCoreRowModel(),
getSortedRowModel: getSortedRowModel(),
getPaginationRowModel: getPaginationRowModel(),
state: {
sorting,
rowSelection,
pagination,
},
pageCount: Math.ceil(totalEntries / pagination.pageSize),
onPaginationChange: (updater) => {
setRowSelection({});
if (typeof updater !== 'function') return;
const { pageIndex, pageSize } = updater(pagination);
setSearchParams((searchParams) => {
searchParams.set('page', pageIndex.toString());
searchParams.set('pageSize', pageSize.toString());
return searchParams;
});
},
onSortingChange: setSorting,
onRowSelectionChange: setRowSelection,
});
return (
<div className="space-y-4 ">
<div className="flex items-center">
<div className="flex flex-1 items-center gap-4">
{/* <SearchInput placeholder="Filter data..." className="w-72" debounce /> */}
<span className="text-slate-700 text-[26px] font-semibold">
{title}
</span>
</div>
<div className="flex gap-4">
{(table.getIsSomePageRowsSelected() ||
table.getIsAllPageRowsSelected()) &&
selectRows ? (
<AlertDialog>
<AlertDialogTrigger asChild>
<Button
variant="outline"
size="sm"
className="flex items-center gap-2 hover:bg-destructive/5 rounded-sm"
>
<Trash2Icon className="h-4 w-4" />
<span>Delete</span>
</Button>
</AlertDialogTrigger>
<AlertDialogContent>
<AlertDialogHeader>
<AlertDialogTitle>Are you absolutely sure?</AlertDialogTitle>
<AlertDialogDescription>
This action cannot be undone. This will permanently delete
your data and remove your data from our servers.
</AlertDialogDescription>
</AlertDialogHeader>
<AlertDialogFooter className="sm:space-x-4">
<Button
variant="destructive"
// isLoading={bulkDeleteIsLoading}
className="rounded-md"
onClick={() => {
if (isTeachersTable) {
bulkDeleteHandler(
Object.keys(rowSelection).map(
(index) => data[Number(index)].teacher_id!
)
);
} else {
bulkDeleteHandler(
Object.keys(rowSelection).map(
(index) => data[Number(index)].user_id
)
);
}
setRowSelection({});
if (table.getIsAllPageRowsSelected())
table.setPageIndex(pagination.pageIndex - 1);
}}
>
Yes, delete data
</Button>
<AlertDialogCancel
className="rounded-md"
disabled={bulkDeleteIsLoading}
>
Cancel
</AlertDialogCancel>
</AlertDialogFooter>
</AlertDialogContent>
</AlertDialog>
) : null}
{/* <DataTableViewOptions table={table} /> */}
<Button
size="sm"
className="flex items-center gap-2 rounded-sm"
onClick={() => {
if (isTeachersTable) navigate('/dashboard/teachers/create');
else navigate('/dashboard/accounts/create');
}}
>
<span>Create {name}</span>
</Button>
</div>
</div>
<div className="rounded-md border border-slate-300">
<Table className='rounded-md'>
<TableHeader className='bg-slate-100 rounded-md'>
{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) => (
<TableRow
key={row.id}
data-state={row.getIsSelected() && 'selected'}
className={isFetching ? 'opacity-60' : 'cursor-pointer'}
onClick={() => clickHandler(row.original.user_id)}
>
{row.getVisibleCells().map((cell) => (
<TableCell key={cell.id}>
{flexRender(
cell.column.columnDef.cell,
cell.getContext()
)}
</TableCell>
))}
</TableRow>
))
) : (
<TableRow>
<TableCell
colSpan={columns.length}
className="h-24 text-center"
>
No results.
</TableCell>
</TableRow>
)}
</TableBody>
</Table>
</div>
<DataTablePagination table={table} />
</div>
);
}