mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
0ecbb4a19d
* 🔨 prettier formated nodes - A * 🔨 prettier formated nodes - B * ⚡ prettier formated nodes - C * ⚡ prettier formated nodes - D * ⚡ prettier formated nodes - E-F * 🎨 Adjust nodes-base formatting command (#3805) * Format additional files in nodes A-F (#3811) * ⚡ fixes * 🎨 Add Mindee to ignored dirs Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
54 lines
1.6 KiB
TypeScript
54 lines
1.6 KiB
TypeScript
import { IExecuteFunctions } from 'n8n-core';
|
|
|
|
import { INodeExecutionData } from 'n8n-workflow';
|
|
|
|
import * as employee from './employee';
|
|
import * as employeeDocument from './employeeDocument';
|
|
import * as file from './file';
|
|
import * as companyReport from './companyReport';
|
|
|
|
import { BambooHr } from './Interfaces';
|
|
|
|
export async function router(this: IExecuteFunctions): Promise<INodeExecutionData[]> {
|
|
const items = this.getInputData();
|
|
const operationResult: INodeExecutionData[] = [];
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
|
const resource = this.getNodeParameter<BambooHr>('resource', i);
|
|
const operation = this.getNodeParameter('operation', i);
|
|
|
|
const bamboohr = {
|
|
resource,
|
|
operation,
|
|
} as BambooHr;
|
|
|
|
if (bamboohr.operation === 'delete') {
|
|
//@ts-ignore
|
|
bamboohr.operation = 'del';
|
|
}
|
|
|
|
try {
|
|
if (bamboohr.resource === 'employee') {
|
|
operationResult.push(...(await employee[bamboohr.operation].execute.call(this, i)));
|
|
} else if (bamboohr.resource === 'employeeDocument') {
|
|
//@ts-ignore
|
|
operationResult.push(...(await employeeDocument[bamboohr.operation].execute.call(this, i)));
|
|
} else if (bamboohr.resource === 'file') {
|
|
//@ts-ignore
|
|
operationResult.push(...(await file[bamboohr.operation].execute.call(this, i)));
|
|
} else if (bamboohr.resource === 'companyReport') {
|
|
//@ts-ignore
|
|
operationResult.push(...(await companyReport[bamboohr.operation].execute.call(this, i)));
|
|
}
|
|
} catch (err) {
|
|
if (this.continueOnFail()) {
|
|
operationResult.push({ json: this.getInputData(i)[0].json, error: err });
|
|
} else {
|
|
throw err;
|
|
}
|
|
}
|
|
}
|
|
|
|
return operationResult;
|
|
}
|