未验证 提交 db9db944 编写于 作者: R rickchengx 提交者: GitHub

[Improvement-11880][Hivecli] Improve the UI of HiveCli (#11882)

上级 1a4d7a84
......@@ -14,12 +14,14 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { computed } from 'vue'
import { useI18n } from 'vue-i18n'
import { useCustomParams, useResources } from '.'
import type { IJsonItem } from '../types'
export function useHiveCli(model: { [field: string]: any }): IJsonItem[] {
const { t } = useI18n()
const hiveSqlScriptSpan = computed(() => (model.hiveCliTaskExecutionType === 'SCRIPT' ? 24 : 0))
return [
{
......@@ -27,7 +29,11 @@ export function useHiveCli(model: { [field: string]: any }): IJsonItem[] {
field: 'hiveCliTaskExecutionType',
span: 12,
name: t('project.node.hive_cli_task_execution_type'),
options: HIVE_CLI_TASK_EXECUTION_TYPES
options: HIVE_CLI_TASK_EXECUTION_TYPES,
validate: {
trigger: ['input', 'blur'],
required: true
}
},
{
type: 'editor',
......@@ -35,7 +41,12 @@ export function useHiveCli(model: { [field: string]: any }): IJsonItem[] {
name: t('project.node.hive_sql_script'),
props: {
language: 'sql'
}
},
validate: {
trigger: ['input', 'blur'],
required: true
},
span: hiveSqlScriptSpan
},
{
type: 'input',
......
......@@ -42,7 +42,8 @@ export function useHiveCli({
failRetryTimes: 0,
workerGroup: 'default',
delayTime: 0,
timeout: 30
timeout: 30,
hiveCliTaskExecutionType: 'SCRIPT'
} as INodeData)
let extra: IJsonItem[] = []
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册