Browse Source

[Feature][UI Next] Support readonly model for dag

3.0.0/version-upgrade
Devosend 3 years ago committed by GitHub
parent
commit
b92f6d876d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/index.tsx
  2. 5
      dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/use-task-edit.ts
  3. 8
      dolphinscheduler-ui-next/src/views/projects/workflow/definition/detail/index.tsx

1
dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/index.tsx

@ -219,6 +219,7 @@ export default defineComponent({
definition={props.definition} definition={props.definition}
/> />
<TaskModal <TaskModal
readonly={props.readonly}
show={taskModalVisible.value} show={taskModalVisible.value}
projectCode={props.projectCode} projectCode={props.projectCode}
data={currTask.value as any} data={currTask.value as any}

5
dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/use-task-edit.ts

@ -37,10 +37,11 @@ interface Options {
*/ */
export function useTaskEdit(options: Options) { export function useTaskEdit(options: Options) {
const { graph, definition } = options const { graph, definition } = options
const { addNode, setNodeName } = useCellUpdate({ graph }) const { addNode, setNodeName } = useCellUpdate({ graph })
const taskDefinitions = ref<NodeData[]>([]) const taskDefinitions = ref<NodeData[]>(
definition.value?.taskDefinitionList || []
)
const currTask = ref<NodeData>({ const currTask = ref<NodeData>({
taskType: 'SHELL', taskType: 'SHELL',
code: 0, code: 0,

8
dolphinscheduler-ui-next/src/views/projects/workflow/definition/detail/index.tsx

@ -53,10 +53,15 @@ export default defineComponent({
const code = Number(route.params.code) const code = Number(route.params.code)
const definition = ref<WorkflowDefinition>() const definition = ref<WorkflowDefinition>()
const readonly = ref(false)
const isLoading = ref(true)
const refresh = () => { const refresh = () => {
isLoading.value = true
queryProcessDefinitionByCode(code, projectCode).then((res: any) => { queryProcessDefinitionByCode(code, projectCode).then((res: any) => {
readonly.value = res.processDefinition.releaseState === 'ONLINE'
definition.value = res definition.value = res
isLoading.value = false
}) })
} }
@ -107,12 +112,15 @@ export default defineComponent({
theme.darkTheme ? Styles['dark'] : Styles['light'] theme.darkTheme ? Styles['dark'] : Styles['light']
]} ]}
> >
{!isLoading.value && (
<Dag <Dag
definition={definition.value} definition={definition.value}
onRefresh={refresh} onRefresh={refresh}
projectCode={projectCode} projectCode={projectCode}
onSave={save} onSave={save}
readonly={readonly.value}
/> />
)}
</div> </div>
) )
} }

Loading…
Cancel
Save