116 lines
3.8 KiB
TypeScript
116 lines
3.8 KiB
TypeScript
|
|
import {
|
||
|
|
type ColumnDef,
|
||
|
|
flexRender,
|
||
|
|
getCoreRowModel,
|
||
|
|
getFilteredRowModel,
|
||
|
|
getPaginationRowModel,
|
||
|
|
useReactTable,
|
||
|
|
} from "@tanstack/react-table";
|
||
|
|
import { ChevronLeft, ChevronRight } from "lucide-react";
|
||
|
|
import { Button } from "../ui/button";
|
||
|
|
import { Input } from "../ui/input";
|
||
|
|
import { ScrollArea, ScrollBar } from "../ui/scroll-area";
|
||
|
|
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "../ui/table";
|
||
|
|
|
||
|
|
interface DataTableProps<TData, TValue> {
|
||
|
|
columns: ColumnDef<TData, TValue>[];
|
||
|
|
data: TData[];
|
||
|
|
searchKey: string;
|
||
|
|
searchLabel: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export function DataTable<TData, TValue>({
|
||
|
|
columns,
|
||
|
|
data,
|
||
|
|
searchKey,
|
||
|
|
searchLabel,
|
||
|
|
}: DataTableProps<TData, TValue>) {
|
||
|
|
const table = useReactTable({
|
||
|
|
data,
|
||
|
|
columns,
|
||
|
|
getCoreRowModel: getCoreRowModel(),
|
||
|
|
getFilteredRowModel: getFilteredRowModel(),
|
||
|
|
getPaginationRowModel: getPaginationRowModel(),
|
||
|
|
});
|
||
|
|
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<Input
|
||
|
|
className="w-full md:max-w-sm"
|
||
|
|
onChange={(event) => table.getColumn(searchKey)?.setFilterValue(event.target.value)}
|
||
|
|
placeholder={`Cari berdasarkan ${searchLabel}...`}
|
||
|
|
value={(table.getColumn(searchKey)?.getFilterValue() as string) ?? ""}
|
||
|
|
/>
|
||
|
|
<ScrollArea className="h-[calc(80vh-220px)] rounded-md border md:h-[calc(80dvh-200px)]">
|
||
|
|
<Table className="relative">
|
||
|
|
<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) => (
|
||
|
|
<TableRow data-state={row.getIsSelected() ? "selected" : null} key={row.id}>
|
||
|
|
{row.getVisibleCells().map((cell, index) =>
|
||
|
|
index === 0 ? (
|
||
|
|
<TableCell className="my-auto items-center" key={cell.id}>
|
||
|
|
{flexRender(cell.column.columnDef.cell, cell.getContext())}
|
||
|
|
</TableCell>
|
||
|
|
) : (
|
||
|
|
<TableCell className="min-w-36" key={cell.id}>
|
||
|
|
{flexRender(cell.column.columnDef.cell, cell.getContext())}
|
||
|
|
</TableCell>
|
||
|
|
),
|
||
|
|
)}
|
||
|
|
</TableRow>
|
||
|
|
))
|
||
|
|
) : (
|
||
|
|
<TableRow>
|
||
|
|
<TableCell className="h-24 text-center" colSpan={columns.length}>
|
||
|
|
Tidak ada data yang ditemukan.
|
||
|
|
</TableCell>
|
||
|
|
</TableRow>
|
||
|
|
)}
|
||
|
|
</TableBody>
|
||
|
|
</Table>
|
||
|
|
<ScrollBar orientation="horizontal" />
|
||
|
|
</ScrollArea>
|
||
|
|
<div className="flex items-center justify-end space-x-2 py-4">
|
||
|
|
<div className="flex-1 text-muted-foreground text-sm">
|
||
|
|
{table.getFilteredSelectedRowModel().rows.length} dari{" "}
|
||
|
|
{table.getFilteredRowModel().rows.length} dipilih.
|
||
|
|
</div>
|
||
|
|
<div className="space-x-2">
|
||
|
|
<Button
|
||
|
|
disabled={!table.getCanPreviousPage()}
|
||
|
|
onClick={() => table.previousPage()}
|
||
|
|
size="sm"
|
||
|
|
variant="outline"
|
||
|
|
>
|
||
|
|
<ChevronLeft />
|
||
|
|
</Button>
|
||
|
|
<Button
|
||
|
|
disabled={!table.getCanNextPage()}
|
||
|
|
onClick={() => table.nextPage()}
|
||
|
|
size="sm"
|
||
|
|
variant="outline"
|
||
|
|
>
|
||
|
|
<ChevronRight />
|
||
|
|
</Button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|