mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 08:34:07 -08:00
5e16dd4ab4
Github issue / Community forum post (link here to close automatically): --------- Co-authored-by: Giulio Andreini <andreini@netseven.it> Co-authored-by: Marcus <marcus@n8n.io>
46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
import type {
|
|
IExecuteFunctions,
|
|
INodeExecutionData,
|
|
INodeType,
|
|
INodeTypeBaseDescription,
|
|
INodeTypeDescription,
|
|
} from 'n8n-workflow';
|
|
|
|
import { operationProperty } from '../description';
|
|
import * as fromFile from './fromFile.operation';
|
|
import * as toFile from './toFile.operation';
|
|
|
|
export class SpreadsheetFileV2 implements INodeType {
|
|
description: INodeTypeDescription;
|
|
|
|
constructor(baseDescription: INodeTypeBaseDescription) {
|
|
this.description = {
|
|
...baseDescription,
|
|
version: 2,
|
|
defaults: {
|
|
name: 'Spreadsheet File',
|
|
color: '#2244FF',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
properties: [operationProperty, ...fromFile.description, ...toFile.description],
|
|
};
|
|
}
|
|
|
|
async execute(this: IExecuteFunctions) {
|
|
const items = this.getInputData();
|
|
const operation = this.getNodeParameter('operation', 0);
|
|
let returnData: INodeExecutionData[] = [];
|
|
|
|
if (operation === 'fromFile') {
|
|
returnData = await fromFile.execute.call(this, items);
|
|
}
|
|
|
|
if (operation === 'toFile') {
|
|
returnData = await toFile.execute.call(this, items);
|
|
}
|
|
|
|
return [returnData];
|
|
}
|
|
}
|