100 lines
2.5 KiB
TypeScript
100 lines
2.5 KiB
TypeScript
import * as React from 'react';
|
|
|
|
import {
|
|
ColumnDef,
|
|
flexRender,
|
|
getCoreRowModel,
|
|
useReactTable,
|
|
} from '@tanstack/react-table';
|
|
import TableHeader from './TableHeader';
|
|
import { IconProp } from '@fortawesome/fontawesome-svg-core';
|
|
import styled from '@emotion/styled';
|
|
|
|
type OwnProps = {
|
|
data: Array<any>;
|
|
columns: Array<ColumnDef<any, any>>;
|
|
viewName: string;
|
|
viewIcon?: IconProp;
|
|
};
|
|
|
|
const StyledTable = styled.table`
|
|
min-width: 100%;
|
|
border-radius: 4px;
|
|
border: 1px solid #f5f5f5;
|
|
border-spacing: 0;
|
|
|
|
td,
|
|
th {
|
|
border: 1px solid #f5f5f5;
|
|
font-size: 12px;
|
|
text-align: left;
|
|
padding: 11px 0 11px 4px;
|
|
}
|
|
`;
|
|
|
|
function Table({ data, columns, viewName, viewIcon }: OwnProps) {
|
|
const table = useReactTable({
|
|
data,
|
|
columns,
|
|
getCoreRowModel: getCoreRowModel(),
|
|
});
|
|
|
|
return (
|
|
<div>
|
|
<TableHeader viewName={viewName} viewIcon={viewIcon} />
|
|
<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) => (
|
|
<tr key={row.id}>
|
|
{row.getVisibleCells().map((cell) => (
|
|
<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>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Table;
|