Files
fredy/ui/src/components/table/JobTable.jsx

73 lines
2.0 KiB
React
Raw Normal View History

2023-03-20 08:52:13 +01:00
import React from 'react';
2023-03-20 08:52:13 +01:00
import { Button, Empty, Table, Switch } from '@douyinfe/semi-ui';
import { IconDelete, IconEdit, IconHistogram } from '@douyinfe/semi-icons';
import { IllustrationNoResult, IllustrationNoResultDark } from '@douyinfe/semi-illustrations';
import './JobTable.less';
2023-03-20 08:52:13 +01:00
const empty = (
<Empty
image={<IllustrationNoResult />}
darkModeImage={<IllustrationNoResultDark />}
description={'No jobs available.'}
2023-03-20 08:52:13 +01:00
/>
);
2023-03-20 08:52:13 +01:00
export default function JobTable({ jobs = {}, onJobRemoval, onJobStatusChanged, onJobEdit, onJobInsight } = {}) {
return (
2023-03-20 08:52:13 +01:00
<Table
pagination={false}
empty={empty}
columns={[
{
title: '',
dataIndex: '',
render: (job) => {
return <Switch onChange={(checked) => onJobStatusChanged(job.id, checked)} checked={job.enabled} />;
},
},
{
title: 'Name',
2023-03-20 08:52:13 +01:00
dataIndex: 'name',
},
{
title: 'Findings',
2023-03-20 08:52:13 +01:00
dataIndex: 'numberOfFoundListings',
render: (value) => {
return value || 0;
},
},
{
title: 'Providers',
2023-03-20 08:52:13 +01:00
dataIndex: 'provider',
render: (value) => {
return value.length || 0;
},
},
{
title: 'Notification adapters',
2023-03-20 08:52:13 +01:00
dataIndex: 'notificationAdapter',
render: (value) => {
return value.length || 0;
},
},
{
title: '',
dataIndex: 'tools',
render: (_, job) => {
return (
<div className="interactions">
<Button type="primary" icon={<IconHistogram />} onClick={() => onJobInsight(job.id)} />
<Button type="secondary" icon={<IconEdit />} onClick={() => onJobEdit(job.id)} />
2023-03-20 08:52:13 +01:00
<Button type="danger" icon={<IconDelete />} onClick={() => onJobRemoval(job.id)} />
</div>
2023-03-20 08:52:13 +01:00
);
},
},
]}
dataSource={jobs}
/>
);
}