mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 02:51:14 +00:00
* feat: Added vite.js dependencies. * chore: Removed tests folder to follow same structure as design-system * chore: Removed unused testing config. * chore: Created vite.js index.html * refactor: Updated scss structure and imports. * refactor: Updated workflow building. * fix: Cleared up all workflow dependency cycles. Added proper package.json imports config. * feat: Got a working build using Vite. Need to fix issues next. * fix: Progress! Getting process.env error. * fix: Changed process.env to import.meta.env. * fix: Fixed circular imports that used require(). Fixed monaco editor. * chore: Removed commented code. * chore: Cleaned up package.json * feat: Made necessary changes to replace base path in css files. * feat: Serve CSS files for `editor-ui` Vite migration (#4069) ⚡ Serve CSS files for Vite migration * chore: Fixed package-lock.json. * fix: Fixed build after centralized tsconfig update. * fix: Removed lodash-es replacement. * fix: Commented out vitest test command. * style: Fixed linting issues. * fix: Added lodash-es hotfix back. * chore: Updated package-lock.json * refactor: Renamed all n8n scss variables to no longer be defined as private. * feat(editor): add application-wide el-button replacement. * fix(editor): Fix import in page alert after merge. * chore(editor): update package-lock.json. * fix: Case sensitive lodash-es replacement for vue-agile. * fix: add alias for lodash-es camelcase import. * fix: add patch-package support for fixing quill * feat: add patch-package on postinstall * fix: update quill patch path. * refactor: rename quill patch * fix: update quill version. * fix: update quill patch * fix: fix linting rules after installing eslint in design-system * fix: update date picker button to have primary color * test: update callout component snapshots * fix(editor): fix linting issues in editor after enabling eslint * fix(cli): add /assets/* to auth ignore endpoints in server * chore: update package-lock.json * chore: update package-lock.json * fix(editor): fix linting issues * feat: add vite-legacy support * fix: update workflow package interface imports to type imports. * chore: update package-lock.json * fix(editor) fix importing translations other than english * fix(editor): remove test command until vitest is added * fix: increase memory allocation for vite build * fix: add patch-package patches to n8n-custom docker build * fix: add performance and load time improvements * fix: add proper typing to setNodeType * chore: update package-lock.json * style: use generic type for reduce in setNodeType Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
209 lines
5.0 KiB
Vue
209 lines
5.0 KiB
Vue
<template>
|
|
<div v-if="webhooksNode.length" class="webhooks">
|
|
<div class="clickable headline" :class="{expanded: !isMinimized}" @click="isMinimized=!isMinimized" :title="isMinimized ? $locale.baseText('nodeWebhooks.clickToDisplayWebhookUrls') : $locale.baseText('nodeWebhooks.clickToHideWebhookUrls')">
|
|
<font-awesome-icon icon="angle-down" class="minimize-button minimize-icon" />
|
|
{{ $locale.baseText('nodeWebhooks.webhookUrls') }}
|
|
</div>
|
|
<el-collapse-transition>
|
|
<div class="node-webhooks" v-if="!isMinimized">
|
|
<div class="url-selection">
|
|
<el-row>
|
|
<el-col :span="24">
|
|
<n8n-radio-buttons
|
|
v-model="showUrlFor"
|
|
:options="[
|
|
{ label: this.$locale.baseText('nodeWebhooks.testUrl'), value: 'test'},
|
|
{ label: this.$locale.baseText('nodeWebhooks.productionUrl'), value: 'production'},
|
|
]"
|
|
/>
|
|
</el-col>
|
|
</el-row>
|
|
</div>
|
|
|
|
<n8n-tooltip v-for="(webhook, index) in webhooksNode" :key="index" class="item" :content="$locale.baseText('nodeWebhooks.clickToCopyWebhookUrls')" placement="left">
|
|
<div class="webhook-wrapper">
|
|
<div class="http-field">
|
|
<div class="http-method">
|
|
{{getWebhookExpressionValue(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,
|
|
} 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.getWebhookUrlDisplay(webhookData);
|
|
this.copyToClipboard(webhookUrl);
|
|
|
|
this.$showMessage({
|
|
title: this.$locale.baseText('nodeWebhooks.showMessage.title'),
|
|
type: 'success',
|
|
});
|
|
this.$telemetry.track('User copied webhook URL', {
|
|
pane: 'parameters',
|
|
type: `${this.showUrlFor} url`,
|
|
});
|
|
},
|
|
getWebhookUrlDisplay (webhookData: IWebhookDescription): string {
|
|
if (this.node) {
|
|
return this.getWebhookUrl(webhookData, this.node, this.showUrlFor);
|
|
}
|
|
return '';
|
|
},
|
|
},
|
|
watch: {
|
|
node () {
|
|
this.isMinimized = this.nodeType.name !== WEBHOOK_NODE_TYPE;
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
.webhooks {
|
|
padding-bottom: var(--spacing-xs);
|
|
margin: var(--spacing-xs) 0;
|
|
border-bottom: 1px solid var(--color-text-lighter);
|
|
|
|
.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: var(--color-foreground-xdark);
|
|
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: var(--color-foreground-xlight);
|
|
}
|
|
|
|
.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: var(--color-text-dark);
|
|
text-align: left;
|
|
direction: ltr;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.webhook-wrapper {
|
|
line-height: 1.5;
|
|
position: relative;
|
|
margin-top: var(--spacing-xs);
|
|
background-color: var(--color-foreground-xlight);
|
|
border-radius: 3px;
|
|
}
|
|
</style>
|