* portal date preset selection with a high zindex * increase height of data-table * skeleton fixes
177 lines
6.8 KiB
TypeScript
177 lines
6.8 KiB
TypeScript
"use client";
|
|
|
|
import type { Row } from "@tanstack/react-table";
|
|
import { flexRender } from "@tanstack/react-table";
|
|
import type { Table as ReactTableType } from "@tanstack/react-table";
|
|
import { useMemo } from "react";
|
|
import { useVirtual } from "react-virtual";
|
|
|
|
import classNames from "@calcom/lib/classNames";
|
|
|
|
import { Icon } from "../icon";
|
|
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "../table/TableNew";
|
|
|
|
export interface DataTableProps<TData, TValue> {
|
|
table: ReactTableType<TData>;
|
|
tableContainerRef: React.RefObject<HTMLDivElement>;
|
|
isPending?: boolean;
|
|
onRowMouseclick?: (row: Row<TData>) => void;
|
|
onScroll?: (e: React.UIEvent<HTMLDivElement, UIEvent>) => void;
|
|
tableOverlay?: React.ReactNode;
|
|
variant?: "default" | "compact";
|
|
"data-testid"?: string;
|
|
children?: React.ReactNode;
|
|
}
|
|
export function DataTable<TData, TValue>({
|
|
table,
|
|
tableContainerRef,
|
|
isPending,
|
|
variant,
|
|
onRowMouseclick,
|
|
onScroll,
|
|
children,
|
|
...rest
|
|
}: DataTableProps<TData, TValue> & React.ComponentPropsWithoutRef<"div">) {
|
|
const { rows } = table.getRowModel();
|
|
|
|
const rowVirtualizer = useVirtual({
|
|
parentRef: tableContainerRef,
|
|
size: rows.length,
|
|
overscan: 10,
|
|
});
|
|
const { virtualItems: virtualRows, totalSize } = rowVirtualizer;
|
|
const paddingTop = virtualRows.length > 0 ? virtualRows?.[0]?.start || 0 : 0;
|
|
const paddingBottom =
|
|
virtualRows.length > 0 ? totalSize - (virtualRows?.[virtualRows.length - 1]?.end || 0) : 0;
|
|
|
|
const columnSizeVars = useMemo(() => {
|
|
const headers = table.getFlatHeaders();
|
|
const colSizes: { [key: string]: number } = {};
|
|
for (let i = 0; i < headers.length; i++) {
|
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
const header = headers[i]!;
|
|
colSizes[`--header-${header.id}-size`] = header.getSize();
|
|
colSizes[`--col-${header.column.id}-size`] = header.column.getSize();
|
|
}
|
|
return colSizes;
|
|
}, [table.getState().columnSizingInfo, table.getState().columnSizing]);
|
|
|
|
return (
|
|
<div
|
|
className={classNames(
|
|
"grid h-[85dvh]", // Set a fixed height for the container
|
|
rest.className
|
|
)}
|
|
style={{
|
|
gridTemplateRows: "auto 1fr auto",
|
|
gridTemplateAreas: "'header' 'body' 'footer'",
|
|
...rest.style,
|
|
...columnSizeVars,
|
|
}}
|
|
data-testid={rest["data-testid"] ?? "data-table"}>
|
|
<div
|
|
ref={tableContainerRef}
|
|
onScroll={onScroll}
|
|
className="scrollbar-thin border-subtle relative h-full overflow-auto rounded-md border"
|
|
style={{ gridArea: "body" }}>
|
|
<Table className="border-0">
|
|
<TableHeader className="bg-subtle sticky top-0 z-10">
|
|
{table.getHeaderGroups().map((headerGroup) => (
|
|
<TableRow key={headerGroup.id}>
|
|
{headerGroup.headers.map((header) => {
|
|
const meta = header.column.columnDef.meta;
|
|
return (
|
|
<TableHead
|
|
key={header.id}
|
|
style={{
|
|
...(meta?.sticky?.position === "left" && { left: `${meta.sticky.gap || 0}px` }),
|
|
...(meta?.sticky?.position === "right" && { right: `${meta.sticky.gap || 0}px` }),
|
|
width: `calc(var(--header-${header?.id}-size) * 1px)`,
|
|
}}
|
|
className={classNames(
|
|
header.column.getCanSort() ? "cursor-pointer select-none" : "",
|
|
meta?.sticky && "bg-subtle sticky top-0 z-20"
|
|
)}>
|
|
<div className="flex items-center" onClick={header.column.getToggleSortingHandler()}>
|
|
{header.isPlaceholder
|
|
? null
|
|
: flexRender(header.column.columnDef.header, header.getContext())}
|
|
{header.column.getIsSorted() && (
|
|
<Icon
|
|
name="arrow-up"
|
|
className="ml-2 h-4 w-4"
|
|
style={{
|
|
transform:
|
|
header.column.getIsSorted() === "asc" ? "rotate(0deg)" : "rotate(180deg)",
|
|
transition: "transform 0.2s ease-in-out",
|
|
}}
|
|
/>
|
|
)}
|
|
</div>
|
|
</TableHead>
|
|
);
|
|
})}
|
|
</TableRow>
|
|
))}
|
|
</TableHeader>
|
|
<TableBody>
|
|
{paddingTop > 0 && (
|
|
<tr>
|
|
<td style={{ height: `${paddingTop}px` }} />
|
|
</tr>
|
|
)}
|
|
{virtualRows && !isPending ? (
|
|
virtualRows.map((virtualRow) => {
|
|
const row = rows[virtualRow.index] as Row<TData>;
|
|
return (
|
|
<TableRow
|
|
key={row.id}
|
|
data-state={row.getIsSelected() && "selected"}
|
|
onClick={() => onRowMouseclick && onRowMouseclick(row)}
|
|
className={classNames(
|
|
onRowMouseclick && "hover:cursor-pointer",
|
|
variant === "compact" && "!border-0",
|
|
"group"
|
|
)}>
|
|
{row.getVisibleCells().map((cell) => {
|
|
const column = table.getColumn(cell.column.id);
|
|
const meta = column?.columnDef.meta;
|
|
return (
|
|
<TableCell
|
|
key={cell.id}
|
|
style={{
|
|
...(meta?.sticky?.position === "left" && { left: `${meta.sticky.gap || 0}px` }),
|
|
...(meta?.sticky?.position === "right" && { right: `${meta.sticky.gap || 0}px` }),
|
|
width: `calc(var(--col-${cell.column.id}-size) * 1px)`,
|
|
}}
|
|
className={classNames(
|
|
variant === "compact" && "p-1.5",
|
|
meta?.sticky && "group-hover:bg-muted bg-default sticky"
|
|
)}>
|
|
{flexRender(cell.column.columnDef.cell, cell.getContext())}
|
|
</TableCell>
|
|
);
|
|
})}
|
|
</TableRow>
|
|
);
|
|
})
|
|
) : (
|
|
<TableRow>
|
|
<TableCell colSpan={table.getAllColumns().length} className="h-24 text-center">
|
|
No results.
|
|
</TableCell>
|
|
</TableRow>
|
|
)}
|
|
{paddingBottom > 0 && (
|
|
<tr>
|
|
<td style={{ height: `${paddingBottom}px` }} />
|
|
</tr>
|
|
)}
|
|
</TableBody>
|
|
</Table>
|
|
</div>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|