All files / src/ahuora-design-system/ui data-table.tsx

85.18% Statements 23/27
92.3% Branches 48/52
81.81% Functions 9/11
88% Lines 22/25

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 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310                                                                                                                                                                                    180x   180x                                       180x                                                                                                           476x   476x                                                                 211x   1003x     1003x                                                     1289x         15x     7237x                                                                                   180x             4x 2x 2x 2x 2x 4x   8x   92x       92x       2x    
import {
  ColumnDef,
  ColumnFilter,
  flexRender,
  getCoreRowModel,
  getFilteredRowModel,
  RowSelectionState,
  useReactTable,
  VisibilityState,
} from "@tanstack/react-table";
import { ArrowDownToLine, ChevronDown } from "lucide-react";
import type { ReactNode } from "react";
import { useState } from "react";
import {
  DropdownMenu,
  DropdownMenuCheckboxItem,
  DropdownMenuContent,
  DropdownMenuTrigger,
} from "@/ahuora-design-system/ui/dropdown-menu";
import { ScrollArea, ScrollBar } from "@/ahuora-design-system/ui/scroll-area";
import { Spinner } from "@/ahuora-design-system/ui/spinner";
import {
  Table,
  TableBody,
  TableCell,
  TableHead,
  TableHeader,
  TableRow,
} from "@/ahuora-design-system/ui/table";
import { cn } from "@/lib/utils";
import { Button } from "./button";
 
type TableColumnMeta = {
  cellClassName?: string;
  headerClassName?: string;
};
 
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?: RowSelectionState;
  columnFilters?: ColumnFilter[];
  columnSelection?: boolean;
  title?: string;
  isLoading?: boolean;
  withBorder?: boolean;
  hideHeader?: boolean;
  hideTitle?: boolean;
  className?: string;
  emptyInfo?: string;
  ariaLabel?: string;
  handleDownload?: () => void;
  toolbarStart?: ReactNode;
  stickyControls?: boolean;
  constrainedHeight?: boolean;
  getRowClassName?: (row: TData) => string | undefined;
  getRowRef?: (
    row: TData,
  ) => ((node: HTMLTableRowElement | null) => void) | undefined;
}
 
export function DataTable<TData, TValue>({
  columns,
  data,
  handleSelect,
  handleFilterChange,
  handleRowClick,
  rowSelection = {},
  columnFilters,
  isLoading,
  title,
  columnSelection = false,
  withBorder = true,
  hideHeader = false,
  hideTitle = false,
  className = "",
  emptyInfo = "No results",
  ariaLabel,
  handleDownload,
  toolbarStart,
  stickyControls = false,
  constrainedHeight = false,
  getRowClassName,
  getRowRef,
}: 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={cn(
        "flex h-full w-full flex-col gap-3",
        constrainedHeight ? "min-h-0" : "justify-end",
      )}
    >
      <div
        className={cn(
          "flex flex-wrap items-center justify-between gap-2",
          stickyControls && "sticky top-0 z-20 shrink-0 bg-background py-1",
        )}
      >
        <div className="min-w-0 flex-1">
          {toolbarStart ??
            (title && !hideTitle ? (
              <p
                className="strong capitalize"
                aria-label={`data-table-title-${title}`}
              >
                {title}
              </p>
            ) : null)}
        </div>
 
        <div className="flex shrink-0 items-center gap-2">
          {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,
          constrainedHeight ? "min-h-0 flex-1 w-full" : "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) => {
                    const columnMeta = header.column.columnDef.meta as
                      | TableColumnMeta
                      | undefined;
                    return (
                      <TableHead
                        key={header.id}
                        className={cn(
                          header.getSize() === 0 ? `w-6` : ``,
                          columnMeta?.headerClassName,
                        )}
                        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}
                  className={getRowClassName?.(row.original)}
                  ref={getRowRef?.(row.original)}
                  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",
                        (
                          cell.column.columnDef.meta as
                            | TableColumnMeta
                            | undefined
                        )?.cellClassName,
                      )}
                      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>
  );
}
export const createColumns = (data, rounded = false) => {
  if (!data || data.length === 0) return [];
  const firstRow = data[0];
  Iif (!firstRow) return [];
  const columns: ColumnDef<Record<string, unknown>, unknown>[] = [];
  Object.keys(firstRow).forEach((key) =>
    columns.push({
      accessorKey: key,
      header: () => key,
      cell: ({ row }) => {
        const value = row.getValue(key);
        if (rounded && typeof value === "number") {
          return value.toFixed(3);
        }
        return value;
      },
    }),
  );
  return columns;
};