mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
🚚 Directorize and alphabetize nodes (#2445)
* 🚚 Directorize nodes * ⚡ Alphabetize nodes and credentials * 🔥 Remove unused node * 🔥 Remove unused codex * 🔥 Remove duplicate cred file references * 🐛 Fix node file paths * 🔥 Remove duplicate node reference
This commit is contained in:
66
packages/nodes-base/nodes/ErrorTrigger/ErrorTrigger.node.ts
Normal file
66
packages/nodes-base/nodes/ErrorTrigger/ErrorTrigger.node.ts
Normal file
@@ -0,0 +1,66 @@
|
||||
import { IExecuteFunctions } from 'n8n-core';
|
||||
import {
|
||||
INodeExecutionData,
|
||||
INodeType,
|
||||
INodeTypeDescription,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
|
||||
export class ErrorTrigger implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Error Trigger',
|
||||
name: 'errorTrigger',
|
||||
icon: 'fa:bug',
|
||||
group: ['trigger'],
|
||||
version: 1,
|
||||
description: 'Triggers the workflow when another workflow has an error',
|
||||
maxNodes: 1,
|
||||
defaults: {
|
||||
name: 'Error Trigger',
|
||||
color: '#0000FF',
|
||||
},
|
||||
inputs: [],
|
||||
outputs: ['main'],
|
||||
properties: [],
|
||||
};
|
||||
|
||||
|
||||
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
||||
const items = this.getInputData();
|
||||
|
||||
const mode = this.getMode();
|
||||
|
||||
if (mode === 'manual' && items.length === 1 && Object.keys(items[0].json).length === 0 && items[0].binary === undefined) {
|
||||
// If we are in manual mode and no input data got provided we return
|
||||
// example data to allow to develope and test errorWorkflows easily
|
||||
|
||||
const restApiUrl = this.getRestApiUrl();
|
||||
|
||||
const urlParts = restApiUrl.split('/');
|
||||
urlParts.pop();
|
||||
urlParts.push('execution');
|
||||
|
||||
const id = 231;
|
||||
|
||||
items[0].json = {
|
||||
execution: {
|
||||
id,
|
||||
url: `${urlParts.join('/')}/${id}`,
|
||||
retryOf: '34',
|
||||
error: {
|
||||
message: 'Example Error Message',
|
||||
stack: 'Stacktrace',
|
||||
},
|
||||
lastNodeExecuted: 'Node With Error',
|
||||
mode: 'manual',
|
||||
},
|
||||
workflow: {
|
||||
id: '1',
|
||||
name: 'Example Workflow',
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
return this.prepareOutputData(items);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user