Skip to content

Commit

Permalink
[Fix-13928][UI] Fix repeat CustomParams input box
Browse files Browse the repository at this point in the history
  • Loading branch information
imp2002 committed Apr 27, 2023
1 parent 4545093 commit 1178218
Showing 1 changed file with 0 additions and 46 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ export function useDataX(model: { [field: string]: any }): IJsonItem[] {
const destinationDatasourceSpan = ref(8)
const otherStatementSpan = ref(22)
const jobSpeedSpan = ref(12)
const customParameterSpan = ref(0)
const useResourcesSpan = ref(0)

const initConstants = () => {
Expand All @@ -113,7 +112,6 @@ export function useDataX(model: { [field: string]: any }): IJsonItem[] {
destinationDatasourceSpan.value = 0
otherStatementSpan.value = 0
jobSpeedSpan.value = 0
customParameterSpan.value = 24
useResourcesSpan.value = 24
} else {
sqlEditorSpan.value = 24
Expand All @@ -122,7 +120,6 @@ export function useDataX(model: { [field: string]: any }): IJsonItem[] {
destinationDatasourceSpan.value = 8
otherStatementSpan.value = 22
jobSpeedSpan.value = 12
customParameterSpan.value = 0
useResourcesSpan.value = 0
}
}
Expand Down Expand Up @@ -238,49 +235,6 @@ export function useDataX(model: { [field: string]: any }): IJsonItem[] {
options: jobSpeedRecordOptions,
value: 1000
},
{
type: 'custom-parameters',
field: 'localParams',
name: t('project.node.custom_parameters'),
span: customParameterSpan,
children: [
{
type: 'input',
field: 'prop',
span: 10,
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: 'input',
field: 'value',
span: 10,
props: {
placeholder: t('project.node.value_tips'),
maxLength: 256
}
}
]
},
{
type: 'select',
field: 'xms',
Expand Down

0 comments on commit 1178218

Please sign in to comment.