mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
* bring back overrides * fix input output label positions * simply update label positions * refactor a bunch * update min x to show items * hide overlay on connection * only delete target connection, add maximum to push nodes out * rename const * rename const * set new insert position * fix insert behavior * update position handling * show arrow along with label * update connector * set endpoint styles * update pattern * push nodes up / down in case of if node * set position in switch * only one action at a time * add custom flow chart type * select start node by default when opening new workflow * add enter delay * fix delete bug * change connection type * add offset for if/switch/merge * fix gap * fix drag issue * implement new states * update disabled state * add selected state * make selects faster * update positioning * truncate when selected * remove offset for actions * fix icon scaling * refactor js plumb * fix looping behavior at close distance * lock version * change background to dots * update endpoints styling * increase spacing * udpate node z-index * fix output label positions * fix output label positions * reset location * add label offset * update border radius * fix height issue * fix parallaxing issue * fix zoomout issue * add success z-index * clean up js file * add package lock * fix z-index bug * update dot grid * update zoom level * set values, increase grid size * fix drop position * prevent duplicate connections * fix stub * use localstorage overrides for colors * add colors to system * revert no longer needed changes * revert no longer needed changes * add canvas colors * add canvas colors * use variable for id * force type * refactor helpers * add label constants * refactor func * refactor * fix * refactor * clean up css * refactor setzoom level * refactor * refactor * refactor func * remove scope * remove localstorage caching * clean up imports * update zero case * add delete connection * update selected state * add base type, remove straight line * add stub offset back * rename param * add label offset * update font size of items * move up label * fix error state while executing * disrespect stubs * check for errors * refactor position * clean up extra space * make entire node connectable * Revert "make entire node connectable" e304f7c5b8ff1b41268450c60ca4bc3b2ada5d4a * always show border * add border to zoom buttons * update spacing * update colors * allow connecting to entire node * fix pull conn active * two line names * apply select to all lines * increase input margin * override target pos * reset conn after pull * fix types * update orientation * fix up connectors snapping * hide arrow on pull * update overrides for connectors * change text * update pull colors * set to 1 line when selected * fix executions bug * build * refactor node component * remove comment * refactor more * remove prop * fix build issue * fix input drag bug in executions * reset offset * update select background * handle issue when endpoints are not set * fix connection aborted issue * add try catch to help show errors * wrap bind with try/catch * set default styles * reset pos despite zoom * add more checks * clean up impl * update icon * handle unknown types * hide items on init * fix importing unknown types with credentials * change opacity * push up item label * update color * update label class and colors * add to drop distance * fix z-index to match node * disable eslint * fix lasso tool selection * update background color * update waiting state * update tooltip positions * update wait node border * fix selection bug mostly * if selected, move above other nodes * add line through disabled nodes * remove node color option * move label above connection * success color for line through * update options index * hide waiting icon when disabled * fix gmail icon * refactor icons * clear execution data on disable/delete * fix selected node * fix executing behavior * optional __meta * set grid size * remove default color * remove node color * add comments * comments * add comments * remove empty space * update comment * refactor uuids * fix type issue * Revert "fix type issue" 9523b34f9604f75253ae0631f29fc27267a99d78 * Revert "fix type issue" 9523b34f9604f75253ae0631f29fc27267a99d78 * Revert "refactor uuids" 07f6848065cb9a98475fddb8330846106f9e70ad * fix build issues * refactor * update uuid * child nodes * skip nodes behind when pushing in loop * shift output icon for switch node * don't show output if waiting * waiting on init * build * change to bezier * revert connector change * add bezier type * fix snapping * clean up impl * refactor func * make const * rename type * refactor to simplify * Revert "refactor to simplify" 2db0ed504c752c33de975370d86a83a04ffcda14 * enable flowchart mode * clean up flowchart type * refactor type * merge types * configure curviness * set in localstorage * fix straight line arrow bug * show arrow when pulling * refactor / simplify * fix target gap in bezier * refactor target gap * add comments * add comment * fix dragging connections * fix bug when moving connection * update comment * rename file * update values * update minor * update straight line box * clean up conn types * clean up z-indexes * move color filters to node icon * update background color * update to use grid size value * fix endpoint offsets * set yspan range lower * remove overlays when moving conn * prevent unwanted connections * fix messed up connections * remove console log * clear execution issues on workflow run * update corner radius * fix drag/delete bug * increase offset * update disabled state * address comments * refactor * refactor func * ⚡ Add full license text to N8nCustomConnectorType.js Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
226 lines
5.4 KiB
Vue
226 lines
5.4 KiB
Vue
<template>
|
|
<div v-if="webhooksNode.length" class="webhoooks">
|
|
<div class="clickable headline" :class="{expanded: !isMinimized}" @click="isMinimized=!isMinimized" :title="isMinimized ? 'Click to display Webhook URLs' : 'Click to hide Webhook URLs'">
|
|
<font-awesome-icon icon="angle-down" class="minimize-button minimize-icon" />
|
|
Webhook URLs
|
|
</div>
|
|
<el-collapse-transition>
|
|
<div class="node-webhooks" v-if="!isMinimized">
|
|
<div class="url-selection">
|
|
<el-row>
|
|
<el-col :span="24">
|
|
<el-radio-group v-model="showUrlFor" size="mini">
|
|
<el-radio-button label="test">Test URL</el-radio-button>
|
|
<el-radio-button label="production">Production URL</el-radio-button>
|
|
</el-radio-group>
|
|
</el-col>
|
|
</el-row>
|
|
</div>
|
|
|
|
<n8n-tooltip v-for="(webhook, index) in webhooksNode" :key="index" class="item" content="Click to copy Webhook URL" placement="left">
|
|
<div class="webhook-wrapper">
|
|
<div class="http-field">
|
|
<div class="http-method">
|
|
{{getValue(webhook, 'httpMethod')}}<br />
|
|
</div>
|
|
</div>
|
|
<div class="url-field">
|
|
<div class="webhook-url left-ellipsis clickable" @click="copyWebhookUrl(webhook)">
|
|
{{getWebhookUrlDisplay(webhook)}}<br />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</n8n-tooltip>
|
|
|
|
</div>
|
|
</el-collapse-transition>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import {
|
|
INodeTypeDescription,
|
|
IWebhookDescription,
|
|
NodeHelpers,
|
|
} from 'n8n-workflow';
|
|
|
|
import { WEBHOOK_NODE_TYPE } from '@/constants';
|
|
import { copyPaste } from '@/components/mixins/copyPaste';
|
|
import { showMessage } from '@/components/mixins/showMessage';
|
|
import { workflowHelpers } from '@/components/mixins/workflowHelpers';
|
|
|
|
import mixins from 'vue-typed-mixins';
|
|
|
|
export default mixins(
|
|
copyPaste,
|
|
showMessage,
|
|
workflowHelpers,
|
|
)
|
|
.extend({
|
|
name: 'NodeWebhooks',
|
|
props: [
|
|
'node', // NodeUi
|
|
'nodeType', // INodeTypeDescription
|
|
],
|
|
data () {
|
|
return {
|
|
isMinimized: this.nodeType && this.nodeType.name !== WEBHOOK_NODE_TYPE,
|
|
showUrlFor: 'test',
|
|
};
|
|
},
|
|
computed: {
|
|
webhooksNode (): IWebhookDescription[] {
|
|
if (this.nodeType === null || this.nodeType.webhooks === undefined) {
|
|
return [];
|
|
}
|
|
|
|
return (this.nodeType as INodeTypeDescription).webhooks!.filter(webhookData => webhookData.restartWebhook !== true);
|
|
},
|
|
},
|
|
methods: {
|
|
copyWebhookUrl (webhookData: IWebhookDescription): void {
|
|
const webhookUrl = this.getWebhookUrl(webhookData);
|
|
this.copyToClipboard(webhookUrl);
|
|
|
|
this.$showMessage({
|
|
title: 'Copied',
|
|
message: `The webhook URL was successfully copied!`,
|
|
type: 'success',
|
|
});
|
|
},
|
|
getValue (webhookData: IWebhookDescription, key: string): string {
|
|
if (webhookData[key] === undefined) {
|
|
return 'empty';
|
|
}
|
|
try {
|
|
return this.resolveExpression(webhookData[key] as string) as string;
|
|
} catch (e) {
|
|
return '[INVALID EXPRESSION]';
|
|
}
|
|
},
|
|
getWebhookUrl (webhookData: IWebhookDescription): string {
|
|
if (webhookData.restartWebhook === true) {
|
|
return '$resumeWebhookUrl';
|
|
}
|
|
let baseUrl = this.$store.getters.getWebhookUrl;
|
|
if (this.showUrlFor === 'test') {
|
|
baseUrl = this.$store.getters.getWebhookTestUrl;
|
|
}
|
|
|
|
const workflowId = this.$store.getters.workflowId;
|
|
const path = this.getValue(webhookData, 'path');
|
|
const isFullPath = this.getValue(webhookData, 'isFullPath') as unknown as boolean || false;
|
|
|
|
return NodeHelpers.getNodeWebhookUrl(baseUrl, workflowId, this.node, path, isFullPath);
|
|
},
|
|
getWebhookUrlDisplay (webhookData: IWebhookDescription): string {
|
|
return this.getWebhookUrl(webhookData);
|
|
},
|
|
},
|
|
watch: {
|
|
node () {
|
|
this.isMinimized = this.nodeType.name !== WEBHOOK_NODE_TYPE;
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
.webhoooks {
|
|
padding-bottom: var(--spacing-xs);
|
|
margin: var(--spacing-xs) 0;
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
.headline {
|
|
color: $--color-primary;
|
|
font-weight: 600;
|
|
font-size: var(--font-size-2xs);
|
|
}
|
|
}
|
|
|
|
.http-field {
|
|
position: absolute;
|
|
width: 50px;
|
|
display: inline-block;
|
|
top: calc(50% - 8px)
|
|
}
|
|
|
|
.http-method {
|
|
background-color: green;
|
|
width: 40px;
|
|
height: 16px;
|
|
line-height: 16px;
|
|
margin-left: 5px;
|
|
text-align: center;
|
|
border-radius: 2px;
|
|
font-size: var(--font-size-2xs);
|
|
font-weight: var(--font-weight-bold);
|
|
color: #fff;
|
|
}
|
|
|
|
.minimize-icon {
|
|
font-size: 1.3em;
|
|
margin-right: 0.5em;
|
|
}
|
|
|
|
.mode-selection-headline {
|
|
line-height: 1.8em;
|
|
}
|
|
|
|
.node-webhooks {
|
|
margin-left: 1em;
|
|
}
|
|
|
|
.url-field {
|
|
display: inline-block;
|
|
width: calc(100% - 60px);
|
|
margin-left: 55px;
|
|
}
|
|
|
|
.url-selection {
|
|
margin-top: var(--spacing-xs);
|
|
}
|
|
|
|
.minimize-button {
|
|
display: inline-block;
|
|
-webkit-transition-duration: 0.5s;
|
|
-moz-transition-duration: 0.5s;
|
|
-o-transition-duration: 0.5s;
|
|
transition-duration: 0.5s;
|
|
|
|
-webkit-transition-property: -webkit-transform;
|
|
-moz-transition-property: -moz-transform;
|
|
-o-transition-property: -o-transform;
|
|
transition-property: transform;
|
|
}
|
|
.expanded .minimize-button {
|
|
-webkit-transform: rotate(180deg);
|
|
-moz-transform: rotate(180deg);
|
|
-o-transform: rotate(180deg);
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.webhook-url {
|
|
position: relative;
|
|
top: 0;
|
|
width: 100%;
|
|
font-size: var(--font-size-2xs);
|
|
white-space: normal;
|
|
overflow: visible;
|
|
text-overflow: initial;
|
|
color: #404040;
|
|
text-align: left;
|
|
direction: ltr;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.webhook-wrapper {
|
|
line-height: 1.5;
|
|
position: relative;
|
|
margin-top: var(--spacing-xs);
|
|
background-color: #fff;
|
|
border-radius: 3px;
|
|
}
|
|
</style>
|