Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 | 507x 507x 507x 507x 1138x 1138x 515x 1839x 3303x 24x 10357x 507x 37x 37x 53x 39x 39x 39x 39x 225x 399x 2904x 207x 2697x 39x | import {
ColumnDef,
flexRender,
getCoreRowModel,
ColumnFilter,
getFilteredRowModel,
useReactTable,
VisibilityState,
createColumnHelper,
} from "@tanstack/react-table";
import { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuTrigger } from "@/ahuora-design-system/ui/dropdown-menu";
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "@/ahuora-design-system/ui/table";
import { Spinner } from "@/ahuora-design-system/ui/spinner";
import { ScrollArea, ScrollBar } from "@/ahuora-design-system/ui/scroll-area";
import { cn } from "@/lib/utils";
import { useState } from "react";
import { Button } from "./button";
import { ArrowDownToLine, ChevronDown, FileDown } from "lucide-react";
export interface DataTableProps<TData, TValue> {
columns: ColumnDef<TData, TValue>[];
data: TData[];
handleClick?: (value) => void;
handleSelect?: (value) => void;
handleFilterChange?: (value) => void;
handleRowClick?: (row: TData) => void;
setColumnVisibility?: (value: VisibilityState) => void;
rowSelection?: {};
columnFilters?: ColumnFilter[];
columnSelection?: boolean;
title?: string;
isLoading?: boolean;
withBorder?: boolean;
hideHeader?: boolean;
className?: string;
emptyInfo?: string;
ariaLabel?: string;
handleDownload?: () => void;
}
export function DataTable<TData, TValue>({
columns,
data,
handleSelect,
handleFilterChange,
handleRowClick,
rowSelection = {},
columnFilters,
isLoading,
title,
columnSelection = false,
withBorder = true,
hideHeader = false,
className = "",
emptyInfo = "No results",
ariaLabel,
handleDownload
}: DataTableProps<TData, TValue>) {
const [columnVisibility, setColumnVisibility] = useState<VisibilityState>({})
const table = useReactTable({
data,
columns,
getCoreRowModel: getCoreRowModel(),
onRowSelectionChange: handleSelect,
onColumnFiltersChange: handleFilterChange,
getFilteredRowModel: getFilteredRowModel(),
onColumnVisibilityChange: setColumnVisibility,
state: {
columnFilters,
rowSelection,
columnVisibility
},
defaultColumn: {
minSize: 0,
},
});
const spinner = (
<div className="flex items-center justify-center w-full h-full">
<Spinner />
</div>
);
const tableContents = (
<div className="flex flex-col justify-end gap-3 w-full h-full">
<div className="flex items-center justify-between">
<p className="strong capitalize" aria-label={title && `data-table-title-${title}`}>{title}</p>
<div className="flex gap-2 items-center">
{
handleDownload && (
<Button onClick={handleDownload} variant="outline" size="sm" className="p-0 w-7" aria-label="download-table">
<ArrowDownToLine />
</Button>
)
}
{columnSelection && (
<DropdownMenu>
<DropdownMenuTrigger asChild>
<Button variant="outline" className="ml-auto" size="sm">
Columns <ChevronDown />
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent align="end">
<ScrollArea>
<div className="w-full h-full">
{table
.getAllColumns()
.filter((column) => column.getCanHide())
.map((column) => {
return (
<DropdownMenuCheckboxItem
key={column.id}
className="capitalize"
checked={column.getIsVisible()}
onSelect={e => e.preventDefault()}
onCheckedChange={(value) =>
column.toggleVisibility(!!value)
}
>
{column.id}
</DropdownMenuCheckboxItem>
)
})}
</div>
</ScrollArea>
</DropdownMenuContent>
</DropdownMenu>
)}
</div>
</div>
<ScrollArea className={cn(className, "h-full w-full", withBorder && "border")}>
<Table className="min-w-max" aria-label={ariaLabel}>
{!hideHeader && (
<TableHeader className="sticky top-0 z-10">
{table.getHeaderGroups().map((headerGroup) => (
<TableRow key={headerGroup.id}>
{headerGroup.headers.map((header, index) => {
return (
<TableHead
key={header.id}
className={header.getSize() === 0 ? `w-6` : ``}
colSpan={header.colSpan}
>
<div className="flex flex-row gap-1 justify-between px-0 text-sm">
{header.isPlaceholder
? null
: flexRender(
header.column.columnDef.header,
header.getContext(),
)}
</div>
</TableHead>
);
})}
</TableRow>
))}
</TableHeader>
)}
<TableBody>
{table.getFilteredRowModel().rows?.length ? (
table.getFilteredRowModel().rows.map((row) => (
<TableRow
key={row.id}
data-state={row.getIsSelected() && "selected"}
onClick={() => handleRowClick && handleRowClick(row.original)}
>
{row.getVisibleCells().map((cell) => (
<TableCell
key={cell.id}
className={cn(
cell.column.getSize() === 0 ? `w-0` : ``,
"text-sm",
)}
aria-label={title && `table ${title} row-${row.index}, col-${cell.column.id}`}
>
{flexRender(cell.column.columnDef.cell, cell.getContext())}
</TableCell>
))}
</TableRow>
))
) : (
<TableRow>
<TableCell colSpan={columns.length} className="h-24 text-center">
{emptyInfo}
</TableCell>
</TableRow>
)}
</TableBody>
</Table>
<ScrollBar orientation="horizontal" />
<ScrollBar orientation="vertical" />
</ScrollArea>
</div>
);
return (
<div className="w-full h-full relative overflow-hidden rounded-none">
{isLoading ? spinner : tableContents}
</div>
);
}
const columnHelper = createColumnHelper();
export const createColumns = (data, rounded = false) => {
if (!data || data.length === 0) return [];
const firstRow = data[0];
Iif (!firstRow) return [];
const columns = [];
Object.keys(firstRow).forEach((key) =>
columns.push(columnHelper.accessor(key, {
header: () => key,
cell: ({ row }) => {
if (rounded && typeof row.getValue(key) === 'number') {
return row.getValue(key).toFixed(3)
}
return row.getValue(key);
},
}))
);
return columns;
} |