feat(任务中心): 任务中心部分操作接口联调&跳转交互
This commit is contained in:
parent
e996402bc3
commit
3b437fe180
|
@ -28,6 +28,7 @@ import {
|
|||
import type { CommonList, TableQueryParams } from '@/models/common';
|
||||
import type { TimingTaskCenterApiCaseItem } from '@/models/projectManagement/taskCenter';
|
||||
import type {
|
||||
TaskCenterResourcePoolItem,
|
||||
TaskCenterResourcePoolStatus,
|
||||
TaskCenterStatisticsItem,
|
||||
TaskCenterSystemTaskItem,
|
||||
|
@ -58,7 +59,7 @@ export function getProjectExecuteTaskStatistics(data: string[]) {
|
|||
|
||||
// 项目任务-获取资源池列表
|
||||
export function getProjectTaskCenterResourcePools() {
|
||||
return MSR.get<string[]>({ url: projectTaskCenterResourcePoolsUrl });
|
||||
return MSR.get<TaskCenterResourcePoolItem[]>({ url: projectTaskCenterResourcePoolsUrl });
|
||||
}
|
||||
|
||||
// 项目任务-停止任务
|
||||
|
@ -98,7 +99,7 @@ export function getSystemExecuteTaskStatistics(data: string[]) {
|
|||
|
||||
// 系统任务-获取资源池列表
|
||||
export function getSystemTaskCenterResourcePools() {
|
||||
return MSR.get<string[]>({ url: systemTaskCenterResourcePoolsUrl });
|
||||
return MSR.get<TaskCenterResourcePoolItem[]>({ url: systemTaskCenterResourcePoolsUrl });
|
||||
}
|
||||
|
||||
// 系统任务-停止任务
|
||||
|
@ -138,7 +139,7 @@ export function getOrganizationExecuteTaskStatistics(data: string[]) {
|
|||
|
||||
// 组织任务-获取资源池列表
|
||||
export function getOrgTaskCenterResourcePools() {
|
||||
return MSR.get<string[]>({ url: organizationTaskCenterResourcePoolsUrl });
|
||||
return MSR.get<TaskCenterResourcePoolItem[]>({ url: organizationTaskCenterResourcePoolsUrl });
|
||||
}
|
||||
|
||||
// 组织任务-停止任务
|
||||
|
|
|
@ -14,6 +14,10 @@
|
|||
:placeholder="props.placeholder"
|
||||
:loading="props.loading"
|
||||
:value-key="props.valueKey"
|
||||
:field-names="{
|
||||
label: props.labelKey,
|
||||
value: props.valueKey,
|
||||
}"
|
||||
:path-mode="false"
|
||||
@change="handleMsCascaderChange"
|
||||
@clear="clearValues"
|
||||
|
@ -56,7 +60,11 @@
|
|||
:virtual-list-props="props.virtualListProps"
|
||||
:loading="props.loading"
|
||||
:value-key="props.valueKey"
|
||||
:path-mode="false"
|
||||
:field-names="{
|
||||
label: props.labelKey,
|
||||
value: props.valueKey,
|
||||
}"
|
||||
:path-mode="props.pathMode"
|
||||
@change="(val) => emit('change', val)"
|
||||
>
|
||||
<template v-if="props.prefix" #prefix>
|
||||
|
@ -215,7 +223,7 @@
|
|||
|
||||
// TODO: 临时解决 arco-design 的 cascader 组件已选项的label只能是带路径‘/’的 path-mode 的问题
|
||||
function getInputLabel(data: CascaderOption) {
|
||||
const isTagCount = data[props.labelKey].includes('+');
|
||||
const isTagCount = (data[props.labelKey] || data.label).includes('+');
|
||||
if (isTagCount) {
|
||||
return data.label;
|
||||
}
|
||||
|
@ -226,7 +234,7 @@
|
|||
}
|
||||
|
||||
function getInputLabelTooltip(data: CascaderOption) {
|
||||
const isTagCount = data[props.labelKey].includes('+');
|
||||
const isTagCount = (data[props.labelKey] || data.label).includes('+');
|
||||
const label = getInputLabel(data);
|
||||
if (isTagCount && Array.isArray(innerValue.value)) {
|
||||
return Object.values(selectedLabelObj).join(',');
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div>
|
||||
<div v-if="props.pagination?.total > 1">
|
||||
<a-tooltip
|
||||
:content="activeDetailIsFirst ? t('ms.prevNextButton.noPrev') : t('ms.prevNextButton.prev')"
|
||||
:mouse-enter-delay="300"
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
v-model:model-value="cron"
|
||||
:disabled="props.disabled"
|
||||
:class="props.class"
|
||||
:loading="loading"
|
||||
:fallback-option="
|
||||
(val) => ({
|
||||
label: `${val}`,
|
||||
value: val,
|
||||
})
|
||||
"
|
||||
:placeholder="t('ms.cron.select.placeholder')"
|
||||
allow-create
|
||||
@change="emit('change', $event)"
|
||||
>
|
||||
|
@ -40,6 +48,9 @@
|
|||
const cron = defineModel<string>('modelValue', {
|
||||
required: true,
|
||||
});
|
||||
const loading = defineModel<boolean>('loading', {
|
||||
required: false,
|
||||
});
|
||||
|
||||
const syncFrequencyOptions = [
|
||||
{ label: t('ms.cron.select.timeTaskHour'), value: '0 0 0/1 * * ?' },
|
||||
|
|
|
@ -3,4 +3,5 @@ export default {
|
|||
'ms.cron.select.timeTaskSixHour': '(Every 6 hours)',
|
||||
'ms.cron.select.timeTaskTwelveHour': '(Every 12 hours)',
|
||||
'ms.cron.select.timeTaskDay': '(Every day)',
|
||||
'ms.cron.select.placeholder': 'Expressions can be entered directly',
|
||||
};
|
||||
|
|
|
@ -3,4 +3,5 @@ export default {
|
|||
'ms.cron.select.timeTaskSixHour': '(每 6 小时)',
|
||||
'ms.cron.select.timeTaskTwelveHour': '(每 12 小时)',
|
||||
'ms.cron.select.timeTaskDay': '(每天)',
|
||||
'ms.cron.select.placeholder': '可直接输入表达式',
|
||||
};
|
||||
|
|
|
@ -8,6 +8,7 @@ export interface TaskCenterSystemTaskItem {
|
|||
projectId: string; // 项目ID
|
||||
organizationId: string; // 组织ID
|
||||
id: string;
|
||||
reportId: string;
|
||||
taskName: string;
|
||||
resourceId: string; // 资源ID
|
||||
num: number;
|
||||
|
@ -27,6 +28,7 @@ export interface TaskCenterTaskDetailParams extends TableQueryParams {
|
|||
|
||||
export interface TaskCenterTaskItem {
|
||||
id: string;
|
||||
reportId: string;
|
||||
num: number;
|
||||
taskName: string;
|
||||
status: string; // 执行状态
|
||||
|
@ -49,6 +51,7 @@ export interface TaskCenterTaskItem {
|
|||
|
||||
export interface TaskCenterTaskDetailItem {
|
||||
id: string;
|
||||
reportId: string;
|
||||
taskId: string; // 任务ID
|
||||
resourceId: string;
|
||||
resourceName: string;
|
||||
|
@ -85,3 +88,9 @@ export interface TaskCenterResourcePoolStatus {
|
|||
id: string;
|
||||
status: boolean; // 状态, true: 正常, false: 异常
|
||||
}
|
||||
|
||||
export interface TaskCenterResourcePoolItem {
|
||||
id: string;
|
||||
name: string;
|
||||
children: TaskCenterResourcePoolItem[];
|
||||
}
|
||||
|
|
|
@ -15,10 +15,11 @@
|
|||
:options="resourcePoolOptions"
|
||||
:placeholder="t('common.pleaseSelect')"
|
||||
option-size="small"
|
||||
label-key="value"
|
||||
value-key="key"
|
||||
label-key="name"
|
||||
value-key="id"
|
||||
class="w-[240px]"
|
||||
:prefix="t('ms.taskCenter.resourcePool')"
|
||||
label-path-mode
|
||||
@change="searchTask"
|
||||
>
|
||||
</MsCascader>
|
||||
|
@ -141,7 +142,7 @@
|
|||
{
|
||||
title: t('ms.taskCenter.taskID'),
|
||||
dataIndex: 'num',
|
||||
width: 180,
|
||||
width: 100,
|
||||
columnSelectorDisabled: true,
|
||||
showTooltip: true,
|
||||
fixed: 'left',
|
||||
|
@ -447,10 +448,7 @@
|
|||
async function initResourcePools() {
|
||||
try {
|
||||
const res = await currentResourcePoolRequest();
|
||||
resourcePoolOptions.value = res.map((item) => ({
|
||||
key: item,
|
||||
value: item,
|
||||
}));
|
||||
resourcePoolOptions.value = res;
|
||||
} catch (error) {
|
||||
// eslint-disable-next-line no-console
|
||||
console.log(error);
|
||||
|
|
|
@ -130,6 +130,32 @@
|
|||
</template>
|
||||
</ms-base-table>
|
||||
<batchTaskReportDrawer v-model:visible="taskReportDrawerVisible" type="case" :module-type="reportModuleType" />
|
||||
<CaseReportDrawer
|
||||
v-model:visible="showCaseDetailDrawer"
|
||||
:report-id="activeDetailId"
|
||||
:active-report-index="activeReportIndex"
|
||||
:table-data="propsRes.data"
|
||||
:page-change="propsEvent.pageChange"
|
||||
:pagination="{
|
||||
current: 1,
|
||||
pageSize: 10,
|
||||
total: 1,
|
||||
}"
|
||||
:share-time="shareTime"
|
||||
/>
|
||||
<ReportDetailDrawer
|
||||
v-model:visible="showDetailDrawer"
|
||||
:report-id="activeDetailId"
|
||||
:active-report-index="activeReportIndex"
|
||||
:table-data="propsRes.data"
|
||||
:page-change="propsEvent.pageChange"
|
||||
:pagination="{
|
||||
current: 1,
|
||||
pageSize: 10,
|
||||
total: 1,
|
||||
}"
|
||||
:share-time="shareTime"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
|
@ -145,7 +171,10 @@
|
|||
import batchTaskReportDrawer from './batchTaskReportDrawer.vue';
|
||||
import execStatus from './execStatus.vue';
|
||||
import executionStatus from './executionStatus.vue';
|
||||
import CaseReportDrawer from '@/views/api-test/report/component/caseReportDrawer.vue';
|
||||
import ReportDetailDrawer from '@/views/api-test/report/component/reportDetailDrawer.vue';
|
||||
|
||||
import { getShareTime } from '@/api/modules/api-test/report';
|
||||
import {
|
||||
getOrganizationExecuteTaskList,
|
||||
getOrganizationExecuteTaskStatistics,
|
||||
|
@ -164,15 +193,16 @@
|
|||
import useModal from '@/hooks/useModal';
|
||||
import useOpenNewPage from '@/hooks/useOpenNewPage';
|
||||
import useTableStore from '@/hooks/useTableStore';
|
||||
import useAppStore from '@/store/modules/app';
|
||||
import { characterLimit } from '@/utils';
|
||||
import { hasAnyPermission } from '@/utils/permission';
|
||||
|
||||
import { TaskCenterTaskItem } from '@/models/taskCenter';
|
||||
import { ReportEnum } from '@/enums/reportEnum';
|
||||
import { ApiTestRouteEnum, TestPlanRouteEnum } from '@/enums/routeEnum';
|
||||
import { TestPlanRouteEnum } from '@/enums/routeEnum';
|
||||
import { TableKeyEnum } from '@/enums/tableEnum';
|
||||
import { FilterSlotNameEnum } from '@/enums/tableFilterEnum';
|
||||
import { ExecuteResultEnum, ExecuteStatusEnum, ExecuteTaskType, ExecuteTriggerMode } from '@/enums/taskCenter';
|
||||
import { ExecuteResultEnum, ExecuteStatusEnum, ExecuteTaskType } from '@/enums/taskCenter';
|
||||
|
||||
import { executeFinishedRateMap, executeMethodMap, executeResultMap, executeStatusMap } from './config';
|
||||
|
||||
|
@ -187,6 +217,7 @@
|
|||
const { openModal } = useModal();
|
||||
const { openNewPage } = useOpenNewPage();
|
||||
const tableStore = useTableStore();
|
||||
const appStore = useAppStore();
|
||||
|
||||
const keyword = ref('');
|
||||
const tableSelected = ref<string[]>([]);
|
||||
|
@ -553,6 +584,45 @@
|
|||
console.log('rerunTask', record);
|
||||
}
|
||||
|
||||
/**
|
||||
* 报告详情 showReportDetail
|
||||
*/
|
||||
const activeDetailId = ref<string>('');
|
||||
const activeReportIndex = ref<number>(0);
|
||||
const showDetailDrawer = ref<boolean>(false);
|
||||
const showCaseDetailDrawer = ref<boolean>(false);
|
||||
|
||||
function showReportDetail(record: TaskCenterTaskItem) {
|
||||
activeDetailId.value = record.id;
|
||||
if (record.taskType === 'API_SCENARIO') {
|
||||
showDetailDrawer.value = true;
|
||||
} else {
|
||||
showCaseDetailDrawer.value = true;
|
||||
}
|
||||
}
|
||||
|
||||
const shareTime = ref<string>('');
|
||||
async function getTime() {
|
||||
try {
|
||||
const res = await getShareTime(appStore.currentProjectId);
|
||||
const match = res.match(/^(\d+)([MYHD])$/);
|
||||
if (match) {
|
||||
const value = parseInt(match[1], 10);
|
||||
const type = match[2];
|
||||
const translations: Record<string, string> = {
|
||||
M: t('msTimeSelector.month'),
|
||||
Y: t('msTimeSelector.year'),
|
||||
H: t('msTimeSelector.hour'),
|
||||
D: t('msTimeSelector.day'),
|
||||
};
|
||||
shareTime.value = value + (translations[type] || translations.D);
|
||||
}
|
||||
} catch (error) {
|
||||
// eslint-disable-next-line no-console
|
||||
console.log(error);
|
||||
}
|
||||
}
|
||||
|
||||
const taskReportDrawerVisible = ref(false);
|
||||
const reportModuleType = ref();
|
||||
function checkReport(record: TaskCenterTaskItem) {
|
||||
|
@ -561,8 +631,8 @@
|
|||
? ReportEnum.API_REPORT
|
||||
: ReportEnum.API_SCENARIO_REPORT;
|
||||
taskReportDrawerVisible.value = true;
|
||||
} else if (record.taskType === ExecuteTaskType.API_SCENARIO) {
|
||||
openNewPage(ApiTestRouteEnum.API_TEST_REPORT);
|
||||
} else if (['API_CASE', 'API_SCENARIO'].includes(record.taskType)) {
|
||||
showReportDetail(record);
|
||||
} else if (record.taskType === ExecuteTaskType.TEST_PLAN) {
|
||||
openNewPage(TestPlanRouteEnum.TEST_PLAN_REPORT);
|
||||
}
|
||||
|
@ -570,6 +640,7 @@
|
|||
|
||||
onMounted(async () => {
|
||||
searchTask();
|
||||
getTime();
|
||||
});
|
||||
|
||||
watch(
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
@batch-action="handleTableBatch"
|
||||
>
|
||||
<template #num="{ record }">
|
||||
<a-button type="text" class="max-w-full justify-start px-0" @click="openTask(record.id)">
|
||||
<a-button type="text" class="max-w-full justify-start px-0" @click="checkDetail(record)">
|
||||
<a-tooltip :content="record.id">
|
||||
<div class="one-line-text">
|
||||
{{ record.num }}
|
||||
|
@ -39,8 +39,20 @@
|
|||
<template #resourceType="{ record }">
|
||||
{{ t(scheduleTaskTypeMap[record.resourceType]) }}
|
||||
</template>
|
||||
<template #runRule="{ record }">
|
||||
<MsCronSelect
|
||||
v-model:model-value="record.value"
|
||||
v-model:loading="record.runRuleLoading"
|
||||
@change="(val) => handleRunRuleChange(val, record)"
|
||||
/>
|
||||
</template>
|
||||
<template #action="{ record }">
|
||||
<MsButton v-permission="['SYSTEM_USER:READ+DELETE']" class="!mr-[12px]" @click="deleteTask(record)">
|
||||
<MsButton
|
||||
v-if="['API_IMPORT', 'TEST_PLAN', 'API_SCENARIO'].includes(record.resourceType)"
|
||||
v-permission="['SYSTEM_USER:READ+DELETE']"
|
||||
class="!mr-[12px]"
|
||||
@click="deleteTask(record)"
|
||||
>
|
||||
{{ t('common.delete') }}
|
||||
</MsButton>
|
||||
<MsButton v-permission="['SYSTEM_USER:READ+DELETE']" class="!mr-0" @click="checkDetail(record)">
|
||||
|
@ -55,6 +67,7 @@
|
|||
import dayjs from 'dayjs';
|
||||
|
||||
import MsButton from '@/components/pure/ms-button/index.vue';
|
||||
import MsCronSelect from '@/components/pure/ms-cron-select/index.vue';
|
||||
import MsIcon from '@/components/pure/ms-icon-font/index.vue';
|
||||
import MsBaseTable from '@/components/pure/ms-table/base-table.vue';
|
||||
import type { BatchActionParams, BatchActionQueryParams, MsTableColumn } from '@/components/pure/ms-table/type';
|
||||
|
@ -69,7 +82,7 @@
|
|||
import { characterLimit } from '@/utils';
|
||||
import { hasAnyPermission } from '@/utils/permission';
|
||||
|
||||
import { ApiTestRouteEnum } from '@/enums/routeEnum';
|
||||
import { ApiTestRouteEnum, TestPlanRouteEnum } from '@/enums/routeEnum';
|
||||
import { TableKeyEnum } from '@/enums/tableEnum';
|
||||
|
||||
import { scheduleTaskTypeMap } from './config';
|
||||
|
@ -115,8 +128,9 @@
|
|||
},
|
||||
{
|
||||
title: 'ms.taskCenter.runRule',
|
||||
slotName: 'runRule',
|
||||
dataIndex: 'value',
|
||||
width: 120,
|
||||
width: 220,
|
||||
},
|
||||
{
|
||||
title: 'ms.taskCenter.operationUser',
|
||||
|
@ -219,6 +233,7 @@
|
|||
(item) => {
|
||||
return {
|
||||
...item,
|
||||
runRuleLoading: false,
|
||||
operationTime: item.operationTime ? dayjs(item.operationTime).format('YYYY-MM-DD HH:mm:ss') : '-',
|
||||
lastFinishTime: item.lastFinishTime ? dayjs(item.lastFinishTime).format('YYYY-MM-DD HH:mm:ss') : '-',
|
||||
nextExecuteTime: item.nextExecuteTime ? dayjs(item.nextExecuteTime).format('YYYY-MM-DD HH:mm:ss') : '-',
|
||||
|
@ -282,9 +297,28 @@
|
|||
}
|
||||
|
||||
function checkDetail(record: any) {
|
||||
openNewPage(ApiTestRouteEnum.API_TEST_MANAGEMENT, {
|
||||
taskDrawer: true,
|
||||
});
|
||||
switch (record.resourceType) {
|
||||
case 'API_IMPORT':
|
||||
openNewPage(ApiTestRouteEnum.API_TEST_MANAGEMENT, {
|
||||
taskDrawer: true,
|
||||
});
|
||||
break;
|
||||
case 'TEST_PLAN':
|
||||
openNewPage(TestPlanRouteEnum.TEST_PLAN_REPORT_DETAIL, {
|
||||
reportId: record.reportId,
|
||||
});
|
||||
break;
|
||||
case 'API_SCENARIO':
|
||||
openNewPage(ApiTestRouteEnum.API_TEST_REPORT, {
|
||||
reportId: record.reportId,
|
||||
});
|
||||
break;
|
||||
default:
|
||||
openNewPage(ApiTestRouteEnum.API_TEST_MANAGEMENT, {
|
||||
taskDrawer: true,
|
||||
});
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
async function handleBeforeEnableChange(record: any) {
|
||||
|
@ -316,6 +350,22 @@
|
|||
}
|
||||
}
|
||||
|
||||
async function handleRunRuleChange(
|
||||
val: string | number | boolean | Record<string, any> | (string | number | boolean | Record<string, any>)[],
|
||||
record: any
|
||||
) {
|
||||
try {
|
||||
record.runRuleLoading = true;
|
||||
// await runRuleChange();
|
||||
Message.success(t('common.updateSuccess'));
|
||||
} catch (error) {
|
||||
// eslint-disable-next-line no-console
|
||||
console.log(error);
|
||||
} finally {
|
||||
record.runRuleLoading = false;
|
||||
}
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
loadList();
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue