n8n/packages/nodes-base/nodes/N8nTrainingCustomerMessenger/N8nTrainingCustomerMessenger.node.ts
Iván Ovejero b03e358a12
refactor: Integrate consistent-type-imports in nodes-base (no-changelog) (#5267)
* 👕 Enable `consistent-type-imports` for nodes-base

* 👕 Apply to nodes-base

*  Undo unrelated changes

* 🚚 Move to `.eslintrc.js` in nodes-base

*  Revert "Enable `consistent-type-imports` for nodes-base"

This reverts commit 529ad72b05.

* 👕 Fix severity
2023-01-27 12:22:44 +01:00

62 lines
1.4 KiB
TypeScript

import type { IExecuteFunctions } from 'n8n-core';
import type {
IDataObject,
INodeExecutionData,
INodeType,
INodeTypeDescription,
} from 'n8n-workflow';
export class N8nTrainingCustomerMessenger implements INodeType {
description: INodeTypeDescription = {
displayName: 'Customer Messenger (n8n training)',
name: 'n8nTrainingCustomerMessenger',
icon: 'file:n8nTrainingCustomerMessenger.svg',
group: ['transform'],
version: 1,
description: 'Dummy node used for n8n training',
defaults: {
name: 'Customer Messenger (n8n training)',
},
inputs: ['main'],
outputs: ['main'],
properties: [
{
displayName: 'Customer ID',
name: 'customerId',
type: 'string',
required: true,
default: '',
},
{
displayName: 'Message',
name: 'message',
type: 'string',
required: true,
typeOptions: {
rows: 4,
},
default: '',
},
],
};
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
const items = this.getInputData();
const returnData: IDataObject[] = [];
const length = items.length;
let responseData;
for (let i = 0; i < length; i++) {
const customerId = this.getNodeParameter('customerId', i) as string;
const message = this.getNodeParameter('message', i) as string;
responseData = { output: `Sent message to customer ${customerId}: ${message}` };
returnData.push(responseData);
}
return [this.helpers.returnJsonArray(returnData)];
}
}