mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44: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>
76 lines
1.9 KiB
TypeScript
76 lines
1.9 KiB
TypeScript
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',
|
|
eventTriggerDescription: '',
|
|
mockManualExecution: true,
|
|
maxNodes: 1,
|
|
defaults: {
|
|
name: 'Error Trigger',
|
|
color: '#0000FF',
|
|
},
|
|
inputs: [],
|
|
outputs: ['main'],
|
|
properties: [
|
|
{
|
|
displayName:
|
|
'This node will trigger when there is an error in another workflow, as long as that workflow is set up to do so. <a href="https://docs.n8n.io/integrations/core-nodes/n8n-nodes-base.errortrigger" target="_blank">More info<a>',
|
|
name: 'notice',
|
|
type: 'notice',
|
|
default: '',
|
|
},
|
|
],
|
|
};
|
|
|
|
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);
|
|
}
|
|
}
|