mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-07-22 17:48:09 +00:00
44 lines
1.4 KiB
JavaScript
44 lines
1.4 KiB
JavaScript
import { Box, Flex } from '@mantine/core';
|
|
import CustomTableHeader from './CustomTableHeader';
|
|
import { useCallback, useState, useRef } from 'react';
|
|
import { flexRender } from '@tanstack/react-table';
|
|
import table from '../../../helpers/table';
|
|
import CustomTableBody from './CustomTableBody';
|
|
import useLocalStorage from '../../../hooks/useLocalStorage';
|
|
|
|
const CustomTable = ({ table }) => {
|
|
const [tableSize, _] = useLocalStorage('table-size', 'default');
|
|
|
|
return (
|
|
<Box
|
|
className={`divTable table-striped table-size-${tableSize}`}
|
|
style={{
|
|
width: '100%',
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
}}
|
|
>
|
|
<CustomTableHeader
|
|
filters={table.filters}
|
|
getHeaderGroups={table.getHeaderGroups}
|
|
allRowIds={table.allRowIds}
|
|
headerCellRenderFns={table.headerCellRenderFns}
|
|
onSelectAllChange={
|
|
table.onSelectAllChange ? table.onSelectAllChange : null
|
|
}
|
|
selectedTableIds={table.selectedTableIds}
|
|
/>
|
|
<CustomTableBody
|
|
getRowModel={table.getRowModel}
|
|
bodyCellRenderFns={table.bodyCellRenderFns}
|
|
expandedRowIds={table.expandedRowIds}
|
|
expandedRowRenderer={table.expandedRowRenderer}
|
|
renderBodyCell={table.renderBodyCell}
|
|
getExpandedRowHeight={table.getExpandedRowHeight}
|
|
getRowStyles={table.getRowStyles} // Pass the getRowStyles function
|
|
/>
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
export default CustomTable;
|