core/apps/webapp/app/components/logs/ingestion-logs-table.tsx
Harshith Mullapudi a9034fb448 Feat: Ingest UI
2025-06-11 21:40:35 +05:30

99 lines
2.4 KiB
TypeScript

import {
flexRender,
getCoreRowModel,
useReactTable,
type ColumnDef,
} from "@tanstack/react-table";
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "../ui/table";
// Define the type for your ingestion log
export type IngestionLog = {
id: string;
createdAt: string;
// Add other fields as needed
};
const useIngestionLogsColumns = (): ColumnDef<IngestionLog>[] => [
{
accessorKey: "id",
header: "ID",
cell: (info) => info.getValue(),
},
{
accessorKey: "createdAt",
header: "Created At",
cell: (info) => new Date(info.getValue() as string).toLocaleString(),
},
{
accessorKey: "status",
header: "Status",
cell: (info) => info.getValue(),
},
// Add more columns as needed
];
export const IngestionLogsTable = ({
ingestionLogs,
}: {
ingestionLogs: IngestionLog[];
}) => {
const columns = useIngestionLogsColumns();
const table = useReactTable({
data: ingestionLogs,
columns,
getCoreRowModel: getCoreRowModel(),
});
return (
<div className="mt-6">
<Table>
<TableHeader>
{table.getHeaderGroups().map((headerGroup) => (
<TableRow key={headerGroup.id}>
{headerGroup.headers.map((header) => (
<TableHead key={header.id} className="text-sm">
{header.isPlaceholder
? null
: flexRender(
header.column.columnDef.header,
header.getContext(),
)}
</TableHead>
))}
</TableRow>
))}
</TableHeader>
<TableBody>
{table.getRowModel().rows?.length ? (
table.getRowModel().rows.map((row) => (
<TableRow
key={row.id}
data-state={row.getIsSelected() && "selected"}
>
{row.getVisibleCells().map((cell) => (
<TableCell key={cell.id} className="w-[90%] py-2">
{flexRender(cell.column.columnDef.cell, cell.getContext())}
</TableCell>
))}
</TableRow>
))
) : (
<TableRow>
<TableCell colSpan={columns.length} className="h-24 text-center">
No logs found.
</TableCell>
</TableRow>
)}
</TableBody>
</Table>
</div>
);
};