From 276a68a23e791eac08626febfed14e1ef2c01dd9 Mon Sep 17 00:00:00 2001 From: Devosend Date: Wed, 16 Mar 2022 14:18:35 +0800 Subject: [PATCH] [Bug][UI Next][V1.0.0-Alpha] Fix workflow instance save is not responding bug (#8926) * fix workflow instance save is not responding bug * add WorkflowInstance interface --- .../src/locales/modules/en_US.ts | 1 + .../src/locales/modules/zh_CN.ts | 1 + .../modules/process-instances/index.ts | 5 +- .../modules/process-instances/types.ts | 4 +- .../task/components/node/detail-modal.tsx | 7 ++- .../components/dag/dag-save-modal.tsx | 22 +++++-- .../workflow/components/dag/dag-toolbar.tsx | 5 +- .../workflow/components/dag/index.tsx | 5 +- .../projects/workflow/components/dag/types.ts | 14 +++++ .../workflow/instance/detail/index.tsx | 61 +++++++++++++++++-- 10 files changed, 104 insertions(+), 21 deletions(-) diff --git a/dolphinscheduler-ui-next/src/locales/modules/en_US.ts b/dolphinscheduler-ui-next/src/locales/modules/en_US.ts index 9b37889a0..1b61cc2f1 100644 --- a/dolphinscheduler-ui-next/src/locales/modules/en_US.ts +++ b/dolphinscheduler-ui-next/src/locales/modules/en_US.ts @@ -586,6 +586,7 @@ const project = { success: 'Success', delete_cell: 'Delete selected edges and nodes', online_directly: 'Whether to go online the process definition', + update_directly: 'Whether to update the process definition', dag_name_empty: 'DAG graph name cannot be empty', positive_integer: 'Please enter a positive integer greater than 0', prop_empty: 'prop is empty', diff --git a/dolphinscheduler-ui-next/src/locales/modules/zh_CN.ts b/dolphinscheduler-ui-next/src/locales/modules/zh_CN.ts index eea192fb6..aaffb705c 100644 --- a/dolphinscheduler-ui-next/src/locales/modules/zh_CN.ts +++ b/dolphinscheduler-ui-next/src/locales/modules/zh_CN.ts @@ -583,6 +583,7 @@ const project = { success: '成功', delete_cell: '删除选中的线或节点', online_directly: '是否上线流程定义', + update_directly: '是否更新流程定义', dag_name_empty: 'DAG图名称不能为空', positive_integer: '请输入大于 0 的正整数', prop_empty: '自定义参数prop不能为空', diff --git a/dolphinscheduler-ui-next/src/service/modules/process-instances/index.ts b/dolphinscheduler-ui-next/src/service/modules/process-instances/index.ts index 42578abc7..0e91bfbf5 100644 --- a/dolphinscheduler-ui-next/src/service/modules/process-instances/index.ts +++ b/dolphinscheduler-ui-next/src/service/modules/process-instances/index.ts @@ -23,7 +23,6 @@ import { SubIdReq, TaskReq, LongestReq, - IdReq, ProcessInstanceReq } from './types' @@ -94,8 +93,8 @@ export function queryProcessInstanceById( export function updateProcessInstance( data: ProcessInstanceReq, - id: IdReq, - code: CodeReq + id: number, + code: number ): any { return axios({ url: `/projects/${code}/process-instances/${id}`, diff --git a/dolphinscheduler-ui-next/src/service/modules/process-instances/types.ts b/dolphinscheduler-ui-next/src/service/modules/process-instances/types.ts index e5a021d0d..e79ab9f22 100644 --- a/dolphinscheduler-ui-next/src/service/modules/process-instances/types.ts +++ b/dolphinscheduler-ui-next/src/service/modules/process-instances/types.ts @@ -71,7 +71,7 @@ interface IdReq { } interface ProcessInstanceReq { - syncDefine: string + syncDefine: boolean flag?: string globalParams?: string locations?: string @@ -79,7 +79,7 @@ interface ProcessInstanceReq { taskDefinitionJson?: string taskRelationJson?: string tenantCode?: string - timeout?: string + timeout?: number } interface IWorkflowInstance { diff --git a/dolphinscheduler-ui-next/src/views/projects/task/components/node/detail-modal.tsx b/dolphinscheduler-ui-next/src/views/projects/task/components/node/detail-modal.tsx index 456d00de1..615466d1c 100644 --- a/dolphinscheduler-ui-next/src/views/projects/task/components/node/detail-modal.tsx +++ b/dolphinscheduler-ui-next/src/views/projects/task/components/node/detail-modal.tsx @@ -38,7 +38,10 @@ import { import { NIcon } from 'naive-ui' import { TASK_TYPES_MAP } from '../../constants/task-type' import { Router, useRouter } from 'vue-router' -import { IWorkflowTaskInstance } from '@/views/projects/workflow/components/dag/types' +import { + IWorkflowTaskInstance, + WorkflowInstance +} from '@/views/projects/workflow/components/dag/types' const props = { show: { @@ -65,7 +68,7 @@ const props = { type: Object as PropType }, processInstance: { - type: Object as PropType + type: Object as PropType }, taskInstance: { type: Object as PropType diff --git a/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-save-modal.tsx b/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-save-modal.tsx index dc45dd210..53b900ba3 100644 --- a/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-save-modal.tsx +++ b/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-save-modal.tsx @@ -29,7 +29,7 @@ import { NCheckbox } from 'naive-ui' import { queryTenantList } from '@/service/modules/tenants' -import { SaveForm, WorkflowDefinition } from './types' +import { SaveForm, WorkflowDefinition, WorkflowInstance } from './types' import { useRoute } from 'vue-router' import { verifyName } from '@/service/modules/process-definition' import './x6-style.scss' @@ -44,6 +44,10 @@ const props = { definition: { type: Object as PropType, default: undefined + }, + instance: { + type: Object as PropType, + default: undefined } } @@ -86,7 +90,8 @@ export default defineComponent({ timeoutFlag: false, timeout: 0, globalParams: [], - release: false + release: false, + sync: false }) const formRef = ref() const rule = { @@ -178,7 +183,7 @@ export default defineComponent({ > - + - {props.definition && ( + {props.definition && !props.instance && ( {t('project.dag.online_directly')} )} + {props.instance && ( + + + {t('project.dag.update_directly')} + + + )} ) diff --git a/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-toolbar.tsx b/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-toolbar.tsx index 381210705..e991230d4 100644 --- a/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-toolbar.tsx +++ b/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-toolbar.tsx @@ -40,6 +40,7 @@ import { useThemeStore } from '@/store/theme/theme' import type { Graph } from '@antv/x6' import StartupParam from './dag-startup-param' import VariablesView from '@/views/projects/workflow/instance/components/variables-view' +import { WorkflowDefinition, WorkflowInstance } from './types' const props = { layoutToggle: { @@ -48,12 +49,12 @@ const props = { }, // If this prop is passed, it means from definition detail instance: { - type: Object as PropType, + type: Object as PropType, default: null }, definition: { // The same as the structure responsed by the queryProcessDefinitionByCode api - type: Object as PropType, + type: Object as PropType, default: null } } diff --git a/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/index.tsx b/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/index.tsx index e3219306b..b13e97103 100644 --- a/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/index.tsx +++ b/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/index.tsx @@ -44,7 +44,7 @@ import { } from './dag-hooks' import { useThemeStore } from '@/store/theme/theme' import VersionModal from '../../definition/components/version-modal' -import { WorkflowDefinition } from './types' +import { WorkflowDefinition, WorkflowInstance } from './types' import DagSaveModal from './dag-save-modal' import ContextMenuItem from './dag-context-menu' import TaskModal from '@/views/projects/task/components/node/detail-modal' @@ -55,7 +55,7 @@ import './x6-style.scss' const props = { // If this prop is passed, it means from definition detail instance: { - type: Object as PropType, + type: Object as PropType, default: undefined }, definition: { @@ -278,6 +278,7 @@ export default defineComponent({ v-model:show={saveModalShow.value} onSave={onSave} definition={props.definition} + instance={props.instance} /> () - const instance = ref() + const instance = ref() const refresh = () => { queryProcessInstanceById(id, projectCode).then((res: any) => { @@ -43,7 +63,38 @@ export default defineComponent({ }) } - const save = () => {} + const save = ({ + taskDefinitions, + saveForm, + connects, + locations + }: SaveData) => { + const globalParams = saveForm.globalParams.map((p) => { + return { + prop: p.key, + value: p.value, + direct: 'IN', + type: 'VARCHAR' + } + }) + + updateProcessInstance( + { + syncDefine: saveForm.sync, + globalParams: JSON.stringify(globalParams), + locations: JSON.stringify(locations), + taskDefinitionJson: JSON.stringify(taskDefinitions), + taskRelationJson: JSON.stringify(connects), + tenantCode: saveForm.tenantCode, + timeout: saveForm.timeoutFlag ? saveForm.timeout : 0 + }, + id, + projectCode + ).then((ignored: any) => { + window.$message.success(t('project.dag.success')) + router.push({ path: `/projects/${projectCode}/workflow/instances` }) + }) + } onMounted(() => { if (!id || !projectCode) return -- GitLab