mirror of https://github.com/portainer/portainer
35 lines
934 B
TypeScript
35 lines
934 B
TypeScript
import { Clock } from 'lucide-react';
|
|
|
|
import { Datatable } from '@@/datatables';
|
|
import { createPersistedStore } from '@@/datatables/types';
|
|
import { useTableState } from '@@/datatables/useTableState';
|
|
|
|
import { useEdgeJobs } from '../queries/useEdgeJobs';
|
|
|
|
import { TableActions } from './TableActions';
|
|
import { columns } from './columns';
|
|
|
|
const tableKey = 'edge-jobs';
|
|
|
|
const settingsStore = createPersistedStore(tableKey);
|
|
|
|
export function EdgeJobsDatatable() {
|
|
const jobsQuery = useEdgeJobs();
|
|
const tableState = useTableState(settingsStore, tableKey);
|
|
|
|
return (
|
|
<Datatable
|
|
columns={columns}
|
|
isLoading={jobsQuery.isLoading}
|
|
dataset={jobsQuery.data || []}
|
|
settingsManager={tableState}
|
|
title="Edge Jobs"
|
|
titleIcon={Clock}
|
|
renderTableActions={(selectedItems) => (
|
|
<TableActions selectedItems={selectedItems} />
|
|
)}
|
|
data-cy="edge-jobs-datatable"
|
|
/>
|
|
);
|
|
}
|