n8n/packages/nodes-base/nodes/BambooHr/v1/actions/router.ts
Michael Kret 0ecbb4a19d
refactor: Format nodes-base package (A-F) (#3800)
* 🔨 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>
2022-08-01 22:47:55 +02:00

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;
}