Amy0104
3 years ago
committed by
GitHub
35 changed files with 1662 additions and 46 deletions
@ -0,0 +1,45 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
import { h } from 'vue' |
||||
import { NCheckbox, NCheckboxGroup, NSpace } from 'naive-ui' |
||||
import type { IJsonItem } from '../types' |
||||
|
||||
export function renderCheckbox( |
||||
item: IJsonItem, |
||||
fields: { [field: string]: any } |
||||
) { |
||||
const { props, field, options } = item |
||||
if (!options || options.length === 0) { |
||||
return h(NCheckbox, { |
||||
...props, |
||||
value: fields[field], |
||||
onUpdateChecked: (checked: boolean) => void (fields[field] = checked) |
||||
}) |
||||
} |
||||
return h( |
||||
NCheckboxGroup, |
||||
{ |
||||
value: fields[field], |
||||
onUpdateValue: (value) => void (fields[field] = value) |
||||
}, |
||||
() => |
||||
h(NSpace, null, () => |
||||
options.map((option: object) => h(NCheckbox, { ...option })) |
||||
) |
||||
) |
||||
} |
@ -0,0 +1,33 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
import { h } from 'vue' |
||||
import { NTreeSelect } from 'naive-ui' |
||||
import type { IJsonItem } from '../types' |
||||
|
||||
export function renderTreeSelect( |
||||
item: IJsonItem, |
||||
fields: { [field: string]: any } |
||||
) { |
||||
const { props = {}, field, options = [] } = item |
||||
return h(NTreeSelect, { |
||||
...props, |
||||
value: fields[field], |
||||
onUpdateValue: (value) => void (fields[field] = value), |
||||
options |
||||
}) |
||||
} |
@ -0,0 +1,81 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
import { defineComponent, PropType, ref } from 'vue' |
||||
import { useI18n } from 'vue-i18n' |
||||
import Modal from '@/components/modal' |
||||
import Detail from './detail' |
||||
import type { IDataNode, ITask } from './types' |
||||
|
||||
const props = { |
||||
show: { |
||||
type: Boolean as PropType<boolean>, |
||||
default: false |
||||
}, |
||||
nodeData: { |
||||
type: Object as PropType<IDataNode>, |
||||
default: { |
||||
taskType: 'SHELL' |
||||
} |
||||
}, |
||||
type: { |
||||
type: String as PropType<string>, |
||||
default: '' |
||||
}, |
||||
taskDefinition: { |
||||
type: Object as PropType<ITask> |
||||
} |
||||
} |
||||
|
||||
const NodeDetailModal = defineComponent({ |
||||
name: 'NodeDetailModal', |
||||
props, |
||||
emits: ['cancel', 'update'], |
||||
setup(props, { emit }) { |
||||
const { t } = useI18n() |
||||
const detailRef = ref() |
||||
const onConfirm = () => { |
||||
detailRef.value.onSubmit() |
||||
} |
||||
const onCancel = () => { |
||||
emit('cancel') |
||||
} |
||||
|
||||
return { |
||||
t, |
||||
detailRef, |
||||
onConfirm, |
||||
onCancel |
||||
} |
||||
}, |
||||
render() { |
||||
const { t, show, onConfirm, onCancel } = this |
||||
return ( |
||||
<Modal |
||||
show={show} |
||||
title={`${t('project.node.current_node_settings')}`} |
||||
onConfirm={onConfirm} |
||||
confirmLoading={false} |
||||
onCancel={() => void onCancel()} |
||||
> |
||||
<Detail ref='detailRef' taskType='SHELL' projectCode={111} /> |
||||
</Modal> |
||||
) |
||||
} |
||||
}) |
||||
|
||||
export default NodeDetailModal |
@ -0,0 +1,73 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
import { defineComponent, PropType, ref, toRefs } from 'vue' |
||||
import Form from '@/components/form' |
||||
import { useTask } from './use-task' |
||||
import { useDetail } from './use-detail' |
||||
import type { ITaskType } from './types' |
||||
import getElementByJson from '@/components/form/get-elements-by-json' |
||||
|
||||
const props = { |
||||
projectCode: { |
||||
type: Number as PropType<number> |
||||
}, |
||||
taskType: { |
||||
type: String as PropType<ITaskType>, |
||||
default: 'SHELL', |
||||
required: true |
||||
} |
||||
} |
||||
|
||||
const NodeDetail = defineComponent({ |
||||
name: 'NodeDetail', |
||||
props, |
||||
setup(props, { expose }) { |
||||
const { taskType, projectCode } = props |
||||
|
||||
const { json, model } = useTask({ taskType, projectCode }) |
||||
const { state, onSubmit } = useDetail() |
||||
|
||||
const jsonRef = ref(json) |
||||
|
||||
const { rules, elements } = getElementByJson(jsonRef.value, model) |
||||
|
||||
expose({ |
||||
onSubmit: () => void onSubmit(model) |
||||
}) |
||||
|
||||
return { rules, elements, model, ...toRefs(state) } |
||||
}, |
||||
render() { |
||||
const { rules, elements, model } = this |
||||
return ( |
||||
<Form |
||||
ref='formRef' |
||||
meta={{ |
||||
model, |
||||
rules, |
||||
elements |
||||
}} |
||||
layout={{ |
||||
xGap: 10 |
||||
}} |
||||
></Form> |
||||
) |
||||
} |
||||
}) |
||||
|
||||
export default NodeDetail |
@ -0,0 +1,29 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
export { useName } from './use-name' |
||||
export { useRunFlag } from './use-run-flag' |
||||
export { useDescription } from './use-description' |
||||
export { useTaskPriority } from './use-task-priority' |
||||
export { useWorkerGroup } from './use-worker-group' |
||||
export { useEnvironmentName } from './use-environment-name' |
||||
export { useTaskGroup } from './use-task-group' |
||||
export { useFailed } from './use-failed' |
||||
export { useDelayTime } from './use-delay-time' |
||||
export { useTimeoutAlarm } from './use-timeout-alarm' |
||||
export { usePreTasks } from './use-pre-tasks' |
||||
export { useShell } from './use-shell' |
@ -0,0 +1,31 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
import { useI18n } from 'vue-i18n' |
||||
|
||||
export function useDelayTime() { |
||||
const { t } = useI18n() |
||||
return { |
||||
type: 'input-number', |
||||
field: 'delayTime', |
||||
name: t('project.node.delay_execution_time'), |
||||
span: 12, |
||||
slots: { |
||||
suffix: () => t('project.node.minute') |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,32 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
import { useI18n } from 'vue-i18n' |
||||
|
||||
export function useDescription() { |
||||
const { t } = useI18n() |
||||
return { |
||||
type: 'input', |
||||
field: 'desc', |
||||
name: t('project.node.description'), |
||||
props: { |
||||
placeholder: t('project.node.description_tips'), |
||||
rows: 2, |
||||
type: 'textarea' |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,94 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
import { ref, reactive, onMounted, watch } from 'vue' |
||||
import { useI18n } from 'vue-i18n' |
||||
import { queryAllEnvironmentList } from '@/service/modules/environment' |
||||
import type { IEnvironmentNameOption } from '../types' |
||||
|
||||
export function useEnvironmentName( |
||||
model: { [field: string]: any }, |
||||
isCreate: boolean |
||||
) { |
||||
const { t } = useI18n() |
||||
|
||||
let environmentList = [] as IEnvironmentNameOption[] |
||||
const options = ref([] as IEnvironmentNameOption[]) |
||||
const loading = ref(false) |
||||
const value = ref() |
||||
|
||||
const getEnvironmentList = async () => { |
||||
if (loading.value) return |
||||
loading.value = true |
||||
try { |
||||
const res = await queryAllEnvironmentList() |
||||
environmentList = res.map((item: { code: string; name: string }) => ({ |
||||
label: item.name, |
||||
value: item.code |
||||
})) |
||||
options.value = environmentList.filter((option: IEnvironmentNameOption) => |
||||
filterByWorkerGroup(option) |
||||
) |
||||
loading.value = false |
||||
} catch (err) { |
||||
loading.value = false |
||||
} |
||||
} |
||||
|
||||
const filterByWorkerGroup = (option: IEnvironmentNameOption) => { |
||||
if (!model.workerGroup) return false |
||||
if (!option?.workerGroups?.length) return false |
||||
if (option.workerGroups.indexOf(model.workerGroup) === -1) return false |
||||
return true |
||||
} |
||||
|
||||
watch( |
||||
() => options.value.length, |
||||
() => { |
||||
if (isCreate && options.value.length === 1 && !value.value) { |
||||
model.environmentCode = options.value[0].value |
||||
} |
||||
if (options.value.length === 0) model.environmentCode = null |
||||
} |
||||
) |
||||
|
||||
watch( |
||||
() => model.workerGroup, |
||||
() => { |
||||
if (!model.workerGroup) return |
||||
options.value = environmentList.filter((option: IEnvironmentNameOption) => |
||||
filterByWorkerGroup(option) |
||||
) |
||||
} |
||||
) |
||||
|
||||
onMounted(() => { |
||||
getEnvironmentList() |
||||
}) |
||||
|
||||
return { |
||||
type: 'select', |
||||
field: 'environmentCode', |
||||
span: 12, |
||||
name: t('project.node.environment_name'), |
||||
props: { |
||||
loading: loading, |
||||
clearable: true |
||||
}, |
||||
options: options |
||||
} |
||||
} |
@ -0,0 +1,42 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
import { useI18n } from 'vue-i18n' |
||||
|
||||
export function useFailed() { |
||||
const { t } = useI18n() |
||||
return [ |
||||
{ |
||||
type: 'input-number', |
||||
field: 'maxRetryTimes', |
||||
name: t('project.node.number_of_failed_retries'), |
||||
span: 12, |
||||
slots: { |
||||
suffix: () => t('project.node.times') |
||||
} |
||||
}, |
||||
{ |
||||
type: 'input-number', |
||||
field: 'retryInterval', |
||||
name: t('project.node.failed_retry_interval'), |
||||
span: 12, |
||||
slots: { |
||||
suffix: () => t('project.node.minute') |
||||
} |
||||
} |
||||
] |
||||
} |
@ -0,0 +1,36 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
import { useI18n } from 'vue-i18n' |
||||
|
||||
export function useName() { |
||||
const { t } = useI18n() |
||||
return { |
||||
type: 'input', |
||||
field: 'name', |
||||
name: t('project.node.name'), |
||||
props: { |
||||
placeholder: t('project.node.name_tips'), |
||||
maxLength: 100 |
||||
}, |
||||
validate: { |
||||
trigger: ['input', 'blur'], |
||||
required: true, |
||||
message: t('project.node.name_tips') |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,41 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
import { ref, onMounted } from 'vue' |
||||
import { useI18n } from 'vue-i18n' |
||||
|
||||
export function usePreTasks() { |
||||
const { t } = useI18n() |
||||
|
||||
const options = ref([]) |
||||
const loading = ref(false) |
||||
|
||||
onMounted(() => {}) |
||||
|
||||
return { |
||||
type: 'select', |
||||
field: 'preTasks', |
||||
span: 24, |
||||
name: t('project.node.pre_tasks'), |
||||
props: { |
||||
loading, |
||||
multiple: true, |
||||
filterable: true |
||||
}, |
||||
options |
||||
} |
||||
} |
@ -0,0 +1,38 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
import { useI18n } from 'vue-i18n' |
||||
|
||||
export function useRunFlag() { |
||||
const { t } = useI18n() |
||||
const options = [ |
||||
{ |
||||
label: t('project.node.normal'), |
||||
value: 'YES' |
||||
}, |
||||
{ |
||||
label: t('project.node.prohibition_execution'), |
||||
value: 'NO' |
||||
} |
||||
] |
||||
return { |
||||
type: 'radio', |
||||
field: 'runFlag', |
||||
name: t('project.node.run_flag'), |
||||
options: options |
||||
} |
||||
} |
@ -0,0 +1,191 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
import { ref, onMounted } from 'vue' |
||||
import { useI18n } from 'vue-i18n' |
||||
import { queryResourceList } from '@/service/modules/resources' |
||||
|
||||
export function useShell(model: { [field: string]: any }) { |
||||
const { t } = useI18n() |
||||
const options = ref([]) |
||||
|
||||
const loading = ref(false) |
||||
|
||||
const getResourceList = async () => { |
||||
if (loading.value) return |
||||
loading.value = true |
||||
try { |
||||
const res = await queryResourceList({ type: 'FILE' }) |
||||
removeUselessChildren(res) |
||||
options.value = res || [] |
||||
loading.value = false |
||||
} catch (err) { |
||||
loading.value = false |
||||
} |
||||
} |
||||
|
||||
onMounted(() => { |
||||
getResourceList() |
||||
}) |
||||
|
||||
return [ |
||||
{ |
||||
type: 'editor', |
||||
field: 'shell', |
||||
name: t('project.node.script'), |
||||
validate: { |
||||
trigger: ['input', 'trigger'], |
||||
required: true, |
||||
message: t('project.node.script_tips') |
||||
} |
||||
}, |
||||
{ |
||||
type: 'tree-select', |
||||
field: 'resourceList', |
||||
name: t('project.node.resources'), |
||||
options, |
||||
props: { |
||||
multiple: true, |
||||
checkable: true, |
||||
cascade: true, |
||||
showPath: true, |
||||
checkStrategy: 'child', |
||||
placeholder: t('project.node.resources_tips'), |
||||
keyField: 'id', |
||||
labelField: 'name', |
||||
loading |
||||
} |
||||
}, |
||||
{ |
||||
type: 'custom-parameters', |
||||
field: 'localParams', |
||||
name: t('project.node.custom_parameters'), |
||||
children: [ |
||||
{ |
||||
type: 'input', |
||||
field: 'prop', |
||||
span: 6, |
||||
props: { |
||||
placeholder: t('project.node.prop_tips'), |
||||
maxLength: 256 |
||||
}, |
||||
validate: { |
||||
trigger: ['input', 'blur'], |
||||
required: true, |
||||
validator(validate: any, value: string) { |
||||
if (!value) { |
||||
return new Error(t('project.node.prop_tips')) |
||||
} |
||||
|
||||
const sameItems = model.localParams.filter( |
||||
(item: { prop: string }) => item.prop === value |
||||
) |
||||
|
||||
if (sameItems.length > 1) { |
||||
return new Error(t('project.node.prop_repeat')) |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
{ |
||||
type: 'select', |
||||
field: 'direct', |
||||
span: 4, |
||||
options: DIRECT_LIST, |
||||
value: 'IN' |
||||
}, |
||||
{ |
||||
type: 'select', |
||||
field: 'type', |
||||
span: 6, |
||||
options: TYPE_LIST, |
||||
value: 'VARCHAR' |
||||
}, |
||||
{ |
||||
type: 'input', |
||||
field: 'value', |
||||
span: 6, |
||||
props: { |
||||
placeholder: t('project.node.value_tips'), |
||||
maxLength: 256 |
||||
} |
||||
} |
||||
] |
||||
} |
||||
] |
||||
} |
||||
|
||||
function removeUselessChildren(list: { children?: [] }[]) { |
||||
if (!list.length) return |
||||
list.forEach((item) => { |
||||
if (!item.children) return |
||||
if (item.children.length === 0) { |
||||
delete item.children |
||||
return |
||||
} |
||||
removeUselessChildren(item.children) |
||||
}) |
||||
} |
||||
|
||||
export const TYPE_LIST = [ |
||||
{ |
||||
value: 'VARCHAR', |
||||
label: 'VARCHAR' |
||||
}, |
||||
{ |
||||
value: 'INTEGER', |
||||
label: 'INTEGER' |
||||
}, |
||||
{ |
||||
value: 'LONG', |
||||
label: 'LONG' |
||||
}, |
||||
{ |
||||
value: 'FLOAT', |
||||
label: 'FLOAT' |
||||
}, |
||||
{ |
||||
value: 'DOUBLE', |
||||
label: 'DOUBLE' |
||||
}, |
||||
{ |
||||
value: 'DATE', |
||||
label: 'DATE' |
||||
}, |
||||
{ |
||||
value: 'TIME', |
||||
label: 'TIME' |
||||
}, |
||||
{ |
||||
value: 'TIMESTAMP', |
||||
label: 'TIMESTAMP' |
||||
}, |
||||
{ |
||||
value: 'BOOLEAN', |
||||
label: 'BOOLEAN' |
||||
} |
||||
] |
||||
|
||||
export const DIRECT_LIST = [ |
||||
{ |
||||
value: 'IN', |
||||
label: 'IN' |
||||
}, |
||||
{ |
||||
value: 'OUT', |
||||
label: 'OUT' |
||||
} |
||||
] |
@ -0,0 +1,85 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
import { ref, watch, computed, onMounted } from 'vue' |
||||
import { useI18n } from 'vue-i18n' |
||||
import { queryTaskGroupListPagingByProjectCode } from '@/service/modules/task-group' |
||||
|
||||
export function useTaskGroup( |
||||
model: { [field: string]: any }, |
||||
projectCode: number |
||||
) { |
||||
const { t } = useI18n() |
||||
|
||||
const options = ref([]) |
||||
const loading = ref(false) |
||||
const priorityDisabled = computed(() => !model.taskGroupId) |
||||
|
||||
const getTaskGroupList = async () => { |
||||
if (loading.value) return |
||||
loading.value = true |
||||
try { |
||||
const { totalList = [] } = await queryTaskGroupListPagingByProjectCode({ |
||||
pageNo: 1, |
||||
pageSize: 2147483647, |
||||
projectCode |
||||
}) |
||||
options.value = totalList.map((item: { id: string; name: string }) => ({ |
||||
label: item.name, |
||||
value: item.id |
||||
})) |
||||
loading.value = false |
||||
} catch (err) { |
||||
loading.value = false |
||||
} |
||||
} |
||||
|
||||
onMounted(() => { |
||||
getTaskGroupList() |
||||
}) |
||||
|
||||
watch( |
||||
() => model.taskGroupId, |
||||
(taskGroupId) => { |
||||
if (!taskGroupId) model.taskGroupPriority = 0 |
||||
} |
||||
) |
||||
|
||||
return [ |
||||
{ |
||||
type: 'select', |
||||
field: 'taskGroupId', |
||||
span: 12, |
||||
name: t('project.node.task_group_name'), |
||||
props: { |
||||
loading |
||||
}, |
||||
options |
||||
}, |
||||
{ |
||||
type: 'input-number', |
||||
field: 'taskGroupPriority', |
||||
name: t('project.node.task_group_queue_priority'), |
||||
props: { |
||||
max: Math.pow(10, 60) - 1, |
||||
disabled: priorityDisabled |
||||
}, |
||||
span: 12, |
||||
value: 0 |
||||
} |
||||
] |
||||
} |
@ -0,0 +1,92 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
import { h, markRaw, VNode, VNodeChild } from 'vue' |
||||
import { NIcon } from 'naive-ui' |
||||
import { useI18n } from 'vue-i18n' |
||||
import { ArrowUpOutlined, ArrowDownOutlined } from '@vicons/antd' |
||||
import type { ITaskPriorityOption } from '../types' |
||||
|
||||
export function useTaskPriority() { |
||||
const { t } = useI18n() |
||||
const options = markRaw([ |
||||
{ |
||||
label: 'HIGHEST', |
||||
value: 'HIGHEST', |
||||
icon: ArrowUpOutlined, |
||||
color: '#ff0000' |
||||
}, |
||||
{ |
||||
label: 'HIGH', |
||||
value: 'HIGH', |
||||
icon: ArrowUpOutlined, |
||||
color: '#ff0000' |
||||
}, |
||||
{ |
||||
label: 'MEDIUM', |
||||
value: 'MEDIUM', |
||||
icon: ArrowUpOutlined, |
||||
color: '#EA7D24' |
||||
}, |
||||
{ |
||||
label: 'LOW', |
||||
value: 'LOW', |
||||
icon: ArrowDownOutlined, |
||||
color: '#2A8734' |
||||
}, |
||||
{ |
||||
label: 'LOWEST', |
||||
value: 'LOWEST', |
||||
icon: ArrowDownOutlined, |
||||
color: '#2A8734' |
||||
} |
||||
]) |
||||
const renderOption = ({ |
||||
node, |
||||
option |
||||
}: { |
||||
node: VNode |
||||
option: ITaskPriorityOption |
||||
}): VNodeChild => |
||||
h(node, null, { |
||||
default: () => [ |
||||
h( |
||||
NIcon, |
||||
{ |
||||
color: option.color |
||||
}, |
||||
{ |
||||
default: () => h(option.icon) |
||||
} |
||||
), |
||||
option.label as string |
||||
] |
||||
}) |
||||
return { |
||||
type: 'select', |
||||
field: 'taskInstancePriority', |
||||
name: t('project.node.task_priority'), |
||||
options, |
||||
validate: { |
||||
required: true |
||||
}, |
||||
props: { |
||||
renderOption |
||||
}, |
||||
value: 'MEDIUM' |
||||
} |
||||
} |
@ -0,0 +1,86 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
import { computed, watch } from 'vue' |
||||
import { useI18n } from 'vue-i18n' |
||||
|
||||
export function useTimeoutAlarm(model: { [field: string]: any }) { |
||||
const { t } = useI18n() |
||||
const span = computed(() => (model.enable ? 12 : 0)) |
||||
|
||||
const strategyOptions = [ |
||||
{ |
||||
label: t('project.node.timeout_alarm'), |
||||
value: 'WARN' |
||||
}, |
||||
{ |
||||
label: t('project.node.timeout_failure'), |
||||
value: 'FAILED' |
||||
} |
||||
] |
||||
watch( |
||||
() => model.enable, |
||||
(enable) => { |
||||
model.strategy = enable ? ['WARN'] : [] |
||||
model.interval = enable ? 30 : null |
||||
} |
||||
) |
||||
|
||||
return [ |
||||
{ |
||||
type: 'switch', |
||||
field: 'enable', |
||||
name: t('project.node.timeout_alarm') |
||||
}, |
||||
{ |
||||
type: 'checkbox', |
||||
field: 'strategy', |
||||
name: t('project.node.timeout_strategy'), |
||||
options: strategyOptions, |
||||
span: span, |
||||
validate: { |
||||
trigger: ['input'], |
||||
validator(validate: any, value: []) { |
||||
if (model.enable && !value.length) { |
||||
return new Error(t('project.node.timeout_strategy_tips')) |
||||
} |
||||
} |
||||
}, |
||||
value: ['WARN'] |
||||
}, |
||||
{ |
||||
type: 'input-number', |
||||
field: 'interval', |
||||
name: t('project.node.timeout_period'), |
||||
span, |
||||
props: { |
||||
max: Math.pow(10, 10) - 1 |
||||
}, |
||||
slots: { |
||||
suffix: () => t('project.node.minute') |
||||
}, |
||||
validate: { |
||||
trigger: ['input'], |
||||
validator(validate: any, value: number) { |
||||
if (model.enable && !/^[1-9]\d*$/.test(String(value))) { |
||||
return new Error(t('project.node.timeout_period_tips')) |
||||
} |
||||
} |
||||
} |
||||
} |
||||
] |
||||
} |
@ -0,0 +1,59 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
import { ref, onMounted } from 'vue' |
||||
import { useI18n } from 'vue-i18n' |
||||
import { queryAllWorkerGroups } from '@/service/modules/worker-groups' |
||||
|
||||
export function useWorkerGroup() { |
||||
const { t } = useI18n() |
||||
|
||||
const options = ref([] as { label: string; value: string }[]) |
||||
const loading = ref(false) |
||||
|
||||
const getWorkerGroups = async () => { |
||||
if (loading.value) return |
||||
loading.value = true |
||||
try { |
||||
const res = await queryAllWorkerGroups() |
||||
options.value = res.map((item: string) => ({ label: item, value: item })) |
||||
loading.value = false |
||||
} catch (err) { |
||||
loading.value = false |
||||
} |
||||
} |
||||
|
||||
onMounted(() => { |
||||
getWorkerGroups() |
||||
}) |
||||
return { |
||||
type: 'select', |
||||
field: 'workerGroup', |
||||
span: 12, |
||||
name: t('project.node.worker_group'), |
||||
props: { |
||||
loading: loading |
||||
}, |
||||
options: options, |
||||
validate: { |
||||
trigger: ['input', 'blur'], |
||||
required: true, |
||||
message: t('project.node.worker_group_tips') |
||||
}, |
||||
value: 'default' |
||||
} |
||||
} |
@ -0,0 +1,16 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
@ -0,0 +1,65 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
import { reactive } from 'vue' |
||||
import * as Fields from '../fields/index' |
||||
import { IJsonItem } from '../types' |
||||
|
||||
export function useShell({ |
||||
isCreate, |
||||
projectCode |
||||
}: { |
||||
isCreate: boolean |
||||
projectCode: number |
||||
}) { |
||||
const model = reactive({ |
||||
name: '', |
||||
runFlag: 'YES', |
||||
desc: '', |
||||
enable: false, |
||||
localParams: [], |
||||
environmentCode: null, |
||||
workerGroup: 'default' |
||||
} as { |
||||
name: string |
||||
runFlag: string |
||||
desc: string |
||||
workerGroup: string |
||||
taskGroupId: string |
||||
enable: boolean |
||||
localParams: [] |
||||
environmentCode: string | null |
||||
}) |
||||
|
||||
return { |
||||
json: [ |
||||
Fields.useName(), |
||||
Fields.useRunFlag(), |
||||
Fields.useDescription(), |
||||
Fields.useTaskPriority(), |
||||
Fields.useWorkerGroup(), |
||||
Fields.useEnvironmentName(model, isCreate), |
||||
...Fields.useTaskGroup(model, projectCode), |
||||
...Fields.useFailed(), |
||||
Fields.useDelayTime(), |
||||
...Fields.useTimeoutAlarm(model), |
||||
...Fields.useShell(model), |
||||
Fields.usePreTasks() |
||||
] as IJsonItem[], |
||||
model |
||||
} |
||||
} |
@ -0,0 +1,104 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
import { VNode } from 'vue' |
||||
import type { SelectOption } from 'naive-ui' |
||||
import type { IFormItem, IJsonItem } from '@/components/form/types' |
||||
|
||||
interface ITaskPriorityOption extends SelectOption { |
||||
icon: VNode |
||||
color: string |
||||
} |
||||
interface IEnvironmentNameOption { |
||||
label: string |
||||
value: string |
||||
workerGroups?: string[] |
||||
} |
||||
interface ILocalParam { |
||||
prop: string |
||||
direct: string |
||||
type: string |
||||
value?: string |
||||
} |
||||
interface ITaskParams { |
||||
conditionResult?: string |
||||
switchResult?: string |
||||
delayTime?: string |
||||
dependence?: string |
||||
waitStartTimeout?: string |
||||
} |
||||
interface ITimeout { |
||||
enable: boolean |
||||
timeout?: number |
||||
strategy?: string |
||||
} |
||||
type ITaskType = |
||||
| 'SHELL' |
||||
| 'SUB_PROCESS' |
||||
| 'PROCEDURE' |
||||
| 'SQL' |
||||
| 'SPARK' |
||||
| 'FLINK' |
||||
| 'MapReduce' |
||||
| 'PYTHON' |
||||
| 'DEPENDENT' |
||||
| 'HTTP' |
||||
| 'DataX' |
||||
| 'PIGEON' |
||||
| 'SQOOP' |
||||
| 'CONDITIONS' |
||||
| 'DATA_QUALITY' |
||||
| 'SWITCH' |
||||
| 'SEATUNNEL' |
||||
|
||||
interface ITask { |
||||
code?: string |
||||
timeoutNotifyStrategy?: string |
||||
taskParams: ITaskParams |
||||
description?: string |
||||
id: number |
||||
delayTime?: number |
||||
failRetryTimes?: number |
||||
name: string |
||||
params?: object |
||||
failRetryInterval?: number |
||||
flag: string |
||||
taskPriority?: number |
||||
timeout: ITimeout |
||||
timeoutFlag: 'CLOSE' | 'OPEN' |
||||
taskType?: ITaskType |
||||
workerGroup?: string |
||||
environmentCode?: string |
||||
taskGroupId?: string |
||||
taskGroupPriority?: number |
||||
} |
||||
|
||||
interface IDataNode { |
||||
id?: string |
||||
taskType: ITaskType |
||||
} |
||||
|
||||
export { |
||||
ITaskPriorityOption, |
||||
IEnvironmentNameOption, |
||||
ILocalParam, |
||||
ITaskType, |
||||
ITask, |
||||
IDataNode, |
||||
IFormItem, |
||||
IJsonItem |
||||
} |
@ -0,0 +1,84 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
import { omit } from 'lodash' |
||||
import type { IDataNode, ITask } from './types' |
||||
|
||||
export function useData({ |
||||
nodeData, |
||||
type, |
||||
taskDefinition |
||||
}: { |
||||
nodeData: IDataNode |
||||
type: string |
||||
taskDefinition?: ITask |
||||
}) { |
||||
const data = { |
||||
backfill: {}, |
||||
isCreate: false |
||||
} |
||||
|
||||
if (type === 'task-definition') { |
||||
if (taskDefinition) { |
||||
data.backfill = formatBackfill(taskDefinition, nodeData.taskType) |
||||
data.isCreate = false |
||||
} |
||||
} else { |
||||
} |
||||
|
||||
return { |
||||
code: nodeData.id |
||||
} |
||||
} |
||||
|
||||
export function formatBackfill(task: ITask, taskType: string) { |
||||
let strategy: string | undefined = task.timeoutNotifyStrategy |
||||
if (taskType === 'DEPENDENT' && task.timeoutNotifyStrategy === 'WARNFAILED') { |
||||
strategy = 'WARN,FAILED' |
||||
} |
||||
return { |
||||
code: task.code, |
||||
conditionResult: task.taskParams.conditionResult, |
||||
switchResult: task.taskParams.switchResult, |
||||
delayTime: task.delayTime, |
||||
dependence: task.taskParams.dependence, |
||||
desc: task.description, |
||||
id: task.id, |
||||
maxRetryTimes: task.failRetryTimes, |
||||
name: task.name, |
||||
params: omit(task.taskParams, [ |
||||
'conditionResult', |
||||
'dependence', |
||||
'waitStartTimeout', |
||||
'switchResult' |
||||
]), |
||||
retryInterval: task.failRetryInterval, |
||||
runFlag: task.flag, |
||||
taskInstancePriority: task.taskPriority, |
||||
timeout: { |
||||
interval: task.timeout, |
||||
strategy, |
||||
enable: task.timeoutFlag === 'OPEN' |
||||
}, |
||||
type: task.taskType, |
||||
waitStartTimeout: task.taskParams.waitStartTimeout, |
||||
workerGroup: task.workerGroup, |
||||
environmentCode: task.environmentCode, |
||||
taskGroupId: task.taskGroupId, |
||||
taskGroupPriority: task.taskGroupPriority |
||||
} |
||||
} |
@ -0,0 +1,33 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
import { reactive, ref } from 'vue' |
||||
|
||||
export function useDetail() { |
||||
const state = reactive({ |
||||
formRef: ref(), |
||||
loading: false, |
||||
saving: false |
||||
}) |
||||
|
||||
const onSubmit = async (model: object) => { |
||||
await state.formRef.validate() |
||||
} |
||||
return { |
||||
state, |
||||
onSubmit |
||||
} |
||||
} |
@ -0,0 +1,32 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
import { useShell } from './tasks/use-shell' |
||||
import { IJsonItem, ITaskType } from './types' |
||||
|
||||
export function useTask({ |
||||
taskType, |
||||
projectCode |
||||
}: { |
||||
taskType: ITaskType |
||||
projectCode?: number |
||||
}): { json: IJsonItem[]; model: object } { |
||||
let node = {} as { json: IJsonItem[]; model: object } |
||||
if (taskType === 'SHELL' && projectCode) { |
||||
node = useShell({ isCreate: true, projectCode: projectCode }) |
||||
} |
||||
return node |
||||
} |
Loading…
Reference in new issue