153 lines
3.9 KiB
TypeScript
153 lines
3.9 KiB
TypeScript
import * as React from 'react';
|
|
|
|
import {
|
|
ColumnDef,
|
|
flexRender,
|
|
getCoreRowModel,
|
|
useReactTable,
|
|
} from '@tanstack/react-table';
|
|
import TableHeader from './table-header/TableHeader';
|
|
import { IconProp } from '@fortawesome/fontawesome-svg-core';
|
|
import styled from '@emotion/styled';
|
|
import { SortType } from './table-header/SortAndFilterBar';
|
|
import { faCalendar } from '@fortawesome/pro-regular-svg-icons';
|
|
|
|
type OwnProps<TData> = {
|
|
data: Array<TData>;
|
|
columns: Array<ColumnDef<TData, any>>;
|
|
viewName: string;
|
|
viewIcon?: IconProp;
|
|
onSortsUpdate?: (sorts: Array<SortType>) => void;
|
|
};
|
|
|
|
const StyledTable = styled.table`
|
|
min-width: calc(100% - ${(props) => props.theme.spacing(4)});
|
|
border-radius: 4px;
|
|
border-spacing: 0;
|
|
border-collapse: collapse;
|
|
margin-left: ${(props) => props.theme.spacing(2)};
|
|
margin-right: ${(props) => props.theme.spacing(2)};
|
|
|
|
th {
|
|
border-collapse: collapse;
|
|
color: ${(props) => props.theme.text40};
|
|
padding: 0;
|
|
border: 1px solid ${(props) => props.theme.tertiaryBackground};
|
|
text-align: left;
|
|
:last-child {
|
|
border-right-color: transparent;
|
|
}
|
|
:first-of-type {
|
|
border-left-color: transparent;
|
|
}
|
|
}
|
|
|
|
td {
|
|
border-collapse: collapse;
|
|
color: ${(props) => props.theme.text80};
|
|
padding: 0;
|
|
border: 1px solid ${(props) => props.theme.tertiaryBackground};
|
|
text-align: left;
|
|
:last-child {
|
|
border-right-color: transparent;
|
|
}
|
|
:first-of-type {
|
|
border-left-color: transparent;
|
|
}
|
|
}
|
|
`;
|
|
|
|
const StyledTableWithHeader = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
`;
|
|
|
|
function Table<TData>({
|
|
data,
|
|
columns,
|
|
viewName,
|
|
viewIcon,
|
|
onSortsUpdate,
|
|
}: OwnProps<TData>) {
|
|
const table = useReactTable({
|
|
data,
|
|
columns,
|
|
getCoreRowModel: getCoreRowModel(),
|
|
});
|
|
|
|
const sortsAvailable: Array<SortType> = [
|
|
{
|
|
id: 'created_at',
|
|
label: 'Created at',
|
|
order: 'asc',
|
|
icon: faCalendar,
|
|
},
|
|
];
|
|
|
|
return (
|
|
<StyledTableWithHeader>
|
|
<TableHeader
|
|
viewName={viewName}
|
|
viewIcon={viewIcon}
|
|
onSortsUpdate={onSortsUpdate}
|
|
sortsAvailable={sortsAvailable}
|
|
/>
|
|
<StyledTable>
|
|
<thead>
|
|
{table.getHeaderGroups().map((headerGroup) => (
|
|
<tr key={headerGroup.id}>
|
|
{headerGroup.headers.map((header) => (
|
|
<th key={header.id}>
|
|
{header.isPlaceholder
|
|
? null
|
|
: flexRender(
|
|
header.column.columnDef.header,
|
|
header.getContext(),
|
|
)}
|
|
</th>
|
|
))}
|
|
</tr>
|
|
))}
|
|
</thead>
|
|
<tbody>
|
|
{table.getRowModel().rows.map((row, index) => (
|
|
<tr key={row.id} data-testid={`row-id-${row.index}`}>
|
|
{row.getVisibleCells().map((cell) => {
|
|
return (
|
|
<td key={cell.id}>
|
|
{flexRender(cell.column.columnDef.cell, cell.getContext())}
|
|
</td>
|
|
);
|
|
})}
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
{table
|
|
.getFooterGroups()
|
|
.flatMap((group) => group.headers)
|
|
.filter((header) => !!header.column.columnDef.footer).length > 0 && (
|
|
<tfoot>
|
|
{table.getFooterGroups().map((footerGroup) => (
|
|
<tr key={footerGroup.id}>
|
|
{footerGroup.headers.map((header) => (
|
|
<th key={header.id}>
|
|
{header.isPlaceholder
|
|
? null
|
|
: flexRender(
|
|
header.column.columnDef.footer,
|
|
header.getContext(),
|
|
)}
|
|
</th>
|
|
))}
|
|
</tr>
|
|
))}
|
|
</tfoot>
|
|
)}
|
|
</StyledTable>
|
|
</StyledTableWithHeader>
|
|
);
|
|
}
|
|
|
|
export default Table;
|