Amy0104
3 years ago
committed by
GitHub
13 changed files with 228 additions and 556 deletions
@ -0,0 +1,79 @@ |
|||||||
|
/* |
||||||
|
* 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, watch } from 'vue' |
||||||
|
import { useI18n } from 'vue-i18n' |
||||||
|
import { queryResourceByProgramType } from '@/service/modules/resources' |
||||||
|
import { useTaskNodeStore } from '@/store/project/task-node' |
||||||
|
import { removeUselessChildren } from '@/utils/tree-format' |
||||||
|
import type { IJsonItem, ProgramType, IMainJar } from '../types' |
||||||
|
|
||||||
|
export function useMainJar(model: { [field: string]: any }): IJsonItem { |
||||||
|
const { t } = useI18n() |
||||||
|
const mainJarOptions = ref([] as IMainJar[]) |
||||||
|
const taskStore = useTaskNodeStore() |
||||||
|
|
||||||
|
const getMainJars = async (programType: ProgramType) => { |
||||||
|
const storeMainJar = taskStore.getMainJar(programType) |
||||||
|
if (storeMainJar) { |
||||||
|
mainJarOptions.value = storeMainJar |
||||||
|
return |
||||||
|
} |
||||||
|
const res = await queryResourceByProgramType({ |
||||||
|
type: 'FILE', |
||||||
|
programType |
||||||
|
}) |
||||||
|
removeUselessChildren(res) |
||||||
|
mainJarOptions.value = res || [] |
||||||
|
taskStore.updateMainJar(programType, res) |
||||||
|
} |
||||||
|
|
||||||
|
onMounted(() => { |
||||||
|
getMainJars(model.programType) |
||||||
|
}) |
||||||
|
|
||||||
|
watch( |
||||||
|
() => model.programType, |
||||||
|
(value) => { |
||||||
|
getMainJars(value) |
||||||
|
} |
||||||
|
) |
||||||
|
|
||||||
|
return { |
||||||
|
type: 'tree-select', |
||||||
|
field: 'mainJar', |
||||||
|
name: t('project.node.main_package'), |
||||||
|
props: { |
||||||
|
cascade: true, |
||||||
|
showPath: true, |
||||||
|
checkStrategy: 'child', |
||||||
|
placeholder: t('project.node.main_package_tips'), |
||||||
|
keyField: 'id', |
||||||
|
labelField: 'fullName' |
||||||
|
}, |
||||||
|
validate: { |
||||||
|
trigger: ['input', 'blur'], |
||||||
|
required: true, |
||||||
|
validator(validate: any, value: string) { |
||||||
|
if (!value) { |
||||||
|
return new Error(t('project.node.main_package_tips')) |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
options: mainJarOptions |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,68 @@ |
|||||||
|
/* |
||||||
|
* 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' |
||||||
|
import { useTaskNodeStore } from '@/store/project/task-node' |
||||||
|
import { removeUselessChildren } from '@/utils/tree-format' |
||||||
|
import type { IJsonItem, IResource } from '../types' |
||||||
|
|
||||||
|
export function useResources(): IJsonItem { |
||||||
|
const { t } = useI18n() |
||||||
|
|
||||||
|
const resourcesOptions = ref([] as IResource[]) |
||||||
|
const resourcesLoading = ref(false) |
||||||
|
|
||||||
|
const taskStore = useTaskNodeStore() |
||||||
|
|
||||||
|
const getResources = async () => { |
||||||
|
if (taskStore.resources.length) { |
||||||
|
resourcesOptions.value = taskStore.resources |
||||||
|
return |
||||||
|
} |
||||||
|
if (resourcesLoading.value) return |
||||||
|
resourcesLoading.value = true |
||||||
|
const res = await queryResourceList({ type: 'FILE' }) |
||||||
|
removeUselessChildren(res) |
||||||
|
resourcesOptions.value = res || [] |
||||||
|
resourcesLoading.value = false |
||||||
|
taskStore.updateResource(res) |
||||||
|
} |
||||||
|
|
||||||
|
onMounted(() => { |
||||||
|
getResources() |
||||||
|
}) |
||||||
|
|
||||||
|
return { |
||||||
|
type: 'tree-select', |
||||||
|
field: 'resourceList', |
||||||
|
name: t('project.node.resources'), |
||||||
|
options: resourcesOptions, |
||||||
|
props: { |
||||||
|
multiple: true, |
||||||
|
checkable: true, |
||||||
|
cascade: true, |
||||||
|
showPath: true, |
||||||
|
checkStrategy: 'child', |
||||||
|
placeholder: t('project.node.resources_tips'), |
||||||
|
keyField: 'id', |
||||||
|
labelField: 'name', |
||||||
|
loading: resourcesLoading |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue