mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
36 lines
941 B
TypeScript
36 lines
941 B
TypeScript
|
import type { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
|
||
|
import { NodeOperationError } from 'n8n-workflow';
|
||
|
import type { WebflowType } from './node.type';
|
||
|
|
||
|
import * as item from './Item/Item.resource';
|
||
|
|
||
|
export async function router(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
||
|
let returnData: INodeExecutionData[] = [];
|
||
|
|
||
|
const items = this.getInputData();
|
||
|
const resource = this.getNodeParameter<WebflowType>('resource', 0);
|
||
|
const operation = this.getNodeParameter('operation', 0);
|
||
|
|
||
|
const webflowNodeData = {
|
||
|
resource,
|
||
|
operation,
|
||
|
} as WebflowType;
|
||
|
|
||
|
try {
|
||
|
switch (webflowNodeData.resource) {
|
||
|
case 'item':
|
||
|
returnData = await item[webflowNodeData.operation].execute.call(this, items);
|
||
|
break;
|
||
|
default:
|
||
|
throw new NodeOperationError(
|
||
|
this.getNode(),
|
||
|
`The operation "${operation}" is not supported!`,
|
||
|
);
|
||
|
}
|
||
|
} catch (error) {
|
||
|
throw error;
|
||
|
}
|
||
|
|
||
|
return [returnData];
|
||
|
}
|