| |
| import React, { useState, useRef, useEffect } from 'react'; |
| import { useIntl, FormattedMessage, useAccess, useParams, history } from '@umijs/max'; |
| import type { FormInstance } from 'antd'; |
| import { Button, message, Modal } from 'antd'; |
| import { ActionType, FooterToolbar, PageContainer, ProColumns, ProTable } from '@ant-design/pro-components'; |
| import { PlusOutlined, DeleteOutlined, ExclamationCircleOutlined } from '@ant-design/icons'; |
| import { getJobLogList, removeJobLog, exportJobLog } from '@/services/monitor/jobLog'; |
| import DetailForm from './detail'; |
| import { getDictValueEnum } from '@/services/system/dict'; |
| import { getJob } from '@/services/monitor/job'; |
| import DictTag from '@/components/DictTag'; |
| |
| /** |
| * 定时任务调度日志 List Page |
| * |
| * @author whiteshader |
| * @date 2023-02-07 |
| */ |
| |
| /** |
| * 删除节点 |
| * |
| * @param selectedRows |
| */ |
| const handleRemove = async (selectedRows: API.Monitor.JobLog[]) => { |
| const hide = message.loading('正在删除'); |
| if (!selectedRows) return true; |
| try { |
| const resp = await removeJobLog(selectedRows.map((row) => row.jobLogId).join(',')); |
| hide(); |
| if (resp.code === 200) { |
| message.success('删除成功,即将刷新'); |
| } else { |
| message.error(resp.msg); |
| } |
| return true; |
| } catch (error) { |
| hide(); |
| message.error('删除失败,请重试'); |
| return false; |
| } |
| }; |
| |
| const handleRemoveOne = async (selectedRow: API.Monitor.JobLog) => { |
| const hide = message.loading('正在删除'); |
| if (!selectedRow) return true; |
| try { |
| const params = [selectedRow.jobLogId]; |
| const resp = await removeJobLog(params.join(',')); |
| hide(); |
| if (resp.code === 200) { |
| message.success('删除成功,即将刷新'); |
| } else { |
| message.error(resp.msg); |
| } |
| return true; |
| } catch (error) { |
| hide(); |
| message.error('删除失败,请重试'); |
| return false; |
| } |
| }; |
| |
| /** |
| * 清空日志数据 |
| * |
| */ |
| const handleExport = async () => { |
| const hide = message.loading('正在导出'); |
| try { |
| await exportJobLog(); |
| hide(); |
| message.success('导出成功'); |
| return true; |
| } catch (error) { |
| hide(); |
| message.error('导出失败,请重试'); |
| return false; |
| } |
| }; |
| |
| |
| const JobLogTableList: React.FC = () => { |
| const formTableRef = useRef<FormInstance>(); |
| |
| const [modalOpen, setModalOpen] = useState<boolean>(false); |
| |
| const actionRef = useRef<ActionType>(); |
| const [currentRow, setCurrentRow] = useState<API.Monitor.JobLog>(); |
| const [selectedRows, setSelectedRows] = useState<API.Monitor.JobLog[]>([]); |
| |
| const [jobGroupOptions, setJobGroupOptions] = useState<any>([]); |
| const [statusOptions, setStatusOptions] = useState<any>([]); |
| |
| const [queryParams, setQueryParams] = useState<any>([]); |
| |
| const access = useAccess(); |
| |
| /** 国际化配置 */ |
| const intl = useIntl(); |
| |
| const params = useParams(); |
| if (params.id === undefined) { |
| history.push('/monitor/job'); |
| } |
| const jobId = params.id || 0; |
| useEffect(() => { |
| if (jobId !== undefined && jobId !== 0) { |
| getJob(Number(jobId)).then(response => { |
| setQueryParams({ |
| jobName: response.data.jobName, |
| jobGroup: response.data.jobGroup |
| }); |
| }); |
| } |
| getDictValueEnum('sys_job_status').then((data) => { |
| setStatusOptions(data); |
| }); |
| getDictValueEnum('sys_job_group').then((data) => { |
| setJobGroupOptions(data); |
| }); |
| }, []); |
| |
| const columns: ProColumns<API.Monitor.JobLog>[] = [ |
| { |
| title: <FormattedMessage id="monitor.job.log.job_log_id" defaultMessage="任务日志编号" />, |
| dataIndex: 'jobLogId', |
| valueType: 'text', |
| hideInSearch: true, |
| }, |
| { |
| title: <FormattedMessage id="monitor.job.log.job_name" defaultMessage="任务名称" />, |
| dataIndex: 'jobName', |
| valueType: 'text', |
| }, |
| { |
| title: <FormattedMessage id="monitor.job.log.job_group" defaultMessage="任务组名" />, |
| dataIndex: 'jobGroup', |
| valueType: 'text', |
| }, |
| { |
| title: <FormattedMessage id="monitor.job.log.invoke_target" defaultMessage="调用目标字符串" />, |
| dataIndex: 'invokeTarget', |
| valueType: 'textarea', |
| }, |
| { |
| title: <FormattedMessage id="monitor.job.log.job_message" defaultMessage="日志信息" />, |
| dataIndex: 'jobMessage', |
| valueType: 'textarea', |
| }, |
| { |
| title: <FormattedMessage id="monitor.job.log.status" defaultMessage="执行状态" />, |
| dataIndex: 'status', |
| valueType: 'select', |
| valueEnum: statusOptions, |
| render: (_, record) => { |
| return (<DictTag enums={statusOptions} value={record.status} />); |
| }, |
| }, |
| { |
| title: <FormattedMessage id="monitor.job.log.create_time" defaultMessage="异常信息" />, |
| dataIndex: 'createTime', |
| valueType: 'text', |
| }, |
| { |
| title: <FormattedMessage id="pages.searchTable.titleOption" defaultMessage="操作" />, |
| dataIndex: 'option', |
| width: '120px', |
| valueType: 'option', |
| render: (_, record) => [ |
| <Button |
| type="link" |
| size="small" |
| key="edit" |
| hidden={!access.hasPerms('monitor:job-log:edit')} |
| onClick={() => { |
| setModalOpen(true); |
| setCurrentRow(record); |
| }} |
| > |
| 编辑 |
| </Button>, |
| <Button |
| type="link" |
| size="small" |
| danger |
| key="batchRemove" |
| hidden={!access.hasPerms('monitor:job-log:remove')} |
| onClick={async () => { |
| Modal.confirm({ |
| title: '删除', |
| content: '确定删除该项吗?', |
| okText: '确认', |
| cancelText: '取消', |
| onOk: async () => { |
| const success = await handleRemoveOne(record); |
| if (success) { |
| if (actionRef.current) { |
| actionRef.current.reload(); |
| } |
| } |
| }, |
| }); |
| }} |
| > |
| 删除 |
| </Button>, |
| ], |
| }, |
| ]; |
| |
| return ( |
| <PageContainer> |
| <div style={{ width: '100%', float: 'right' }}> |
| <ProTable<API.Monitor.JobLog> |
| headerTitle={intl.formatMessage({ |
| id: 'pages.searchTable.title', |
| defaultMessage: '信息', |
| })} |
| actionRef={actionRef} |
| formRef={formTableRef} |
| rowKey="jobLogId" |
| key="job-logList" |
| search={{ |
| labelWidth: 120, |
| }} |
| toolBarRender={() => [ |
| <Button |
| type="primary" |
| key="add" |
| hidden={!access.hasPerms('monitor:job-log:add')} |
| onClick={async () => { |
| setCurrentRow(undefined); |
| setModalOpen(true); |
| }} |
| > |
| <PlusOutlined /> <FormattedMessage id="pages.searchTable.new" defaultMessage="新建" /> |
| </Button>, |
| <Button |
| type="primary" |
| key="remove" |
| danger |
| hidden={selectedRows?.length === 0 || !access.hasPerms('monitor:job-log:remove')} |
| onClick={async () => { |
| Modal.confirm({ |
| title: '是否确认删除所选数据项?', |
| icon: <ExclamationCircleOutlined />, |
| content: '请谨慎操作', |
| async onOk() { |
| const success = await handleRemove(selectedRows); |
| if (success) { |
| setSelectedRows([]); |
| actionRef.current?.reloadAndRest?.(); |
| } |
| }, |
| onCancel() { }, |
| }); |
| }} |
| > |
| <DeleteOutlined /> |
| <FormattedMessage id="pages.searchTable.delete" defaultMessage="删除" /> |
| </Button>, |
| <Button |
| type="primary" |
| key="export" |
| hidden={!access.hasPerms('monitor:job-log:export')} |
| onClick={async () => { |
| handleExport(); |
| }} |
| > |
| <PlusOutlined /> |
| <FormattedMessage id="pages.searchTable.export" defaultMessage="导出" /> |
| </Button>, |
| ]} |
| params={queryParams} |
| request={(params) => |
| getJobLogList({ ...params } as API.Monitor.JobLogListParams).then((res) => { |
| const result = { |
| data: res.rows, |
| total: res.total, |
| success: true, |
| }; |
| return result; |
| }) |
| } |
| columns={columns} |
| rowSelection={{ |
| onChange: (_, selectedRows) => { |
| setSelectedRows(selectedRows); |
| }, |
| }} |
| /> |
| </div> |
| {selectedRows?.length > 0 && ( |
| <FooterToolbar |
| extra={ |
| <div> |
| <FormattedMessage id="pages.searchTable.chosen" defaultMessage="已选择" /> |
| <a style={{ fontWeight: 600 }}>{selectedRows.length}</a> |
| <FormattedMessage id="pages.searchTable.item" defaultMessage="项" /> |
| </div> |
| } |
| > |
| <Button |
| key="remove" |
| danger |
| hidden={!access.hasPerms('monitor:job-log:del')} |
| onClick={async () => { |
| Modal.confirm({ |
| title: '删除', |
| content: '确定删除该项吗?', |
| okText: '确认', |
| cancelText: '取消', |
| onOk: async () => { |
| const success = await handleRemove(selectedRows); |
| if (success) { |
| setSelectedRows([]); |
| actionRef.current?.reloadAndRest?.(); |
| } |
| }, |
| }); |
| }} |
| > |
| <FormattedMessage id="pages.searchTable.batchDeletion" defaultMessage="批量删除" /> |
| </Button> |
| </FooterToolbar> |
| )} |
| <DetailForm |
| onCancel={() => { |
| setModalOpen(false); |
| setCurrentRow(undefined); |
| }} |
| open={modalOpen} |
| values={currentRow || {}} |
| statusOptions={statusOptions} |
| jobGroupOptions={jobGroupOptions} |
| /> |
| </PageContainer> |
| ); |
| }; |
| |
| export default JobLogTableList; |