mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
* ⚡ Removing authentication parameter from NDV * ⚡ Added auth type selector to credentials modal * 🔨 Extracting reusable logic to util functions * ⚡ Updating credentials position, adding label for radio buttons * ⚡ Using first node credentials for nodes with single auth options and hiding auth selector UI in that case * ⚡ Fixing credentials modal when opened from credentials page * ⚡ Showing all available credentials in NDV credentials dropdown * ⚡ Updating node credentials dropdown component to show credentials description. Disabling `Credentials of type not found` error in node * ⚡ Moving auth related fields from NDV to credentials modal. Added support for multiple auth fileds * ⚡ Moving NDV fields that authentication depends on to credentials modal * ⚡ Keeping old auth/credentials UI in NDV for HTTP Request and Webhook nodes. Pre-populating credential type for HTTP request node when selected from 'app action' menu * 💄 Use old label and field position for nodes that use old credentials UI in NDV * ⚡ Implementing more generic way to find node's auth fileds * 📚 Adding comments on parameter hiding logic * ⚡ Fixing node auth options logic for multiple auth fields * 👕 Fixing lint errors * 💄 Addressing design review comments * ⚡ Not selecting first auth option when opening new credential dialog * ⚡ Using default credentials name and icon if authentication type is not selected * ⚡ Updating credential data when auth type is changed * ⚡ Setting new credentials type for HTTP Request and Webhook nodes * ⚡ Setting nodes with access when changing auth type * 👕 Fixing lint error * ⚡ Updating active node auth type from credentials modal * ⚡ Syncronizing credentials modal and dropdown * 👕 Fixing linter error * ⚡ Handling credential dropdown UI for multiple credentials * 👕 Removing unused imports * ⚡ Handling auth selection when default auth type is the first option * ⚡ Updating credentials change listening logic * ⚡ Resetting credential data when deleting a credential, disabling 'Details' and 'Sharing' tabs if auth type is not selected * 🐛 Skipping credentials type check when showing mixed credentials in the dropdown and switching credentials type * ⚡ Showing credential modal tabs for saved credentials * ⚡ Preventing renaming credentials when no auth type is selected * 🐛 Fixing credentials modal when opened from credentials page * ⚡ Keeping auth radio buttons selected when switching tabs * ✅ Adding initial batch of credentials NDV tests * ⚡ Updating node auth filed value when new credential type is selected * ⚡ Using all available credential types for current node to sync credential dropdown with modal * ⚡ Sorting mixed credentials by date, simplifying credential dropdown option logic * 🔨 Extracting some reusable logic to utils * ⚡ Improving required vs optional credentials detection and using it to show auth radio buttons * 👕 Fixing lint errors * ✅ Adding more credentials tests * ⚡ Filtering credential options based on authentication type * 🔨 Refactoring credentials and auth utils * ⚡ Updated handling of auth options in credentials modal to work with new logic * 🔨 Getting the terminology in line * 📚 Removing leftover comment * ⚡ Updating node auth filed detection logic to account for different edge-cases * ⚡ Adding Wait node as an exception for new UI * ⚡ Updating NDV display when auth type changes * ⚡ Updating default credentials name when auth type changes * ⚡ Hiding auth settings after credentials are saved * ⚡ Always showing credentials modal menu tabs * ⚡ Improving main auth field detection logic so it doesn't account for authentication fields which can have `none` value * ⚡ Restoring accidentally deleted not existing credential issue logic * ⚡ Updating other nodes when deleted credentials have been updated * ⚡ Using filtered auth type list to show or hide radio buttons section in credentials modal * 👕 Addressing lint error * 👌 Addressing PR review feedback * 👕 Fixing lint issues * ⚡ Updating main auth filed detection logic so it checks full dependency path to determine if the field is required or optional * 👌 Addressing the rest of PR feedback * ✅ Updating credential tests * ⚡ Resetting credential data on authentication type change * ⚡ Created AuthTypeSelector component * 👌 Addressing PR comments * ⚡ Not resetting overwritten credential properties when changing auth type * ⚡ Hiding auth selector section if there are no options to show
227 lines
5.3 KiB
Vue
227 lines
5.3 KiB
Vue
<template>
|
|
<div>
|
|
<parameter-input
|
|
ref="param"
|
|
:inputSize="inputSize"
|
|
:parameter="parameter"
|
|
:value="value"
|
|
:path="path"
|
|
:isReadOnly="isReadOnly"
|
|
:droppable="droppable"
|
|
:activeDrop="activeDrop"
|
|
:forceShowExpression="forceShowExpression"
|
|
:hideIssues="hideIssues"
|
|
:documentationUrl="documentationUrl"
|
|
:errorHighlight="errorHighlight"
|
|
:isForCredential="isForCredential"
|
|
:eventSource="eventSource"
|
|
:expressionEvaluated="expressionValueComputed"
|
|
@focus="onFocus"
|
|
@blur="onBlur"
|
|
@drop="onDrop"
|
|
@textInput="onTextInput"
|
|
@valueChanged="onValueChanged"
|
|
:data-test-id="`parameter-input-${parameter.name}`"
|
|
/>
|
|
<input-hint
|
|
v-if="expressionOutput"
|
|
:class="$style.hint"
|
|
:highlight="!!(expressionOutput && targetItem)"
|
|
:hint="expressionOutput"
|
|
/>
|
|
<input-hint
|
|
v-else-if="parameterHint"
|
|
:class="$style.hint"
|
|
:renderHTML="true"
|
|
:hint="parameterHint"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue, { PropType } from 'vue';
|
|
|
|
import ParameterInput from '@/components/ParameterInput.vue';
|
|
import InputHint from './ParameterInputHint.vue';
|
|
import mixins from 'vue-typed-mixins';
|
|
import { showMessage } from '@/mixins/showMessage';
|
|
import {
|
|
INodeProperties,
|
|
INodePropertyMode,
|
|
IRunData,
|
|
isResourceLocatorValue,
|
|
NodeParameterValue,
|
|
NodeParameterValueType,
|
|
} from 'n8n-workflow';
|
|
import { INodeUi, IUpdateInformation, TargetItem } from '@/Interface';
|
|
import { workflowHelpers } from '@/mixins/workflowHelpers';
|
|
import { isValueExpression } from '@/utils';
|
|
import { mapStores } from 'pinia';
|
|
import { useNDVStore } from '@/stores/ndv';
|
|
|
|
export default mixins(showMessage, workflowHelpers).extend({
|
|
name: 'parameter-input-wrapper',
|
|
components: {
|
|
ParameterInput,
|
|
InputHint,
|
|
},
|
|
mounted() {
|
|
this.$on('optionSelected', this.optionSelected);
|
|
},
|
|
props: {
|
|
isReadOnly: {
|
|
type: Boolean,
|
|
},
|
|
parameter: {
|
|
type: Object as PropType<INodeProperties>,
|
|
},
|
|
path: {
|
|
type: String,
|
|
},
|
|
value: {
|
|
type: [String, Number, Boolean, Array, Object] as PropType<NodeParameterValueType>,
|
|
},
|
|
droppable: {
|
|
type: Boolean,
|
|
},
|
|
activeDrop: {
|
|
type: Boolean,
|
|
},
|
|
forceShowExpression: {
|
|
type: Boolean,
|
|
},
|
|
hint: {
|
|
type: String,
|
|
required: false,
|
|
},
|
|
inputSize: {
|
|
type: String,
|
|
},
|
|
hideIssues: {
|
|
type: Boolean,
|
|
},
|
|
documentationUrl: {
|
|
type: String as PropType<string | undefined>,
|
|
},
|
|
errorHighlight: {
|
|
type: Boolean,
|
|
},
|
|
isForCredential: {
|
|
type: Boolean,
|
|
},
|
|
eventSource: {
|
|
type: String,
|
|
},
|
|
},
|
|
computed: {
|
|
...mapStores(useNDVStore),
|
|
isValueExpression() {
|
|
return isValueExpression(this.parameter, this.value);
|
|
},
|
|
activeNode(): INodeUi | null {
|
|
return this.ndvStore.activeNode;
|
|
},
|
|
selectedRLMode(): INodePropertyMode | undefined {
|
|
if (
|
|
typeof this.value !== 'object' ||
|
|
this.parameter.type !== 'resourceLocator' ||
|
|
!isResourceLocatorValue(this.value)
|
|
) {
|
|
return undefined;
|
|
}
|
|
|
|
const mode = this.value.mode;
|
|
if (mode) {
|
|
return this.parameter.modes?.find((m: INodePropertyMode) => m.name === mode);
|
|
}
|
|
|
|
return undefined;
|
|
},
|
|
parameterHint(): string | undefined {
|
|
if (this.isValueExpression) {
|
|
return undefined;
|
|
}
|
|
if (this.selectedRLMode && this.selectedRLMode.hint) {
|
|
return this.selectedRLMode.hint;
|
|
}
|
|
|
|
return this.hint;
|
|
},
|
|
targetItem(): TargetItem | null {
|
|
return this.ndvStore.hoveringItem;
|
|
},
|
|
expressionValueComputed(): string | null {
|
|
const inputNodeName: string | undefined = this.ndvStore.ndvInputNodeName;
|
|
const value = isResourceLocatorValue(this.value) ? this.value.value : this.value;
|
|
if (this.activeNode === null || !this.isValueExpression || typeof value !== 'string') {
|
|
return null;
|
|
}
|
|
|
|
const inputRunIndex: number | undefined = this.ndvStore.ndvInputRunIndex;
|
|
const inputBranchIndex: number | undefined = this.ndvStore.ndvInputBranchIndex;
|
|
|
|
let computedValue: NodeParameterValue;
|
|
try {
|
|
const targetItem = this.targetItem ?? undefined;
|
|
computedValue = this.resolveExpression(value, undefined, {
|
|
targetItem,
|
|
inputNodeName,
|
|
inputRunIndex,
|
|
inputBranchIndex,
|
|
});
|
|
if (computedValue === null) {
|
|
return null;
|
|
}
|
|
|
|
if (typeof computedValue === 'string' && computedValue.trim().length === 0) {
|
|
computedValue = this.$locale.baseText('parameterInput.emptyString');
|
|
}
|
|
} catch (error) {
|
|
computedValue = `[${this.$locale.baseText('parameterInput.error')}: ${error.message}]`;
|
|
}
|
|
|
|
return typeof computedValue === 'string' ? computedValue : JSON.stringify(computedValue);
|
|
},
|
|
expressionOutput(): string | null {
|
|
if (this.isValueExpression && this.expressionValueComputed) {
|
|
return this.expressionValueComputed;
|
|
}
|
|
|
|
return null;
|
|
},
|
|
},
|
|
methods: {
|
|
onFocus() {
|
|
this.$emit('focus');
|
|
},
|
|
onBlur() {
|
|
this.$emit('blur');
|
|
},
|
|
onDrop(data: string) {
|
|
this.$emit('drop', data);
|
|
},
|
|
optionSelected(command: string) {
|
|
if (this.$refs.param) {
|
|
(this.$refs.param as Vue).$emit('optionSelected', command);
|
|
}
|
|
},
|
|
onValueChanged(parameterData: IUpdateInformation) {
|
|
this.$emit('valueChanged', parameterData);
|
|
},
|
|
onTextInput(parameterData: IUpdateInformation) {
|
|
this.$emit('textInput', parameterData);
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.hint {
|
|
margin-top: var(--spacing-4xs);
|
|
}
|
|
|
|
.hovering {
|
|
color: var(--color-secondary);
|
|
}
|
|
</style>
|