lookingglass/hyperglass/ui/components/output/table.tsx
2021-09-10 23:13:27 -07:00

45 lines
1.1 KiB
TypeScript

import { Flex } from '@chakra-ui/react';
import { useConfig } from '~/context';
import { Table } from '~/components';
import { Cell } from './cell';
import type { TColumn, ParsedDataField, TCellRender } from '~/types';
import type { TBGPTable } from './types';
function makeColumns(fields: ParsedDataField[]): TColumn[] {
return fields.map(pair => {
const [header, accessor, align] = pair;
const columnConfig = {
align,
accessor,
hidden: false,
Header: header,
} as TColumn;
if (align === null) {
columnConfig.hidden = true;
}
return columnConfig;
});
}
export const BGPTable: React.FC<TBGPTable> = (props: TBGPTable) => {
const { children: data, ...rest } = props;
const { parsedDataFields } = useConfig();
const columns = makeColumns(parsedDataFields);
return (
<Flex my={8} justify="center" maxW="100%" w="100%" {...rest}>
<Table
columns={columns}
bordersHorizontal
data={data.routes}
rowHighlightBg="green"
rowHighlightProp="active"
Cell={(d: TCellRender) => <Cell data={d} rawData={data} />}
/>
</Flex>
);
};