mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
af69c80bf5
Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com> Co-authored-by: Shireen Missi <94372015+ShireenMissi@users.noreply.github.com>
50 lines
1.1 KiB
TypeScript
50 lines
1.1 KiB
TypeScript
import type { ILoadOptionsFunctions, INodePropertyOptions } from 'n8n-workflow';
|
|
|
|
export async function getResolveClashOptions(
|
|
this: ILoadOptionsFunctions,
|
|
): Promise<INodePropertyOptions[]> {
|
|
const numberOfInputs = this.getNodeParameter('numberInputs', 2) as number;
|
|
|
|
if (numberOfInputs <= 2) {
|
|
return [
|
|
{
|
|
name: 'Always Add Input Number to Field Names',
|
|
value: 'addSuffix',
|
|
},
|
|
{
|
|
name: 'Prefer Input 1 Version',
|
|
value: 'preferInput1',
|
|
},
|
|
{
|
|
name: 'Prefer Input 2 Version',
|
|
value: 'preferLast',
|
|
},
|
|
];
|
|
} else {
|
|
return [
|
|
{
|
|
name: 'Always Add Input Number to Field Names',
|
|
value: 'addSuffix',
|
|
},
|
|
{
|
|
name: 'Use Earliest Version',
|
|
value: 'preferInput1',
|
|
},
|
|
];
|
|
}
|
|
}
|
|
export async function getInputs(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
|
const numberOfInputs = this.getNodeParameter('numberInputs', 2) as number;
|
|
|
|
const returnData: INodePropertyOptions[] = [];
|
|
|
|
for (let i = 0; i < numberOfInputs; i++) {
|
|
returnData.push({
|
|
name: `${i + 1}`,
|
|
value: i + 1,
|
|
});
|
|
}
|
|
|
|
return returnData;
|
|
}
|