|
@@ -9,13 +9,14 @@ import CreateForm from './components/CreateForm';
|
|
|
import UpdateForm, { FormValueType } from './components/UpdateForm';
|
|
|
import { TableListItem } from './data.d';
|
|
|
import { queryRule, updateRule, addRule, removeRule } from './service';
|
|
|
-
|
|
|
/**
|
|
|
* 添加节点
|
|
|
* @param fields
|
|
|
*/
|
|
|
+
|
|
|
const handleAdd = async (fields: TableListItem) => {
|
|
|
const hide = message.loading('正在添加');
|
|
|
+
|
|
|
try {
|
|
|
await addRule({ ...fields });
|
|
|
hide();
|
|
@@ -27,13 +28,14 @@ const handleAdd = async (fields: TableListItem) => {
|
|
|
return false;
|
|
|
}
|
|
|
};
|
|
|
-
|
|
|
/**
|
|
|
* 更新节点
|
|
|
* @param fields
|
|
|
*/
|
|
|
+
|
|
|
const handleUpdate = async (fields: FormValueType) => {
|
|
|
const hide = message.loading('正在配置');
|
|
|
+
|
|
|
try {
|
|
|
await updateRule({
|
|
|
name: fields.name,
|
|
@@ -41,7 +43,6 @@ const handleUpdate = async (fields: FormValueType) => {
|
|
|
key: fields.key,
|
|
|
});
|
|
|
hide();
|
|
|
-
|
|
|
message.success('配置成功');
|
|
|
return true;
|
|
|
} catch (error) {
|
|
@@ -50,14 +51,15 @@ const handleUpdate = async (fields: FormValueType) => {
|
|
|
return false;
|
|
|
}
|
|
|
};
|
|
|
-
|
|
|
/**
|
|
|
* 删除节点
|
|
|
* @param selectedRows
|
|
|
*/
|
|
|
+
|
|
|
const handleRemove = async (selectedRows: TableListItem[]) => {
|
|
|
const hide = message.loading('正在删除');
|
|
|
if (!selectedRows) return true;
|
|
|
+
|
|
|
try {
|
|
|
await removeRule({
|
|
|
key: selectedRows.map((row) => row.key),
|
|
@@ -82,21 +84,14 @@ const TableList: React.FC<{}> = () => {
|
|
|
const intl = useIntl();
|
|
|
const columns: ProColumns<TableListItem>[] = [
|
|
|
{
|
|
|
- title: (
|
|
|
- <FormattedMessage
|
|
|
- id="pages.searchTable.updateForm.ruleName.nameLabel"
|
|
|
- defaultMessage="规则名称"
|
|
|
- />
|
|
|
- ),
|
|
|
+ title: '规则名称',
|
|
|
dataIndex: 'name',
|
|
|
tip: '规则名称是唯一的 key',
|
|
|
formItemProps: {
|
|
|
rules: [
|
|
|
{
|
|
|
required: true,
|
|
|
- message: (
|
|
|
- <FormattedMessage id="pages.searchTable.ruleName" defaultMessage="规则名称为必填项" />
|
|
|
- ),
|
|
|
+ message: '规则名称为必填项',
|
|
|
},
|
|
|
],
|
|
|
},
|
|
@@ -105,12 +100,12 @@ const TableList: React.FC<{}> = () => {
|
|
|
},
|
|
|
},
|
|
|
{
|
|
|
- title: <FormattedMessage id="pages.searchTable.titleDesc" defaultMessage="描述" />,
|
|
|
+ title: '描述',
|
|
|
dataIndex: 'desc',
|
|
|
valueType: 'textarea',
|
|
|
},
|
|
|
{
|
|
|
- title: <FormattedMessage id="pages.searchTable.titleCallNo" defaultMessage="服务调用次数" />,
|
|
|
+ title: '服务调用次数',
|
|
|
dataIndex: 'callNo',
|
|
|
sorter: true,
|
|
|
hideInForm: true,
|
|
@@ -121,49 +116,41 @@ const TableList: React.FC<{}> = () => {
|
|
|
})}`,
|
|
|
},
|
|
|
{
|
|
|
- title: <FormattedMessage id="pages.searchTable.titleStatus" defaultMessage="状态" />,
|
|
|
+ title: '状态',
|
|
|
dataIndex: 'status',
|
|
|
hideInForm: true,
|
|
|
valueEnum: {
|
|
|
0: {
|
|
|
- text: (
|
|
|
- <FormattedMessage id="pages.searchTable.nameStatus.default" defaultMessage="关闭" />
|
|
|
- ),
|
|
|
+ text: '关闭',
|
|
|
status: 'Default',
|
|
|
},
|
|
|
1: {
|
|
|
- text: (
|
|
|
- <FormattedMessage id="pages.searchTable.nameStatus.running" defaultMessage="运行中" />
|
|
|
- ),
|
|
|
+ text: '运行中',
|
|
|
status: 'Processing',
|
|
|
},
|
|
|
2: {
|
|
|
- text: (
|
|
|
- <FormattedMessage id="pages.searchTable.nameStatus.online" defaultMessage="已上线" />
|
|
|
- ),
|
|
|
+ text: '已上线',
|
|
|
status: 'Success',
|
|
|
},
|
|
|
3: {
|
|
|
- text: (
|
|
|
- <FormattedMessage id="pages.searchTable.nameStatus.abnormal" defaultMessage="异常" />
|
|
|
- ),
|
|
|
+ text: '异常',
|
|
|
status: 'Error',
|
|
|
},
|
|
|
},
|
|
|
},
|
|
|
{
|
|
|
- title: (
|
|
|
- <FormattedMessage id="pages.searchTable.titleUpdatedAt" defaultMessage="上次调度时间" />
|
|
|
- ),
|
|
|
+ title: '上次调度时间',
|
|
|
dataIndex: 'updatedAt',
|
|
|
sorter: true,
|
|
|
valueType: 'dateTime',
|
|
|
hideInForm: true,
|
|
|
renderFormItem: (item, { defaultRender, ...rest }, form) => {
|
|
|
const status = form.getFieldValue('status');
|
|
|
+
|
|
|
if (`${status}` === '0') {
|
|
|
return false;
|
|
|
}
|
|
|
+
|
|
|
if (`${status}` === '3') {
|
|
|
return (
|
|
|
<Input
|
|
@@ -175,11 +162,12 @@ const TableList: React.FC<{}> = () => {
|
|
|
/>
|
|
|
);
|
|
|
}
|
|
|
+
|
|
|
return defaultRender(item);
|
|
|
},
|
|
|
},
|
|
|
{
|
|
|
- title: <FormattedMessage id="pages.searchTable.titleOption" defaultMessage="操作" />,
|
|
|
+ title: '操作',
|
|
|
dataIndex: 'option',
|
|
|
valueType: 'option',
|
|
|
render: (_, record) => (
|
|
@@ -190,17 +178,14 @@ const TableList: React.FC<{}> = () => {
|
|
|
setStepFormValues(record);
|
|
|
}}
|
|
|
>
|
|
|
- <FormattedMessage id="pages.searchTable.config" defaultMessage="配置" />
|
|
|
+ 配置
|
|
|
</a>
|
|
|
<Divider type="vertical" />
|
|
|
- <a href="">
|
|
|
- <FormattedMessage id="pages.searchTable.subscribeAlert" defaultMessage="订阅警报" />
|
|
|
- </a>
|
|
|
+ <a href="">订阅警报</a>
|
|
|
</>
|
|
|
),
|
|
|
},
|
|
|
];
|
|
|
-
|
|
|
return (
|
|
|
<PageContainer>
|
|
|
<ProTable<TableListItem>
|
|
@@ -215,7 +200,7 @@ const TableList: React.FC<{}> = () => {
|
|
|
}}
|
|
|
toolBarRender={() => [
|
|
|
<Button type="primary" key="primary" onClick={() => handleModalVisible(true)}>
|
|
|
- <PlusOutlined /> <FormattedMessage id="pages.searchTable.new" defaultMessage="新建" />
|
|
|
+ <PlusOutlined /> 新建
|
|
|
</Button>,
|
|
|
]}
|
|
|
request={(params, sorter, filter) => queryRule({ ...params, sorter, filter })}
|
|
@@ -228,17 +213,17 @@ const TableList: React.FC<{}> = () => {
|
|
|
<FooterToolbar
|
|
|
extra={
|
|
|
<div>
|
|
|
- <FormattedMessage id="pages.searchTable.chosen" defaultMessage="已选择" />{' '}
|
|
|
- <a style={{ fontWeight: 600 }}>{selectedRowsState.length}</a>{' '}
|
|
|
- <FormattedMessage id="pages.searchTable.item" defaultMessage="项" />
|
|
|
-
|
|
|
+ 已选择{' '}
|
|
|
+ <a
|
|
|
+ style={{
|
|
|
+ fontWeight: 600,
|
|
|
+ }}
|
|
|
+ >
|
|
|
+ {selectedRowsState.length}
|
|
|
+ </a>{' '}
|
|
|
+ 项
|
|
|
<span>
|
|
|
- <FormattedMessage
|
|
|
- id="pages.searchTable.totalServiceCalls"
|
|
|
- defaultMessage="服务调用次数总计"
|
|
|
- />{' '}
|
|
|
- {selectedRowsState.reduce((pre, item) => pre + item.callNo, 0)}{' '}
|
|
|
- <FormattedMessage id="pages.searchTable.tenThousand" defaultMessage="万" />
|
|
|
+ 服务调用次数总计 {selectedRowsState.reduce((pre, item) => pre + item.callNo, 0)} 万
|
|
|
</span>
|
|
|
</div>
|
|
|
}
|
|
@@ -250,19 +235,19 @@ const TableList: React.FC<{}> = () => {
|
|
|
actionRef.current?.reloadAndRest?.();
|
|
|
}}
|
|
|
>
|
|
|
- <FormattedMessage id="pages.searchTable.batchDeletion" defaultMessage="批量删除" />
|
|
|
- </Button>
|
|
|
- <Button type="primary">
|
|
|
- <FormattedMessage id="pages.searchTable.batchApproval" defaultMessage="批量审批" />
|
|
|
+ 批量删除
|
|
|
</Button>
|
|
|
+ <Button type="primary">批量审批</Button>
|
|
|
</FooterToolbar>
|
|
|
)}
|
|
|
<CreateForm onCancel={() => handleModalVisible(false)} modalVisible={createModalVisible}>
|
|
|
<ProTable<TableListItem, TableListItem>
|
|
|
onSubmit={async (value) => {
|
|
|
const success = await handleAdd(value);
|
|
|
+
|
|
|
if (success) {
|
|
|
handleModalVisible(false);
|
|
|
+
|
|
|
if (actionRef.current) {
|
|
|
actionRef.current.reload();
|
|
|
}
|
|
@@ -277,9 +262,11 @@ const TableList: React.FC<{}> = () => {
|
|
|
<UpdateForm
|
|
|
onSubmit={async (value) => {
|
|
|
const success = await handleUpdate(value);
|
|
|
+
|
|
|
if (success) {
|
|
|
handleUpdateModalVisible(false);
|
|
|
setStepFormValues({});
|
|
|
+
|
|
|
if (actionRef.current) {
|
|
|
actionRef.current.reload();
|
|
|
}
|