## Summary Provide details about your pull request and what it adds, fixes, or changes. Photos and videos are recommended. As part of NodeView refactor, this PR migrates all externalHooks calls to `useExternalHooks` composable. #### How to test the change: 1. Run using env `export N8N_DEPLOYMENT_TYPE=cloud` 2. Hooks should still run as expected ## Issues fixed Include links to Github issue or Community forum post or **Linear ticket**: > Important in order to close automatically and provide context to reviewers https://linear.app/n8n/issue/N8N-6349/externalhooks ## Review / Merge checklist - [x] PR title and summary are descriptive. **Remember, the title automatically goes into the changelog. Use `(no-changelog)` otherwise.** ([conventions](https://github.com/n8n-io/n8n/blob/master/.github/pull_request_title_conventions.md)) - [x] [Docs updated](https://github.com/n8n-io/n8n-docs) or follow-up ticket created. - [x] Tests included. > A bug is not considered fixed, unless a test is added to prevent it from happening again. A feature is not complete without tests. > > *(internal)* You can use Slack commands to trigger [e2e tests](https://www.notion.so/n8n/How-to-use-Test-Instances-d65f49dfc51f441ea44367fb6f67eb0a?pvs=4#a39f9e5ba64a48b58a71d81c837e8227) or [deploy test instance](https://www.notion.so/n8n/How-to-use-Test-Instances-d65f49dfc51f441ea44367fb6f67eb0a?pvs=4#f6a177d32bde4b57ae2da0b8e454bfce) or [deploy early access version on Cloud](https://www.notion.so/n8n/Cloudbot-3dbe779836004972b7057bc989526998?pvs=4#fef2d36ab02247e1a0f65a74f6fb534e).
261 lines
7.0 KiB
Vue
261 lines
7.0 KiB
Vue
<template>
|
|
<div>
|
|
<n8n-tooltip placement="bottom" :disabled="!disabledHint">
|
|
<template #content>
|
|
<div>{{ disabledHint }}</div>
|
|
</template>
|
|
<div>
|
|
<n8n-button
|
|
v-bind="$attrs"
|
|
:loading="nodeRunning && !isListeningForEvents && !isListeningForWorkflowEvents"
|
|
:disabled="disabled || !!disabledHint"
|
|
:label="buttonLabel"
|
|
:type="type"
|
|
:size="size"
|
|
:icon="isFormTriggerNode && 'flask'"
|
|
:transparentBackground="transparent"
|
|
@click="onClick"
|
|
/>
|
|
</div>
|
|
</n8n-tooltip>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import { mapStores } from 'pinia';
|
|
import {
|
|
WEBHOOK_NODE_TYPE,
|
|
MANUAL_TRIGGER_NODE_TYPE,
|
|
MODAL_CONFIRM,
|
|
FORM_TRIGGER_NODE_TYPE,
|
|
} from '@/constants';
|
|
import type { INodeUi } from '@/Interface';
|
|
import type { INodeTypeDescription } from 'n8n-workflow';
|
|
import { workflowRun } from '@/mixins/workflowRun';
|
|
import { pinData } from '@/mixins/pinData';
|
|
import { useWorkflowsStore } from '@/stores/workflows.store';
|
|
import { useNDVStore } from '@/stores/ndv.store';
|
|
import { useNodeTypesStore } from '@/stores/nodeTypes.store';
|
|
import { useMessage } from '@/composables/useMessage';
|
|
import { useToast } from '@/composables/useToast';
|
|
import { useExternalHooks } from '@/composables/useExternalHooks';
|
|
|
|
export default defineComponent({
|
|
inheritAttrs: false,
|
|
mixins: [workflowRun, pinData],
|
|
props: {
|
|
nodeName: {
|
|
type: String,
|
|
},
|
|
disabled: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
label: {
|
|
type: String,
|
|
},
|
|
type: {
|
|
type: String,
|
|
},
|
|
size: {
|
|
type: String,
|
|
},
|
|
transparent: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
telemetrySource: {
|
|
type: String,
|
|
},
|
|
},
|
|
setup(props, ctx) {
|
|
const externalHooks = useExternalHooks();
|
|
|
|
return {
|
|
externalHooks,
|
|
...useToast(),
|
|
...useMessage(),
|
|
// eslint-disable-next-line @typescript-eslint/no-misused-promises
|
|
...workflowRun.setup?.(props, ctx),
|
|
};
|
|
},
|
|
computed: {
|
|
...mapStores(useNodeTypesStore, useNDVStore, useWorkflowsStore),
|
|
node(): INodeUi | null {
|
|
return this.workflowsStore.getNodeByName(this.nodeName);
|
|
},
|
|
nodeType(): INodeTypeDescription | null {
|
|
if (this.node) {
|
|
return this.nodeTypesStore.getNodeType(this.node.type, this.node.typeVersion);
|
|
}
|
|
return null;
|
|
},
|
|
nodeRunning(): boolean {
|
|
const triggeredNode = this.workflowsStore.executedNode;
|
|
return (
|
|
this.workflowRunning &&
|
|
(this.workflowsStore.isNodeExecuting(this.node.name) || triggeredNode === this.node.name)
|
|
);
|
|
},
|
|
workflowRunning(): boolean {
|
|
return this.uiStore.isActionActive('workflowRunning');
|
|
},
|
|
isTriggerNode(): boolean {
|
|
if (!this.node) {
|
|
return false;
|
|
}
|
|
return this.nodeTypesStore.isTriggerNode(this.node.type);
|
|
},
|
|
isManualTriggerNode(): boolean {
|
|
return Boolean(this.nodeType && this.nodeType.name === MANUAL_TRIGGER_NODE_TYPE);
|
|
},
|
|
isFormTriggerNode(): boolean {
|
|
return Boolean(this.nodeType && this.nodeType.name === FORM_TRIGGER_NODE_TYPE);
|
|
},
|
|
isPollingTypeNode(): boolean {
|
|
return !!this.nodeType?.polling;
|
|
},
|
|
isScheduleTrigger(): boolean {
|
|
return !!this.nodeType?.group.includes('schedule');
|
|
},
|
|
isWebhookNode(): boolean {
|
|
return Boolean(this.nodeType && this.nodeType.name === WEBHOOK_NODE_TYPE);
|
|
},
|
|
isListeningForEvents(): boolean {
|
|
const waitingOnWebhook = this.workflowsStore.executionWaitingForWebhook;
|
|
const executedNode = this.workflowsStore.executedNode;
|
|
|
|
return (
|
|
this.node &&
|
|
!this.node.disabled &&
|
|
this.isTriggerNode &&
|
|
waitingOnWebhook &&
|
|
(!executedNode || executedNode === this.nodeName)
|
|
);
|
|
},
|
|
isListeningForWorkflowEvents(): boolean {
|
|
return (
|
|
this.nodeRunning &&
|
|
this.isTriggerNode &&
|
|
!this.isScheduleTrigger &&
|
|
!this.isManualTriggerNode
|
|
);
|
|
},
|
|
hasIssues(): boolean {
|
|
return Boolean(
|
|
this.node?.issues && (this.node.issues.parameters || this.node.issues.credentials),
|
|
);
|
|
},
|
|
disabledHint(): string {
|
|
if (this.isListeningForEvents) {
|
|
return '';
|
|
}
|
|
|
|
if (this.isTriggerNode && this.node.disabled) {
|
|
return this.$locale.baseText('ndv.execute.nodeIsDisabled');
|
|
}
|
|
|
|
if (this.isTriggerNode && this.hasIssues) {
|
|
const activeNode = this.ndvStore.activeNode;
|
|
if (activeNode && activeNode.name !== this.nodeName) {
|
|
return this.$locale.baseText('ndv.execute.fixPrevious');
|
|
}
|
|
|
|
return this.$locale.baseText('ndv.execute.requiredFieldsMissing');
|
|
}
|
|
|
|
if (this.workflowRunning && !this.nodeRunning) {
|
|
return this.$locale.baseText('ndv.execute.workflowAlreadyRunning');
|
|
}
|
|
|
|
return '';
|
|
},
|
|
buttonLabel(): string {
|
|
if (this.isListeningForEvents || this.isListeningForWorkflowEvents) {
|
|
return this.$locale.baseText('ndv.execute.stopListening');
|
|
}
|
|
|
|
if (this.label) {
|
|
return this.label;
|
|
}
|
|
|
|
if (this.isWebhookNode) {
|
|
return this.$locale.baseText('ndv.execute.listenForTestEvent');
|
|
}
|
|
|
|
if (this.isFormTriggerNode) {
|
|
return this.$locale.baseText('ndv.execute.testStep');
|
|
}
|
|
|
|
if (this.isPollingTypeNode || this.nodeType?.mockManualExecution) {
|
|
return this.$locale.baseText('ndv.execute.fetchEvent');
|
|
}
|
|
|
|
if (
|
|
this.isTriggerNode &&
|
|
!this.isScheduleTrigger &&
|
|
!this.isManualTriggerNode &&
|
|
!this.isFormTriggerNode
|
|
) {
|
|
return this.$locale.baseText('ndv.execute.listenForEvent');
|
|
}
|
|
|
|
return this.$locale.baseText('ndv.execute.executeNode');
|
|
},
|
|
},
|
|
methods: {
|
|
async stopWaitingForWebhook() {
|
|
try {
|
|
await this.workflowsStore.removeTestWebhook(this.workflowsStore.workflowId);
|
|
} catch (error) {
|
|
this.showError(error, this.$locale.baseText('ndv.execute.stopWaitingForWebhook.error'));
|
|
return;
|
|
}
|
|
},
|
|
|
|
async onClick() {
|
|
if (this.isListeningForEvents) {
|
|
await this.stopWaitingForWebhook();
|
|
} else if (this.isListeningForWorkflowEvents) {
|
|
this.$emit('stopExecution');
|
|
} else {
|
|
let shouldUnpinAndExecute = false;
|
|
if (this.hasPinData) {
|
|
const confirmResult = await this.confirm(
|
|
this.$locale.baseText('ndv.pinData.unpinAndExecute.description'),
|
|
this.$locale.baseText('ndv.pinData.unpinAndExecute.title'),
|
|
{
|
|
confirmButtonText: this.$locale.baseText('ndv.pinData.unpinAndExecute.confirm'),
|
|
cancelButtonText: this.$locale.baseText('ndv.pinData.unpinAndExecute.cancel'),
|
|
},
|
|
);
|
|
shouldUnpinAndExecute = confirmResult === MODAL_CONFIRM;
|
|
|
|
if (shouldUnpinAndExecute && this.node) {
|
|
this.unsetPinData(this.node, 'unpin-and-execute-modal');
|
|
}
|
|
}
|
|
|
|
if (!this.hasPinData || shouldUnpinAndExecute) {
|
|
const telemetryPayload = {
|
|
node_type: this.nodeType ? this.nodeType.name : null,
|
|
workflow_id: this.workflowsStore.workflowId,
|
|
source: this.telemetrySource,
|
|
session_id: this.ndvStore.sessionId,
|
|
};
|
|
this.$telemetry.track('User clicked execute node button', telemetryPayload);
|
|
await this.externalHooks.run('nodeExecuteButton.onClick', telemetryPayload);
|
|
|
|
await this.runWorkflow({
|
|
destinationNode: this.nodeName,
|
|
source: 'RunData.ExecuteNodeButton',
|
|
});
|
|
this.$emit('execute');
|
|
}
|
|
}
|
|
},
|
|
},
|
|
});
|
|
</script>
|