mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(Google Sheets Node): Better error when column to match on is empty (#10442)
Co-authored-by: Shireen Missi <shireen@n8n.io>
This commit is contained in:
parent
0d3ed46199
commit
ce46bf516a
|
@ -93,6 +93,7 @@ const fieldDescription = computed<string>(() => {
|
||||||
resourceMapperTypeOptions.value?.multiKeyMatch === true
|
resourceMapperTypeOptions.value?.multiKeyMatch === true
|
||||||
? `${pluralFieldWord.value}`
|
? `${pluralFieldWord.value}`
|
||||||
: `${singularFieldWord.value}`,
|
: `${singularFieldWord.value}`,
|
||||||
|
nodeDisplayName: props.serviceName,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -182,13 +182,18 @@ describe('ResourceMapper.vue', () => {
|
||||||
},
|
},
|
||||||
{ merge: true },
|
{ merge: true },
|
||||||
);
|
);
|
||||||
|
|
||||||
await waitAllPromises();
|
await waitAllPromises();
|
||||||
expect(getByText('Set the value for each foo')).toBeInTheDocument();
|
expect(getByText('Set the value for each foo')).toBeInTheDocument();
|
||||||
expect(
|
expect(
|
||||||
getByText('Look for incoming data that matches the foos in the service'),
|
getByText('Look for incoming data that matches the foos in the service'),
|
||||||
).toBeInTheDocument();
|
).toBeInTheDocument();
|
||||||
expect(getByText('Foos to Match On')).toBeInTheDocument();
|
expect(getByText('Foos to Match On')).toBeInTheDocument();
|
||||||
expect(getByText('The foos that identify the row(s) to modify')).toBeInTheDocument();
|
expect(
|
||||||
|
getByText(
|
||||||
|
'The foos to use when matching rows in the service to the input items of this node. Usually an ID.',
|
||||||
|
),
|
||||||
|
).toBeInTheDocument();
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should render correct fields based on saved schema', async () => {
|
it('should render correct fields based on saved schema', async () => {
|
||||||
|
|
|
@ -1491,8 +1491,8 @@
|
||||||
"resourceMapper.fetchingFields.errorMessage": "Can't get {fieldWord}.",
|
"resourceMapper.fetchingFields.errorMessage": "Can't get {fieldWord}.",
|
||||||
"resourceMapper.fetchingFields.noFieldsFound": "No {fieldWord} found in {serviceName}.",
|
"resourceMapper.fetchingFields.noFieldsFound": "No {fieldWord} found in {serviceName}.",
|
||||||
"resourceMapper.columnsToMatchOn.label": "{fieldWord} to Match On",
|
"resourceMapper.columnsToMatchOn.label": "{fieldWord} to Match On",
|
||||||
"resourceMapper.columnsToMatchOn.multi.description": "The {fieldWord} that identify the row(s) to modify",
|
"resourceMapper.columnsToMatchOn.multi.description": "The {fieldWord} to use when matching rows in {nodeDisplayName} to the input items of this node. Usually an ID.",
|
||||||
"resourceMapper.columnsToMatchOn.single.description": "The {fieldWord} that identifies the row(s) to modify",
|
"resourceMapper.columnsToMatchOn.single.description": "The {fieldWord} to use when matching rows in {nodeDisplayName} to the input items of this node. Usually an ID.",
|
||||||
"resourceMapper.columnsToMatchOn.tooltip": "The {fieldWord} to compare when finding the rows to update",
|
"resourceMapper.columnsToMatchOn.tooltip": "The {fieldWord} to compare when finding the rows to update",
|
||||||
"resourceMapper.columnsToMatchOn.noFieldsFound": "No {fieldWord} that can be used for matching found in {serviceName}.",
|
"resourceMapper.columnsToMatchOn.noFieldsFound": "No {fieldWord} that can be used for matching found in {serviceName}.",
|
||||||
"resourceMapper.valuesToSend.label": "Values to Send",
|
"resourceMapper.valuesToSend.label": "Values to Send",
|
||||||
|
|
|
@ -338,8 +338,18 @@ export async function execute(
|
||||||
} else {
|
} else {
|
||||||
const valueToMatchOn =
|
const valueToMatchOn =
|
||||||
nodeVersion < 4
|
nodeVersion < 4
|
||||||
? (this.getNodeParameter('valueToMatchOn', i) as string)
|
? (this.getNodeParameter('valueToMatchOn', i, '') as string)
|
||||||
: (this.getNodeParameter(`columns.value[${columnsToMatchOn[0]}]`, i) as string);
|
: (this.getNodeParameter(`columns.value[${columnsToMatchOn[0]}]`, i, '') as string);
|
||||||
|
|
||||||
|
if (valueToMatchOn === '') {
|
||||||
|
throw new NodeOperationError(
|
||||||
|
this.getNode(),
|
||||||
|
"The 'Column to Match On' parameter is required",
|
||||||
|
{
|
||||||
|
itemIndex: i,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
if (nodeVersion < 4) {
|
if (nodeVersion < 4) {
|
||||||
const valuesToSend = this.getNodeParameter('fieldsUi.values', i, []) as IDataObject[];
|
const valuesToSend = this.getNodeParameter('fieldsUi.values', i, []) as IDataObject[];
|
||||||
|
|
|
@ -318,8 +318,18 @@ export async function execute(
|
||||||
} else {
|
} else {
|
||||||
const valueToMatchOn =
|
const valueToMatchOn =
|
||||||
nodeVersion < 4
|
nodeVersion < 4
|
||||||
? (this.getNodeParameter('valueToMatchOn', i) as string)
|
? (this.getNodeParameter('valueToMatchOn', i, '') as string)
|
||||||
: (this.getNodeParameter(`columns.value[${columnsToMatchOn[0]}]`, i) as string);
|
: (this.getNodeParameter(`columns.value[${columnsToMatchOn[0]}]`, i, '') as string);
|
||||||
|
|
||||||
|
if (valueToMatchOn === '') {
|
||||||
|
throw new NodeOperationError(
|
||||||
|
this.getNode(),
|
||||||
|
"The 'Column to Match On' parameter is required",
|
||||||
|
{
|
||||||
|
itemIndex: i,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
if (nodeVersion < 4) {
|
if (nodeVersion < 4) {
|
||||||
const valuesToSend = this.getNodeParameter('fieldsUi.values', i, []) as IDataObject[];
|
const valuesToSend = this.getNodeParameter('fieldsUi.values', i, []) as IDataObject[];
|
||||||
|
|
|
@ -82,7 +82,7 @@ const properties: INodeProperties[] = [
|
||||||
loadOptionsDependsOn: ['schema.value', 'table.value'],
|
loadOptionsDependsOn: ['schema.value', 'table.value'],
|
||||||
},
|
},
|
||||||
default: '',
|
default: '',
|
||||||
hint: 'The column that identifies the row(s) to modify',
|
hint: 'The column to use when matching rows in Postgres to the input items of this node. Usually an ID.',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
'@version': [2, 2.1],
|
'@version': [2, 2.1],
|
||||||
|
|
Loading…
Reference in a new issue