n8n/packages/editor-ui/src/components/ParameterInputExpanded.vue
Ricardo Espinoza 609bc4d97d
Some checks failed
Test Master / install-and-build (push) Has been cancelled
Test Master / Unit tests (18.x) (push) Has been cancelled
Test Master / Unit tests (20.x) (push) Has been cancelled
Test Master / Unit tests (22.4) (push) Has been cancelled
Test Master / Lint (push) Has been cancelled
Test Master / Notify Slack on failure (push) Has been cancelled
refactor(editor): Standardize components sections order (no-changelog) (#10540)
2024-08-24 09:24:08 -04:00

175 lines
4.2 KiB
Vue

<script setup lang="ts">
import type { IUpdateInformation } from '@/Interface';
import { useI18n } from '@/composables/useI18n';
import { useTelemetry } from '@/composables/useTelemetry';
import { useWorkflowsStore } from '@/stores/workflows.store';
import { isValueExpression as isValueExpressionUtil } from '@/utils/nodeTypesUtils';
import { createEventBus } from 'n8n-design-system/utils';
import type {
INodeParameterResourceLocator,
INodeProperties,
IParameterLabel,
NodeParameterValueType,
} from 'n8n-workflow';
import { computed, ref } from 'vue';
import ParameterInputWrapper from './ParameterInputWrapper.vue';
import ParameterOptions from './ParameterOptions.vue';
type Props = {
parameter: INodeProperties;
value: NodeParameterValueType;
showValidationWarnings?: boolean;
documentationUrl?: string;
eventSource?: string;
label?: IParameterLabel;
};
const props = withDefaults(defineProps<Props>(), {
label: () => ({ size: 'small' }),
});
const emit = defineEmits<{
update: [value: IUpdateInformation];
}>();
const focused = ref(false);
const blurredEver = ref(false);
const menuExpanded = ref(false);
const eventBus = ref(createEventBus());
const workflowsStore = useWorkflowsStore();
const i18n = useI18n();
const telemetry = useTelemetry();
const showRequiredErrors = computed(() => {
if (!props.parameter.required) {
return false;
}
if (blurredEver.value || props.showValidationWarnings) {
if (props.parameter.type === 'string') {
return !props.value;
}
if (props.parameter.type === 'number') {
if (typeof props.value === 'string' && props.value.startsWith('=')) {
return false;
}
return typeof props.value !== 'number';
}
}
return false;
});
const hint = computed(() => {
if (isValueExpression.value) {
return null;
}
return i18n.credText().hint(props.parameter);
});
const isValueExpression = computed(() => {
return isValueExpressionUtil(
props.parameter,
props.value as string | INodeParameterResourceLocator,
);
});
function onFocus() {
focused.value = true;
}
function onBlur() {
blurredEver.value = true;
focused.value = false;
}
function onMenuExpanded(expanded: boolean) {
menuExpanded.value = expanded;
}
function optionSelected(command: string) {
eventBus.value.emit('optionSelected', command);
}
function valueChanged(parameterData: IUpdateInformation) {
emit('update', parameterData);
}
function onDocumentationUrlClick(): void {
telemetry.track('User clicked credential modal docs link', {
docs_link: props.documentationUrl,
source: 'field',
workflow_id: workflowsStore.workflowId,
});
}
</script>
<template>
<n8n-input-label
:label="$locale.credText().inputLabelDisplayName(parameter)"
:tooltip-text="$locale.credText().inputLabelDescription(parameter)"
:required="parameter.required"
:show-tooltip="focused"
:show-options="menuExpanded"
:data-test-id="parameter.name"
:size="label.size"
>
<template #options>
<ParameterOptions
:parameter="parameter"
:value="value"
:is-read-only="false"
:show-options="true"
:is-value-expression="isValueExpression"
@update:model-value="optionSelected"
@menu-expanded="onMenuExpanded"
/>
</template>
<ParameterInputWrapper
ref="param"
input-size="large"
:parameter="parameter"
:model-value="value"
:path="parameter.name"
:hide-issues="true"
:documentation-url="documentationUrl"
:error-highlight="showRequiredErrors"
:is-for-credential="true"
:event-source="eventSource"
:hint="!showRequiredErrors && hint ? hint : ''"
:event-bus="eventBus"
@focus="onFocus"
@blur="onBlur"
@text-input="valueChanged"
@update="valueChanged"
/>
<div v-if="showRequiredErrors" :class="$style.errors">
<n8n-text color="danger" size="small">
{{ $locale.baseText('parameterInputExpanded.thisFieldIsRequired') }}
<n8n-link
v-if="documentationUrl"
:to="documentationUrl"
size="small"
:underline="true"
@click="onDocumentationUrlClick"
>
{{ $locale.baseText('parameterInputExpanded.openDocs') }}
</n8n-link>
</n8n-text>
</div>
</n8n-input-label>
</template>
<style lang="scss" module>
.errors {
margin-top: var(--spacing-2xs);
}
.hint {
margin-top: var(--spacing-4xs);
}
</style>