songjianet
2 years ago
committed by
devosend
34 changed files with 359 additions and 36 deletions
@ -0,0 +1,180 @@
|
||||
/* |
||||
* 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' |
||||
import { useCustomParams } from '.' |
||||
import type { IJsonItem } from '../types' |
||||
|
||||
export function useJupyter(model: { [field: string]: any }): IJsonItem[] { |
||||
const { t } = useI18n() |
||||
|
||||
return [ |
||||
{ |
||||
type: 'input', |
||||
field: 'condaEnvName', |
||||
name: t('project.node.jupyter_conda_env_name'), |
||||
props: { |
||||
placeholder: t('project.node.jupyter_conda_env_name_tips') |
||||
}, |
||||
validate: { |
||||
trigger: ['input', 'blur'], |
||||
required: true, |
||||
validator(validate: any, value: string) { |
||||
if (!value) { |
||||
return new Error(t('project.node.jupyter_conda_env_name_tips')) |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
{ |
||||
type: 'input', |
||||
field: 'inputNotePath', |
||||
name: t('project.node.jupyter_input_note_path'), |
||||
props: { |
||||
placeholder: t('project.node.jupyter_input_note_path_tips') |
||||
}, |
||||
validate: { |
||||
trigger: ['input', 'blur'], |
||||
required: true, |
||||
validator(validate: any, value: string) { |
||||
if (!value) { |
||||
return new Error(t('project.node.jupyter_input_note_path_tips')) |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
{ |
||||
type: 'input', |
||||
field: 'outputNotePath', |
||||
name: t('project.node.jupyter_output_note_path'), |
||||
props: { |
||||
placeholder: t('project.node.jupyter_output_note_path_tips') |
||||
}, |
||||
validate: { |
||||
trigger: ['input', 'blur'], |
||||
required: true, |
||||
validator(validate: any, value: string) { |
||||
if (!value) { |
||||
return new Error(t('project.node.jupyter_output_note_path_tips')) |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
{ |
||||
type: 'input', |
||||
field: 'parameters', |
||||
name: t('project.node.jupyter_parameters'), |
||||
props: { |
||||
placeholder: t('project.node.jupyter_parameters_tips') |
||||
} |
||||
// validate: {
|
||||
// trigger: ['input', 'blur'],
|
||||
// required: false,
|
||||
// validator(validate: any, value: string) {
|
||||
// if (!value) {
|
||||
// return new Error(t('project.node.jupyter_parameters_tips'))
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
}, |
||||
{ |
||||
type: 'input', |
||||
field: 'kernel', |
||||
name: t('project.node.jupyter_kernel'), |
||||
props: { |
||||
placeholder: t('project.node.jupyter_kernel_tips') |
||||
} |
||||
// validate: {
|
||||
// trigger: ['input', 'blur'],
|
||||
// required: false,
|
||||
// validator(validate: any, value: string) {
|
||||
// if (!value) {
|
||||
// return new Error(t('project.node.jupyter_kernel_tips'))
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
}, |
||||
{ |
||||
type: 'input', |
||||
field: 'engine', |
||||
name: t('project.node.jupyter_engine'), |
||||
props: { |
||||
placeholder: t('project.node.jupyter_engine_tips') |
||||
} |
||||
// validate: {
|
||||
// trigger: ['input', 'blur'],
|
||||
// required: false,
|
||||
// validator(validate: any, value: string) {
|
||||
// if (!value) {
|
||||
// return new Error(t('project.node.jupyter_engine_tips'))
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
}, |
||||
{ |
||||
type: 'input', |
||||
field: 'executionTimeout', |
||||
name: t('project.node.jupyter_execution_timeout'), |
||||
props: { |
||||
placeholder: t('project.node.jupyter_execution_timeout_tips') |
||||
} |
||||
// validate: {
|
||||
// trigger: ['input', 'blur'],
|
||||
// required: false,
|
||||
// validator(validate: any, value: string) {
|
||||
// if (!value) {
|
||||
// return new Error(t('project.node.jupyter_execution_timeout_tips'))
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
}, |
||||
{ |
||||
type: 'input', |
||||
field: 'startTimeout', |
||||
name: t('project.node.jupyter_start_timeout'), |
||||
props: { |
||||
placeholder: t('project.node.zeppelin_note_id_tips') |
||||
} |
||||
// validate: {
|
||||
// trigger: ['input', 'blur'],
|
||||
// required: false,
|
||||
// validator(validate: any, value: string) {
|
||||
// if (!value) {
|
||||
// return new Error(t('project.node.jupyter_start_timeout_tips'))
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
}, |
||||
{ |
||||
type: 'input', |
||||
field: 'others', |
||||
name: t('project.node.jupyter_others'), |
||||
props: { |
||||
placeholder: t('project.node.jupyter_others_tips') |
||||
} |
||||
// validate: {
|
||||
// trigger: ['input', 'blur'],
|
||||
// required: false,
|
||||
// validator(validate: any, value: string) {
|
||||
// if (!value) {
|
||||
// return new Error(t('project.node.jupyter_others_tips'))
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
}, |
||||
...useCustomParams({ model, field: 'localParams', isSimple: false }) |
||||
] |
||||
} |
@ -0,0 +1,87 @@
|
||||
/* |
||||
* 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' |
||||
import { useCustomParams, useResources } from '.' |
||||
import type { IJsonItem } from '../types' |
||||
|
||||
export function useOpenmldb(model: { [field: string]: any }): IJsonItem[] { |
||||
const { t } = useI18n() |
||||
const options = [ |
||||
{ |
||||
label: t('project.node.openmldb_execute_mode_offline'), |
||||
value: 'offline' |
||||
}, |
||||
{ |
||||
label: t('project.node.openmldb_execute_mode_online'), |
||||
value: 'online' |
||||
} |
||||
] |
||||
return [ |
||||
{ |
||||
type: 'input', |
||||
field: 'zk', |
||||
name: t('project.node.openmldb_zk_address'), |
||||
props: { |
||||
placeholder: t('project.node.openmldb_zk_address_tips') |
||||
}, |
||||
validate: { |
||||
trigger: ['input', 'blur'], |
||||
required: true, |
||||
validator(validate: any, value: string) { |
||||
if (!value) { |
||||
return new Error(t('project.node.openmldb_zk_address_tips')) |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
{ |
||||
type: 'input', |
||||
field: 'zkPath', |
||||
name: t('project.node.openmldb_zk_path'), |
||||
props: { |
||||
placeholder: t('project.node.openmldb_zk_path_tips') |
||||
}, |
||||
validate: { |
||||
trigger: ['input', 'blur'], |
||||
required: true, |
||||
validator(validate: any, value: string) { |
||||
if (!value) { |
||||
return new Error(t('project.node.openmldb_zk_path_tips')) |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
{ |
||||
type: 'radio', |
||||
field: 'executeMode', |
||||
name: t('project.node.openmldb_execute_mode'), |
||||
options: options |
||||
}, |
||||
{ |
||||
type: 'editor', |
||||
field: 'sql', |
||||
name: t('project.node.sql_statement'), |
||||
validate: { |
||||
trigger: ['input', 'trigger'], |
||||
required: true, |
||||
message: t('project.node.sql_empty_tips') |
||||
} |
||||
}, |
||||
useResources(), |
||||
...useCustomParams({ model, field: 'localParams', isSimple: false }) |
||||
] |
||||
} |
Loading…
Reference in new issue