2019-06-23 03:35:23 -07:00
|
|
|
<template>
|
2022-05-23 08:56:15 -07:00
|
|
|
<div :class="{'node-settings': true, 'dragging': dragging}" @keydown.stop>
|
2022-04-11 06:12:13 -07:00
|
|
|
<div :class="$style.header">
|
|
|
|
<div class="header-side-menu">
|
2022-06-20 12:39:24 -07:00
|
|
|
<NodeTitle class="node-name" :value="node && node.name" :nodeType="nodeType" @input="nameChanged" :readOnly="isReadOnly"></NodeTitle>
|
2022-04-11 06:12:13 -07:00
|
|
|
<div
|
|
|
|
v-if="!isReadOnly"
|
|
|
|
>
|
2022-07-20 08:50:39 -07:00
|
|
|
<NodeExecuteButton
|
|
|
|
:nodeName="node.name"
|
|
|
|
:disabled="outputPanelEditMode.enabled"
|
|
|
|
size="small"
|
|
|
|
telemetrySource="parameters"
|
|
|
|
@execute="onNodeExecute"
|
|
|
|
/>
|
2022-04-11 06:12:13 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-07-20 07:24:03 -07:00
|
|
|
<NodeSettingsTabs v-if="node && nodeValid" v-model="openPanel" :nodeType="nodeType" :sessionId="sessionId" />
|
2019-06-23 03:35:23 -07:00
|
|
|
</div>
|
|
|
|
<div class="node-is-not-valid" v-if="node && !nodeValid">
|
2022-07-20 07:24:03 -07:00
|
|
|
<p :class="$style.warningIcon">
|
|
|
|
<font-awesome-icon icon="exclamation-triangle" />
|
|
|
|
</p>
|
|
|
|
<div class="missingNodeTitleContainer mt-s mb-xs">
|
|
|
|
<n8n-text size="large" color="text-dark" bold>
|
|
|
|
{{ $locale.baseText('nodeSettings.communityNodeUnknown.title') }}
|
|
|
|
</n8n-text>
|
|
|
|
</div>
|
|
|
|
<div v-if="isCommunityNode" :class="$style.descriptionContainer">
|
|
|
|
<div class="mb-l">
|
|
|
|
<span
|
|
|
|
v-html="$locale.baseText('nodeSettings.communityNodeUnknown.description', { interpolate: { packageName: node.type.split('.')[0] } })"
|
|
|
|
@click="onMissingNodeTextClick"
|
|
|
|
>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<n8n-link
|
|
|
|
:to="COMMUNITY_NODES_INSTALLATION_DOCS_URL"
|
|
|
|
@click="onMissingNodeLearnMoreLinkClick"
|
|
|
|
>
|
|
|
|
{{ $locale.baseText('nodeSettings.communityNodeUnknown.installLink.text') }}
|
|
|
|
</n8n-link>
|
|
|
|
</div>
|
|
|
|
<span v-else
|
|
|
|
v-html="
|
|
|
|
$locale.baseText('nodeSettings.nodeTypeUnknown.description',
|
|
|
|
{
|
|
|
|
interpolate: { docURL: CUSTOM_NODES_DOCS_URL }
|
|
|
|
})
|
|
|
|
">
|
|
|
|
</span>
|
2019-06-23 03:35:23 -07:00
|
|
|
</div>
|
|
|
|
<div class="node-parameters-wrapper" v-if="node && nodeValid">
|
2022-04-11 06:12:13 -07:00
|
|
|
<div v-show="openPanel === 'params'">
|
2022-05-24 02:36:19 -07:00
|
|
|
<node-webhooks
|
|
|
|
:node="node"
|
|
|
|
:nodeType="nodeType"
|
|
|
|
/>
|
|
|
|
<parameter-input-list
|
|
|
|
:parameters="parametersNoneSetting"
|
|
|
|
:hideDelete="true"
|
|
|
|
:nodeValues="nodeValues" path="parameters" @valueChanged="valueChanged"
|
2022-06-20 12:39:24 -07:00
|
|
|
@activate="onWorkflowActivate"
|
2022-05-24 02:36:19 -07:00
|
|
|
>
|
|
|
|
<node-credentials
|
|
|
|
:node="node"
|
|
|
|
@credentialSelected="credentialSelected"
|
|
|
|
/>
|
|
|
|
</parameter-input-list>
|
2022-04-11 06:12:13 -07:00
|
|
|
<div v-if="parametersNoneSetting.length === 0" class="no-parameters">
|
|
|
|
<n8n-text>
|
2022-05-24 02:36:19 -07:00
|
|
|
{{ $locale.baseText('nodeSettings.thisNodeDoesNotHaveAnyParameters') }}
|
2022-04-11 06:12:13 -07:00
|
|
|
</n8n-text>
|
|
|
|
</div>
|
2022-05-24 02:36:19 -07:00
|
|
|
|
|
|
|
<div v-if="isCustomApiCallSelected(nodeValues)" class="parameter-item parameter-notice">
|
|
|
|
<n8n-notice
|
|
|
|
:content="$locale.baseText(
|
|
|
|
'nodeSettings.useTheHttpRequestNode',
|
|
|
|
{ interpolate: { nodeTypeDisplayName: nodeType.displayName } }
|
|
|
|
)"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
2022-04-11 06:12:13 -07:00
|
|
|
</div>
|
|
|
|
<div v-show="openPanel === 'settings'">
|
|
|
|
<parameter-input-list :parameters="parametersSetting" :nodeValues="nodeValues" path="parameters" @valueChanged="valueChanged" />
|
2022-06-02 00:27:03 -07:00
|
|
|
<parameter-input-list :parameters="nodeSettings" :hideDelete="true" :nodeValues="nodeValues" path="" @valueChanged="valueChanged" />
|
2022-04-11 06:12:13 -07:00
|
|
|
</div>
|
2019-06-23 03:35:23 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import {
|
|
|
|
INodeTypeDescription,
|
|
|
|
INodeParameters,
|
|
|
|
INodeProperties,
|
|
|
|
NodeHelpers,
|
|
|
|
NodeParameterValue,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
import {
|
|
|
|
INodeUi,
|
|
|
|
INodeUpdatePropertiesInformation,
|
|
|
|
IUpdateInformation,
|
|
|
|
} from '@/Interface';
|
|
|
|
|
2022-07-20 07:24:03 -07:00
|
|
|
import {
|
|
|
|
COMMUNITY_NODES_INSTALLATION_DOCS_URL,
|
|
|
|
CUSTOM_NODES_DOCS_URL,
|
|
|
|
} from '../constants';
|
|
|
|
|
2022-04-11 06:12:13 -07:00
|
|
|
import NodeTitle from '@/components/NodeTitle.vue';
|
2019-06-23 03:35:23 -07:00
|
|
|
import ParameterInputFull from '@/components/ParameterInputFull.vue';
|
|
|
|
import ParameterInputList from '@/components/ParameterInputList.vue';
|
|
|
|
import NodeCredentials from '@/components/NodeCredentials.vue';
|
2022-05-23 08:56:15 -07:00
|
|
|
import NodeSettingsTabs from '@/components/NodeSettingsTabs.vue';
|
2019-06-23 03:35:23 -07:00
|
|
|
import NodeWebhooks from '@/components/NodeWebhooks.vue';
|
2020-01-23 15:57:34 -08:00
|
|
|
import { get, set, unset } from 'lodash';
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2021-05-11 20:12:53 -07:00
|
|
|
import { externalHooks } from '@/components/mixins/externalHooks';
|
2019-06-23 03:35:23 -07:00
|
|
|
import { genericHelpers } from '@/components/mixins/genericHelpers';
|
|
|
|
import { nodeHelpers } from '@/components/mixins/nodeHelpers';
|
|
|
|
|
|
|
|
import mixins from 'vue-typed-mixins';
|
2022-04-11 06:12:13 -07:00
|
|
|
import NodeExecuteButton from './NodeExecuteButton.vue';
|
2022-07-20 07:24:03 -07:00
|
|
|
import { isCommunityPackageName } from './helpers';
|
2019-06-23 03:35:23 -07:00
|
|
|
|
|
|
|
export default mixins(
|
2021-05-11 20:12:53 -07:00
|
|
|
externalHooks,
|
2019-06-23 03:35:23 -07:00
|
|
|
genericHelpers,
|
|
|
|
nodeHelpers,
|
|
|
|
)
|
|
|
|
.extend({
|
|
|
|
name: 'NodeSettings',
|
|
|
|
components: {
|
2022-04-11 06:12:13 -07:00
|
|
|
NodeTitle,
|
2019-06-23 03:35:23 -07:00
|
|
|
NodeCredentials,
|
|
|
|
ParameterInputFull,
|
|
|
|
ParameterInputList,
|
2022-05-23 08:56:15 -07:00
|
|
|
NodeSettingsTabs,
|
2019-06-23 03:35:23 -07:00
|
|
|
NodeWebhooks,
|
2022-04-11 06:12:13 -07:00
|
|
|
NodeExecuteButton,
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
nodeType (): INodeTypeDescription | null {
|
|
|
|
if (this.node) {
|
2021-09-21 10:38:24 -07:00
|
|
|
return this.$store.getters.nodeType(this.node.type, this.node.typeVersion);
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
},
|
2021-11-18 02:32:13 -08:00
|
|
|
nodeTypeName(): string {
|
|
|
|
if (this.nodeType) {
|
2021-12-15 04:16:53 -08:00
|
|
|
const shortNodeType = this.$locale.shortNodeType(this.nodeType.name);
|
2021-11-18 02:32:13 -08:00
|
|
|
|
2021-12-15 04:16:53 -08:00
|
|
|
return this.$locale.headerText({
|
2021-11-18 02:32:13 -08:00
|
|
|
key: `headers.${shortNodeType}.displayName`,
|
|
|
|
fallback: this.nodeType.name,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return '';
|
|
|
|
},
|
2019-09-01 13:25:54 -07:00
|
|
|
nodeTypeDescription (): string {
|
2020-01-04 20:51:54 -08:00
|
|
|
if (this.nodeType && this.nodeType.description) {
|
2021-12-15 04:16:53 -08:00
|
|
|
const shortNodeType = this.$locale.shortNodeType(this.nodeType.name);
|
2021-11-18 02:32:13 -08:00
|
|
|
|
2021-12-15 04:16:53 -08:00
|
|
|
return this.$locale.headerText({
|
2021-11-18 02:32:13 -08:00
|
|
|
key: `headers.${shortNodeType}.description`,
|
|
|
|
fallback: this.nodeType.description,
|
|
|
|
});
|
2019-09-01 13:25:54 -07:00
|
|
|
} else {
|
2021-12-15 04:16:53 -08:00
|
|
|
return this.$locale.baseText('nodeSettings.noDescriptionFound');
|
2019-09-01 13:25:54 -07:00
|
|
|
}
|
|
|
|
},
|
2019-06-23 03:35:23 -07:00
|
|
|
headerStyle (): object {
|
|
|
|
if (!this.node) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
'background-color': this.node.color,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
node (): INodeUi {
|
|
|
|
return this.$store.getters.activeNode;
|
|
|
|
},
|
|
|
|
parametersSetting (): INodeProperties[] {
|
|
|
|
return this.parameters.filter((item) => {
|
|
|
|
return item.isNodeSetting;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
parametersNoneSetting (): INodeProperties[] {
|
|
|
|
return this.parameters.filter((item) => {
|
|
|
|
return !item.isNodeSetting;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
parameters (): INodeProperties[] {
|
|
|
|
if (this.nodeType === null) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.nodeType.properties;
|
|
|
|
},
|
2022-07-20 08:50:39 -07:00
|
|
|
outputPanelEditMode(): { enabled: boolean; value: string; } {
|
|
|
|
return this.$store.getters['ui/outputPanelEditMode'];
|
|
|
|
},
|
2022-07-20 07:24:03 -07:00
|
|
|
isCommunityNode(): boolean {
|
|
|
|
return isCommunityPackageName(this.node.type);
|
|
|
|
},
|
2022-04-11 06:12:13 -07:00
|
|
|
},
|
|
|
|
props: {
|
|
|
|
eventBus: {
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
2022-05-23 08:56:15 -07:00
|
|
|
dragging: {
|
|
|
|
type: Boolean,
|
|
|
|
},
|
|
|
|
sessionId: {
|
|
|
|
type: String,
|
|
|
|
},
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
nodeValid: true,
|
|
|
|
nodeColor: null,
|
2022-04-11 06:12:13 -07:00
|
|
|
openPanel: 'params',
|
2019-06-23 03:35:23 -07:00
|
|
|
nodeValues: {
|
|
|
|
color: '#ff0000',
|
2020-04-12 10:58:30 -07:00
|
|
|
alwaysOutputData: false,
|
2020-08-08 11:31:04 -07:00
|
|
|
executeOnce: false,
|
2020-05-05 08:34:12 -07:00
|
|
|
notesInFlow: false,
|
2019-06-23 03:35:23 -07:00
|
|
|
continueOnFail: false,
|
2019-07-18 10:26:16 -07:00
|
|
|
retryOnFail: false,
|
|
|
|
maxTries: 3,
|
|
|
|
waitBetweenTries: 1000,
|
2019-06-23 03:35:23 -07:00
|
|
|
notes: '',
|
|
|
|
parameters: {},
|
|
|
|
} as INodeParameters,
|
2019-07-18 10:26:16 -07:00
|
|
|
|
|
|
|
nodeSettings: [
|
2020-04-12 10:58:30 -07:00
|
|
|
{
|
2021-12-15 04:16:53 -08:00
|
|
|
displayName: this.$locale.baseText('nodeSettings.alwaysOutputData.displayName'),
|
2020-04-12 10:58:30 -07:00
|
|
|
name: 'alwaysOutputData',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
noDataExpression: true,
|
2021-12-15 04:16:53 -08:00
|
|
|
description: this.$locale.baseText('nodeSettings.alwaysOutputData.description'),
|
2020-04-12 10:58:30 -07:00
|
|
|
},
|
2020-08-08 11:31:04 -07:00
|
|
|
{
|
2021-12-15 04:16:53 -08:00
|
|
|
displayName: this.$locale.baseText('nodeSettings.executeOnce.displayName'),
|
2020-08-08 11:31:04 -07:00
|
|
|
name: 'executeOnce',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
noDataExpression: true,
|
2021-12-15 04:16:53 -08:00
|
|
|
description: this.$locale.baseText('nodeSettings.executeOnce.description'),
|
2020-08-08 11:31:04 -07:00
|
|
|
},
|
2019-07-18 10:26:16 -07:00
|
|
|
{
|
2021-12-15 04:16:53 -08:00
|
|
|
displayName: this.$locale.baseText('nodeSettings.retryOnFail.displayName'),
|
2019-07-18 10:26:16 -07:00
|
|
|
name: 'retryOnFail',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
noDataExpression: true,
|
2021-12-15 04:16:53 -08:00
|
|
|
description: this.$locale.baseText('nodeSettings.retryOnFail.description'),
|
2019-07-18 10:26:16 -07:00
|
|
|
},
|
|
|
|
{
|
2021-12-15 04:16:53 -08:00
|
|
|
displayName: this.$locale.baseText('nodeSettings.maxTries.displayName'),
|
2019-07-18 10:26:16 -07:00
|
|
|
name: 'maxTries',
|
|
|
|
type: 'number',
|
|
|
|
typeOptions: {
|
|
|
|
minValue: 2,
|
|
|
|
maxValue: 5,
|
|
|
|
},
|
|
|
|
default: 3,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
retryOnFail: [
|
|
|
|
true,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
noDataExpression: true,
|
2021-12-15 04:16:53 -08:00
|
|
|
description: this.$locale.baseText('nodeSettings.maxTries.description'),
|
2019-07-18 10:26:16 -07:00
|
|
|
},
|
|
|
|
{
|
2021-12-15 04:16:53 -08:00
|
|
|
displayName: this.$locale.baseText('nodeSettings.waitBetweenTries.displayName'),
|
2019-07-18 10:26:16 -07:00
|
|
|
name: 'waitBetweenTries',
|
|
|
|
type: 'number',
|
|
|
|
typeOptions: {
|
|
|
|
minValue: 0,
|
|
|
|
maxValue: 5000,
|
|
|
|
},
|
|
|
|
default: 1000,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
retryOnFail: [
|
|
|
|
true,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
noDataExpression: true,
|
2021-12-15 04:16:53 -08:00
|
|
|
description: this.$locale.baseText('nodeSettings.waitBetweenTries.description'),
|
2019-07-18 10:26:16 -07:00
|
|
|
},
|
|
|
|
{
|
2021-12-15 04:16:53 -08:00
|
|
|
displayName: this.$locale.baseText('nodeSettings.continueOnFail.displayName'),
|
2019-07-18 10:26:16 -07:00
|
|
|
name: 'continueOnFail',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
noDataExpression: true,
|
2021-12-15 04:16:53 -08:00
|
|
|
description: this.$locale.baseText('nodeSettings.continueOnFail.description'),
|
2019-07-18 10:26:16 -07:00
|
|
|
},
|
2022-06-03 08:43:37 -07:00
|
|
|
{
|
|
|
|
displayName: this.$locale.baseText('nodeSettings.notes.displayName'),
|
|
|
|
name: 'notes',
|
|
|
|
type: 'string',
|
|
|
|
typeOptions: {
|
|
|
|
rows: 5,
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
noDataExpression: true,
|
|
|
|
description: this.$locale.baseText('nodeSettings.notes.description'),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: this.$locale.baseText('nodeSettings.notesInFlow.displayName'),
|
|
|
|
name: 'notesInFlow',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
noDataExpression: true,
|
|
|
|
description: this.$locale.baseText('nodeSettings.notesInFlow.description'),
|
|
|
|
},
|
2019-07-18 10:26:16 -07:00
|
|
|
] as INodeProperties[],
|
2022-07-20 07:24:03 -07:00
|
|
|
COMMUNITY_NODES_INSTALLATION_DOCS_URL,
|
|
|
|
CUSTOM_NODES_DOCS_URL,
|
2019-06-23 03:35:23 -07:00
|
|
|
};
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
node (newNode, oldNode) {
|
|
|
|
this.setNodeValues();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
2022-06-20 12:39:24 -07:00
|
|
|
onWorkflowActivate() {
|
|
|
|
this.$emit('activate');
|
|
|
|
},
|
2022-04-11 06:12:13 -07:00
|
|
|
onNodeExecute () {
|
|
|
|
this.$emit('execute');
|
|
|
|
},
|
2019-06-23 03:35:23 -07:00
|
|
|
setValue (name: string, value: NodeParameterValue) {
|
|
|
|
const nameParts = name.split('.');
|
|
|
|
let lastNamePart: string | undefined = nameParts.pop();
|
|
|
|
|
|
|
|
let isArray = false;
|
|
|
|
if (lastNamePart !== undefined && lastNamePart.includes('[')) {
|
|
|
|
// It incldues an index so we have to extract it
|
|
|
|
const lastNameParts = lastNamePart.match(/(.*)\[(\d+)\]$/);
|
|
|
|
if (lastNameParts) {
|
|
|
|
nameParts.push(lastNameParts[1]);
|
|
|
|
lastNamePart = lastNameParts[2];
|
|
|
|
isArray = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the value via Vue.set that everything updates correctly in the UI
|
|
|
|
if (nameParts.length === 0) {
|
|
|
|
// Data is on top level
|
|
|
|
if (value === null) {
|
|
|
|
// Property should be deleted
|
|
|
|
// @ts-ignore
|
|
|
|
Vue.delete(this.nodeValues, lastNamePart);
|
|
|
|
} else {
|
|
|
|
// Value should be set
|
|
|
|
// @ts-ignore
|
|
|
|
Vue.set(this.nodeValues, lastNamePart, value);
|
|
|
|
}
|
|
|
|
} else {
|
2019-07-14 05:10:16 -07:00
|
|
|
// Data is on lower level
|
2019-06-23 03:35:23 -07:00
|
|
|
if (value === null) {
|
|
|
|
// Property should be deleted
|
|
|
|
// @ts-ignore
|
|
|
|
let tempValue = get(this.nodeValues, nameParts.join('.')) as INodeParameters | NodeParameters[];
|
|
|
|
Vue.delete(tempValue as object, lastNamePart as string);
|
|
|
|
|
|
|
|
if (isArray === true && (tempValue as INodeParameters[]).length === 0) {
|
|
|
|
// If a value from an array got delete and no values are left
|
|
|
|
// delete also the parent
|
|
|
|
lastNamePart = nameParts.pop();
|
|
|
|
tempValue = get(this.nodeValues, nameParts.join('.')) as INodeParameters;
|
|
|
|
Vue.delete(tempValue as object, lastNamePart as string);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Value should be set
|
|
|
|
if (typeof value === 'object') {
|
|
|
|
// @ts-ignore
|
|
|
|
Vue.set(get(this.nodeValues, nameParts.join('.')), lastNamePart, JSON.parse(JSON.stringify(value)));
|
|
|
|
} else {
|
|
|
|
// @ts-ignore
|
|
|
|
Vue.set(get(this.nodeValues, nameParts.join('.')), lastNamePart, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
credentialSelected (updateInformation: INodeUpdatePropertiesInformation) {
|
|
|
|
// Update the values on the node
|
|
|
|
this.$store.commit('updateNodeProperties', updateInformation);
|
|
|
|
|
2021-11-19 01:17:13 -08:00
|
|
|
const node = this.$store.getters.getNodeByName(updateInformation.name);
|
2019-06-23 03:35:23 -07:00
|
|
|
|
|
|
|
// Update the issues
|
|
|
|
this.updateNodeCredentialIssues(node);
|
2021-05-11 20:12:53 -07:00
|
|
|
|
|
|
|
this.$externalHooks().run('nodeSettings.credentialSelected', { updateInformation });
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
2022-04-11 06:12:13 -07:00
|
|
|
nameChanged(name: string) {
|
|
|
|
// @ts-ignore
|
|
|
|
this.valueChanged({
|
|
|
|
value: name,
|
|
|
|
name: 'name',
|
|
|
|
});
|
|
|
|
},
|
2019-06-23 03:35:23 -07:00
|
|
|
valueChanged (parameterData: IUpdateInformation) {
|
|
|
|
let newValue: NodeParameterValue;
|
|
|
|
if (parameterData.hasOwnProperty('value')) {
|
|
|
|
// New value is given
|
|
|
|
newValue = parameterData.value;
|
|
|
|
} else {
|
|
|
|
// Get new value from nodeData where it is set already
|
|
|
|
newValue = get(this.nodeValues, parameterData.name) as NodeParameterValue;
|
|
|
|
}
|
|
|
|
|
2019-07-14 05:10:16 -07:00
|
|
|
// Save the node name before we commit the change because
|
|
|
|
// we need the old name to rename the node properly
|
|
|
|
const nodeNameBefore = parameterData.node || this.node.name;
|
2021-11-19 01:17:13 -08:00
|
|
|
const node = this.$store.getters.getNodeByName(nodeNameBefore);
|
2019-07-14 05:10:16 -07:00
|
|
|
if (parameterData.name === 'name') {
|
|
|
|
// Name of node changed so we have to set also the new node name as active
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2019-07-14 05:10:16 -07:00
|
|
|
// Update happens in NodeView so emit event
|
|
|
|
const sendData = {
|
|
|
|
value: newValue,
|
|
|
|
oldValue: nodeNameBefore,
|
|
|
|
name: parameterData.name,
|
|
|
|
};
|
|
|
|
this.$emit('valueChanged', sendData);
|
|
|
|
|
2019-07-18 08:41:53 -07:00
|
|
|
} else if (parameterData.name.startsWith('parameters.')) {
|
|
|
|
// A node parameter changed
|
2019-07-14 05:10:16 -07:00
|
|
|
|
2022-02-05 03:57:48 -08:00
|
|
|
const nodeType = this.$store.getters.nodeType(node.type, node.typeVersion) as INodeTypeDescription | null;
|
2021-11-19 01:17:13 -08:00
|
|
|
if (!nodeType) {
|
|
|
|
return;
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2019-07-14 05:10:16 -07:00
|
|
|
// Get only the parameters which are different to the defaults
|
2022-04-28 10:04:09 -07:00
|
|
|
let nodeParameters = NodeHelpers.getNodeParameters(nodeType.properties, node.parameters, false, false, node);
|
2021-05-11 20:12:53 -07:00
|
|
|
const oldNodeParameters = Object.assign({}, nodeParameters);
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2019-07-14 05:10:16 -07:00
|
|
|
// Copy the data because it is the data of vuex so make sure that
|
|
|
|
// we do not edit it directly
|
|
|
|
nodeParameters = JSON.parse(JSON.stringify(nodeParameters));
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2019-07-14 05:10:16 -07:00
|
|
|
// Remove the 'parameters.' from the beginning to just have the
|
|
|
|
// actual parameter name
|
|
|
|
const parameterPath = parameterData.name.split('.').slice(1).join('.');
|
|
|
|
|
|
|
|
// Check if the path is supposed to change an array and if so get
|
|
|
|
// the needed data like path and index
|
2019-09-19 14:19:34 -07:00
|
|
|
const parameterPathArray = parameterPath.match(/(.*)\[(\d+)\]$/);
|
2019-07-14 05:10:16 -07:00
|
|
|
|
|
|
|
// Apply the new value
|
|
|
|
if (parameterData.value === undefined && parameterPathArray !== null) {
|
|
|
|
// Delete array item
|
|
|
|
const path = parameterPathArray[1];
|
|
|
|
const index = parameterPathArray[2];
|
|
|
|
const data = get(nodeParameters, path);
|
|
|
|
|
|
|
|
if (Array.isArray(data)) {
|
|
|
|
data.splice(parseInt(index, 10), 1);
|
|
|
|
Vue.set(nodeParameters as object, path, data);
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
} else {
|
2020-01-23 15:57:34 -08:00
|
|
|
if (newValue === undefined) {
|
|
|
|
unset(nodeParameters as object, parameterPath);
|
|
|
|
} else {
|
|
|
|
set(nodeParameters as object, parameterPath, newValue);
|
|
|
|
}
|
2019-07-14 05:10:16 -07:00
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2019-07-14 05:10:16 -07:00
|
|
|
// Get the parameters with the now new defaults according to the
|
|
|
|
// from the user actually defined parameters
|
2022-04-28 10:04:09 -07:00
|
|
|
nodeParameters = NodeHelpers.getNodeParameters(nodeType.properties, nodeParameters as INodeParameters, true, false, node);
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2019-07-14 05:10:16 -07:00
|
|
|
for (const key of Object.keys(nodeParameters as object)) {
|
|
|
|
if (nodeParameters && nodeParameters[key] !== null && nodeParameters[key] !== undefined) {
|
|
|
|
this.setValue(`parameters.${key}`, nodeParameters[key] as string);
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
2019-07-14 05:10:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Update the data in vuex
|
|
|
|
const updateInformation = {
|
|
|
|
name: node.name,
|
|
|
|
value: nodeParameters,
|
|
|
|
};
|
2021-05-15 15:51:14 -07:00
|
|
|
|
2019-07-14 05:10:16 -07:00
|
|
|
this.$store.commit('setNodeParameters', updateInformation);
|
2021-05-15 15:51:14 -07:00
|
|
|
|
2021-05-11 20:12:53 -07:00
|
|
|
this.$externalHooks().run('nodeSettings.valueChanged', { parameterPath, newValue, parameters: this.parameters, oldNodeParameters });
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2020-02-09 23:37:08 -08:00
|
|
|
this.updateNodeParameterIssues(node, nodeType);
|
2019-07-14 05:10:16 -07:00
|
|
|
this.updateNodeCredentialIssues(node);
|
2019-07-18 08:41:53 -07:00
|
|
|
} else {
|
|
|
|
// A property on the node itself changed
|
|
|
|
|
|
|
|
// Update data in settings
|
|
|
|
Vue.set(this.nodeValues, parameterData.name, newValue);
|
|
|
|
|
|
|
|
// Update data in vuex
|
|
|
|
const updateInformation = {
|
|
|
|
name: node.name,
|
|
|
|
key: parameterData.name,
|
|
|
|
value: newValue,
|
|
|
|
};
|
|
|
|
this.$store.commit('setNodeValue', updateInformation);
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Sets the values of the active node in the internal settings variables
|
|
|
|
*/
|
|
|
|
setNodeValues () {
|
|
|
|
if (!this.node) {
|
|
|
|
// No node selected
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.nodeType !== null) {
|
|
|
|
this.nodeValid = true;
|
|
|
|
|
2019-07-18 10:26:16 -07:00
|
|
|
const foundNodeSettings = [];
|
2019-06-23 03:35:23 -07:00
|
|
|
if (this.node.color) {
|
2019-07-18 10:26:16 -07:00
|
|
|
foundNodeSettings.push('color');
|
2019-06-23 03:35:23 -07:00
|
|
|
Vue.set(this.nodeValues, 'color', this.node.color);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.node.notes) {
|
2019-07-18 10:26:16 -07:00
|
|
|
foundNodeSettings.push('notes');
|
2019-06-23 03:35:23 -07:00
|
|
|
Vue.set(this.nodeValues, 'notes', this.node.notes);
|
|
|
|
}
|
|
|
|
|
2020-04-12 10:58:30 -07:00
|
|
|
if (this.node.alwaysOutputData) {
|
|
|
|
foundNodeSettings.push('alwaysOutputData');
|
|
|
|
Vue.set(this.nodeValues, 'alwaysOutputData', this.node.alwaysOutputData);
|
|
|
|
}
|
|
|
|
|
2020-08-08 11:31:04 -07:00
|
|
|
if (this.node.executeOnce) {
|
|
|
|
foundNodeSettings.push('executeOnce');
|
|
|
|
Vue.set(this.nodeValues, 'executeOnce', this.node.executeOnce);
|
|
|
|
}
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
if (this.node.continueOnFail) {
|
2019-07-18 10:26:16 -07:00
|
|
|
foundNodeSettings.push('continueOnFail');
|
2019-06-23 03:35:23 -07:00
|
|
|
Vue.set(this.nodeValues, 'continueOnFail', this.node.continueOnFail);
|
|
|
|
}
|
|
|
|
|
2020-05-05 08:34:12 -07:00
|
|
|
if (this.node.notesInFlow) {
|
|
|
|
foundNodeSettings.push('notesInFlow');
|
|
|
|
Vue.set(this.nodeValues, 'notesInFlow', this.node.notesInFlow);
|
|
|
|
}
|
|
|
|
|
2019-07-18 10:26:16 -07:00
|
|
|
if (this.node.retryOnFail) {
|
|
|
|
foundNodeSettings.push('retryOnFail');
|
|
|
|
Vue.set(this.nodeValues, 'retryOnFail', this.node.retryOnFail);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.node.maxTries) {
|
|
|
|
foundNodeSettings.push('maxTries');
|
|
|
|
Vue.set(this.nodeValues, 'maxTries', this.node.maxTries);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.node.waitBetweenTries) {
|
|
|
|
foundNodeSettings.push('waitBetweenTries');
|
|
|
|
Vue.set(this.nodeValues, 'waitBetweenTries', this.node.waitBetweenTries);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set default node settings
|
|
|
|
for (const nodeSetting of this.nodeSettings) {
|
|
|
|
if (!foundNodeSettings.includes(nodeSetting.name)) {
|
|
|
|
// Set default value
|
|
|
|
Vue.set(this.nodeValues, nodeSetting.name, nodeSetting.default);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
Vue.set(this.nodeValues, 'parameters', JSON.parse(JSON.stringify(this.node.parameters)));
|
|
|
|
} else {
|
|
|
|
this.nodeValid = false;
|
|
|
|
}
|
|
|
|
},
|
2022-07-20 07:24:03 -07:00
|
|
|
onMissingNodeTextClick(event: MouseEvent) {
|
|
|
|
if ((event.target as Element).localName === 'a') {
|
|
|
|
this.$telemetry.track('user clicked cnr browse button', { source: 'cnr missing node modal' });
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onMissingNodeLearnMoreLinkClick() {
|
|
|
|
this.$telemetry.track('user clicked cnr docs link', {
|
|
|
|
source: 'missing node modal source',
|
|
|
|
package_name: this.node.type.split('.')[0],
|
|
|
|
node_type: this.node.type,
|
|
|
|
});
|
|
|
|
},
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
mounted () {
|
|
|
|
this.setNodeValues();
|
2022-04-11 06:12:13 -07:00
|
|
|
if (this.eventBus) {
|
|
|
|
(this.eventBus as Vue).$on('openSettings', () => {
|
|
|
|
this.openPanel = 'settings';
|
|
|
|
});
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2022-04-11 06:12:13 -07:00
|
|
|
<style lang="scss" module>
|
|
|
|
.header {
|
|
|
|
background-color: var(--color-background-base);
|
|
|
|
}
|
2022-07-20 07:24:03 -07:00
|
|
|
|
|
|
|
.warningIcon {
|
|
|
|
color: var(--color-text-lighter);
|
|
|
|
font-size: var(--font-size-2xl);
|
|
|
|
}
|
|
|
|
|
|
|
|
.descriptionContainer {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2022-04-11 06:12:13 -07:00
|
|
|
</style>
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-04-11 06:12:13 -07:00
|
|
|
<style lang="scss">
|
2019-06-23 03:35:23 -07:00
|
|
|
.node-settings {
|
2021-09-11 01:15:36 -07:00
|
|
|
overflow: hidden;
|
2022-05-23 08:56:15 -07:00
|
|
|
min-width: 360px;
|
|
|
|
max-width: 360px;
|
|
|
|
background-color: var(--color-background-xlight);
|
|
|
|
height: 100%;
|
|
|
|
border: var(--border-base);
|
|
|
|
border-radius: var(--border-radius-large);
|
|
|
|
box-shadow: 0 4px 16px rgb(50 61 85 / 10%);
|
2021-10-27 12:55:37 -07:00
|
|
|
|
|
|
|
.no-parameters {
|
|
|
|
margin-top: var(--spacing-xs);
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
|
|
|
.header-side-menu {
|
2022-04-11 06:12:13 -07:00
|
|
|
padding: var(--spacing-s) var(--spacing-s) var(--spacing-s) var(--spacing-s);
|
2021-09-11 01:15:36 -07:00
|
|
|
font-size: var(--font-size-l);
|
2022-04-11 06:12:13 -07:00
|
|
|
display: flex;
|
2019-07-11 06:05:12 -07:00
|
|
|
|
2022-04-11 06:12:13 -07:00
|
|
|
.node-name {
|
|
|
|
padding-top: var(--spacing-5xs);
|
|
|
|
flex-grow: 1;
|
2019-07-11 06:05:12 -07:00
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.node-is-not-valid {
|
2022-07-20 07:24:03 -07:00
|
|
|
height: 75%;
|
2019-06-23 03:35:23 -07:00
|
|
|
padding: 10px;
|
2022-07-20 07:24:03 -07:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
text-align: center;
|
|
|
|
line-height: var(--font-line-height-regular);
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.node-parameters-wrapper {
|
2021-09-11 01:15:36 -07:00
|
|
|
height: 100%;
|
2022-04-11 06:12:13 -07:00
|
|
|
overflow-y: auto;
|
|
|
|
padding: 0 20px 200px 20px;
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
2022-05-23 08:56:15 -07:00
|
|
|
|
|
|
|
&.dragging {
|
|
|
|
border-color: var(--color-primary);
|
|
|
|
box-shadow: 0px 6px 16px rgba(255, 74, 51, 0.15);
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.parameter-content {
|
|
|
|
font-size: 0.9em;
|
|
|
|
margin-right: -15px;
|
|
|
|
margin-left: -15px;
|
|
|
|
input {
|
|
|
|
width: calc(100% - 35px);
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
select {
|
|
|
|
width: calc(100% - 20px);
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
display: table;
|
|
|
|
content: " ";
|
|
|
|
position: relative;
|
|
|
|
box-sizing: border-box;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.parameter-wrapper {
|
|
|
|
padding: 0 1em;
|
|
|
|
}
|
2021-08-29 04:36:17 -07:00
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
.color-reset-button-wrapper {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
}
|
|
|
|
.color-reset-button {
|
|
|
|
position: absolute;
|
|
|
|
right: 7px;
|
|
|
|
top: -25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.parameter-value {
|
|
|
|
input.expression {
|
|
|
|
border-style: dashed;
|
|
|
|
border-color: #ff9600;
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing:border-box;
|
|
|
|
background-color: #793300;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|