2019-06-23 03:35:23 -07:00
|
|
|
<template>
|
2021-10-27 12:55:37 -07:00
|
|
|
<n8n-input-label
|
2022-11-03 05:04:53 -07:00
|
|
|
:label="hideLabel ? '': $locale.nodeText().inputLabelDisplayName(parameter, path)"
|
|
|
|
:tooltipText="hideLabel ? '': $locale.nodeText().inputLabelDescription(parameter, path)"
|
2021-10-27 12:55:37 -07:00
|
|
|
:showTooltip="focused"
|
2022-07-20 04:32:51 -07:00
|
|
|
:showOptions="menuExpanded || focused || forceShowExpression"
|
2021-10-27 12:55:37 -07:00
|
|
|
:bold="false"
|
|
|
|
size="small"
|
2022-10-12 05:06:28 -07:00
|
|
|
color="text-dark"
|
2021-10-27 12:55:37 -07:00
|
|
|
>
|
2022-07-20 04:32:51 -07:00
|
|
|
<template #options>
|
|
|
|
<parameter-options
|
|
|
|
:parameter="parameter"
|
|
|
|
:value="value"
|
|
|
|
:isReadOnly="isReadOnly"
|
|
|
|
:showOptions="displayOptions"
|
2022-09-21 06:44:45 -07:00
|
|
|
:showExpressionSelector="showExpressionSelector"
|
2022-07-20 04:32:51 -07:00
|
|
|
@optionSelected="optionSelected"
|
|
|
|
@menu-expanded="onMenuExpanded"
|
|
|
|
/>
|
|
|
|
</template>
|
|
|
|
<template>
|
2022-09-21 06:44:45 -07:00
|
|
|
<draggable-target
|
|
|
|
type="mapping"
|
|
|
|
:disabled="isDropDisabled"
|
|
|
|
:sticky="true"
|
|
|
|
:stickyOffset="4"
|
|
|
|
@drop="onDrop"
|
|
|
|
>
|
2022-07-20 04:32:51 -07:00
|
|
|
<template v-slot="{ droppable, activeDrop }">
|
2022-10-06 06:03:55 -07:00
|
|
|
<n8n-tooltip
|
|
|
|
placement="left"
|
|
|
|
:manual="true"
|
|
|
|
:value="showMappingTooltip"
|
|
|
|
:buttons="dataMappingTooltipButtons"
|
|
|
|
>
|
|
|
|
<span slot="content" v-html="$locale.baseText(`dataMapping.${displayMode}Hint`, { interpolate: { name: parameter.displayName } })" />
|
2022-10-12 05:06:28 -07:00
|
|
|
<parameter-input-wrapper
|
2022-10-06 06:03:55 -07:00
|
|
|
ref="param"
|
|
|
|
:parameter="parameter"
|
|
|
|
:value="value"
|
|
|
|
:path="path"
|
|
|
|
:isReadOnly="isReadOnly"
|
|
|
|
:droppable="droppable"
|
|
|
|
:activeDrop="activeDrop"
|
|
|
|
:forceShowExpression="forceShowExpression"
|
2022-10-12 05:06:28 -07:00
|
|
|
:hint="hint"
|
2022-10-06 06:03:55 -07:00
|
|
|
@valueChanged="valueChanged"
|
|
|
|
@focus="onFocus"
|
|
|
|
@blur="onBlur"
|
|
|
|
@drop="onDrop"
|
|
|
|
inputSize="small"
|
|
|
|
/>
|
|
|
|
</n8n-tooltip>
|
2022-07-20 04:32:51 -07:00
|
|
|
</template>
|
2022-09-21 06:44:45 -07:00
|
|
|
</draggable-target>
|
2022-07-20 04:32:51 -07:00
|
|
|
</template>
|
2021-10-27 12:55:37 -07:00
|
|
|
</n8n-input-label>
|
2019-06-23 03:35:23 -07:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2022-11-03 05:04:53 -07:00
|
|
|
import Vue, { PropType } from 'vue';
|
2019-06-23 03:35:23 -07:00
|
|
|
|
|
|
|
import {
|
2022-10-06 06:03:55 -07:00
|
|
|
IN8nButton,
|
2022-07-20 04:32:51 -07:00
|
|
|
INodeUi,
|
2022-10-06 06:03:55 -07:00
|
|
|
IRunDataDisplayMode,
|
2019-06-23 03:35:23 -07:00
|
|
|
IUpdateInformation,
|
|
|
|
} from '@/Interface';
|
|
|
|
|
2022-11-03 05:04:53 -07:00
|
|
|
import ParameterOptions from '@/components/ParameterOptions.vue';
|
2022-07-20 04:32:51 -07:00
|
|
|
import DraggableTarget from '@/components/DraggableTarget.vue';
|
|
|
|
import mixins from 'vue-typed-mixins';
|
2022-11-03 05:04:53 -07:00
|
|
|
import { showMessage } from '@/components/mixins/showMessage';
|
2022-07-20 04:32:51 -07:00
|
|
|
import { LOCAL_STORAGE_MAPPING_FLAG } from '@/constants';
|
2022-11-03 05:04:53 -07:00
|
|
|
import { hasExpressionMapping } from '@/components/helpers';
|
|
|
|
import ParameterInputWrapper from '@/components/ParameterInputWrapper.vue';
|
|
|
|
import { hasOnlyListMode } from '@/components/ResourceLocator/helpers';
|
|
|
|
import { INodeParameters, INodeProperties, INodePropertyMode } from 'n8n-workflow';
|
2022-09-21 06:44:45 -07:00
|
|
|
import { isResourceLocatorValue } from '@/typeGuards';
|
2022-10-06 06:03:55 -07:00
|
|
|
import { BaseTextKey } from "@/plugins/i18n";
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-07-20 04:32:51 -07:00
|
|
|
export default mixins(
|
|
|
|
showMessage,
|
|
|
|
)
|
2019-06-23 03:35:23 -07:00
|
|
|
.extend({
|
2022-09-21 06:44:45 -07:00
|
|
|
name: 'parameter-input-full',
|
2019-06-23 03:35:23 -07:00
|
|
|
components: {
|
2022-07-20 04:32:51 -07:00
|
|
|
ParameterOptions,
|
|
|
|
DraggableTarget,
|
2022-10-12 05:06:28 -07:00
|
|
|
ParameterInputWrapper,
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
2021-10-27 12:55:37 -07:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
focused: false,
|
2022-07-20 04:32:51 -07:00
|
|
|
menuExpanded: false,
|
|
|
|
forceShowExpression: false,
|
2022-10-06 06:03:55 -07:00
|
|
|
dataMappingTooltipButtons: [] as IN8nButton[],
|
2021-10-27 12:55:37 -07:00
|
|
|
};
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
2022-11-03 05:04:53 -07:00
|
|
|
props: {
|
|
|
|
displayOptions: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false,
|
|
|
|
},
|
|
|
|
isReadOnly: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false,
|
|
|
|
},
|
|
|
|
hideLabel: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false,
|
|
|
|
},
|
|
|
|
parameter: {
|
|
|
|
type: Object as PropType<INodeProperties>,
|
|
|
|
},
|
|
|
|
path: {
|
|
|
|
type: String,
|
|
|
|
},
|
|
|
|
value: {
|
|
|
|
type: [Number, String, Boolean, Array, Object] as PropType<INodeParameters>,
|
|
|
|
},
|
|
|
|
},
|
2022-10-06 06:03:55 -07:00
|
|
|
created() {
|
|
|
|
const mappingTooltipDismissHandler = this.onMappingTooltipDismissed.bind(this);
|
|
|
|
this.dataMappingTooltipButtons = [
|
|
|
|
{
|
|
|
|
attrs: {
|
|
|
|
label: this.$locale.baseText('_reusableBaseText.dismiss' as BaseTextKey),
|
|
|
|
},
|
|
|
|
listeners: {
|
|
|
|
click: mappingTooltipDismissHandler,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
},
|
2022-07-20 04:32:51 -07:00
|
|
|
computed: {
|
|
|
|
node (): INodeUi | null {
|
2022-10-24 02:35:03 -07:00
|
|
|
return this.$store.getters['ndv/activeNode'];
|
2022-07-20 04:32:51 -07:00
|
|
|
},
|
2022-10-12 05:06:28 -07:00
|
|
|
hint (): string | null {
|
|
|
|
return this.$locale.nodeText().hint(this.parameter, this.path);
|
|
|
|
},
|
2022-11-03 05:04:53 -07:00
|
|
|
isInputTypeString (): boolean {
|
|
|
|
return this.parameter.type === 'string';
|
|
|
|
},
|
2022-09-21 06:44:45 -07:00
|
|
|
isResourceLocator (): boolean {
|
|
|
|
return this.parameter.type === 'resourceLocator';
|
|
|
|
},
|
|
|
|
isDropDisabled (): boolean {
|
|
|
|
return this.parameter.noDataExpression || this.isReadOnly || this.isResourceLocator;
|
|
|
|
},
|
|
|
|
showExpressionSelector (): boolean {
|
|
|
|
return this.isResourceLocator ? !hasOnlyListMode(this.parameter): true;
|
|
|
|
},
|
2022-10-06 06:03:55 -07:00
|
|
|
isInputDataEmpty (): boolean {
|
2022-10-24 02:35:03 -07:00
|
|
|
return this.$store.getters['ndv/getNDVDataIsEmpty']('input');
|
2022-10-06 06:03:55 -07:00
|
|
|
},
|
|
|
|
displayMode(): IRunDataDisplayMode {
|
2022-10-24 02:35:03 -07:00
|
|
|
return this.$store.getters['ndv/inputPanelDisplayMode'];
|
2022-10-06 06:03:55 -07:00
|
|
|
},
|
|
|
|
showMappingTooltip (): boolean {
|
2022-11-03 05:04:53 -07:00
|
|
|
return this.focused && this.isInputTypeString && !this.isInputDataEmpty && window.localStorage.getItem(LOCAL_STORAGE_MAPPING_FLAG) !== 'true';
|
2022-10-06 06:03:55 -07:00
|
|
|
},
|
2022-07-20 04:32:51 -07:00
|
|
|
},
|
2019-06-23 03:35:23 -07:00
|
|
|
methods: {
|
2022-07-20 04:32:51 -07:00
|
|
|
onFocus() {
|
|
|
|
this.focused = true;
|
|
|
|
if (!this.parameter.noDataExpression) {
|
2022-10-24 02:35:03 -07:00
|
|
|
this.$store.commit('ndv/setMappableNDVInputFocus', this.parameter.displayName);
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
2022-07-20 04:32:51 -07:00
|
|
|
},
|
|
|
|
onBlur() {
|
|
|
|
this.focused = false;
|
|
|
|
if (!this.parameter.noDataExpression) {
|
2022-10-24 02:35:03 -07:00
|
|
|
this.$store.commit('ndv/setMappableNDVInputFocus', '');
|
2022-07-20 04:32:51 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
onMenuExpanded(expanded: boolean) {
|
|
|
|
this.menuExpanded = expanded;
|
|
|
|
},
|
|
|
|
optionSelected (command: string) {
|
|
|
|
if (this.$refs.param) {
|
|
|
|
(this.$refs.param as Vue).$emit('optionSelected', command);
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
valueChanged (parameterData: IUpdateInformation) {
|
|
|
|
this.$emit('valueChanged', parameterData);
|
|
|
|
},
|
2022-07-20 04:32:51 -07:00
|
|
|
onDrop(data: string) {
|
|
|
|
this.forceShowExpression = true;
|
|
|
|
setTimeout(() => {
|
|
|
|
if (this.node) {
|
2022-09-21 06:44:45 -07:00
|
|
|
const prevValue = this.isResourceLocator ? this.value.value : this.value;
|
2022-07-20 04:32:51 -07:00
|
|
|
let updatedValue: string;
|
|
|
|
if (typeof prevValue === 'string' && prevValue.startsWith('=') && prevValue.length > 1) {
|
|
|
|
updatedValue = `${prevValue} ${data}`;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
updatedValue = `=${data}`;
|
|
|
|
}
|
|
|
|
|
2022-09-21 06:44:45 -07:00
|
|
|
|
|
|
|
let parameterData;
|
|
|
|
if (this.isResourceLocator) {
|
|
|
|
if (!isResourceLocatorValue(this.value)) {
|
|
|
|
parameterData = {
|
|
|
|
node: this.node.name,
|
|
|
|
name: this.path,
|
2022-09-22 10:04:26 -07:00
|
|
|
value: { __rl: true, value: updatedValue, mode: '' },
|
2022-09-21 06:44:45 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
else if (this.value.mode === 'list' && this.parameter.modes && this.parameter.modes.length > 1) {
|
|
|
|
let mode = this.parameter.modes.find((mode: INodePropertyMode) => mode.name === 'id') || null;
|
|
|
|
if (!mode) {
|
|
|
|
mode = this.parameter.modes.filter((mode: INodePropertyMode) => mode.name !== 'list')[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
parameterData = {
|
|
|
|
node: this.node.name,
|
|
|
|
name: this.path,
|
2022-09-22 10:04:26 -07:00
|
|
|
value: { __rl: true, value: updatedValue, mode: mode ? mode.name : '' },
|
2022-09-21 06:44:45 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
parameterData = {
|
|
|
|
node: this.node.name,
|
|
|
|
name: this.path,
|
2022-09-22 10:04:26 -07:00
|
|
|
value: { __rl: true, value: updatedValue, mode: this.value.mode },
|
2022-09-21 06:44:45 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
parameterData = {
|
|
|
|
node: this.node.name,
|
|
|
|
name: this.path,
|
|
|
|
value: updatedValue,
|
|
|
|
};
|
|
|
|
}
|
2022-07-20 04:32:51 -07:00
|
|
|
|
|
|
|
this.$emit('valueChanged', parameterData);
|
|
|
|
|
|
|
|
if (window.localStorage.getItem(LOCAL_STORAGE_MAPPING_FLAG) !== 'true') {
|
|
|
|
this.$showMessage({
|
|
|
|
title: this.$locale.baseText('dataMapping.success.title'),
|
|
|
|
message: this.$locale.baseText('dataMapping.success.moreInfo'),
|
|
|
|
type: 'success',
|
|
|
|
});
|
|
|
|
|
|
|
|
window.localStorage.setItem(LOCAL_STORAGE_MAPPING_FLAG, 'true');
|
|
|
|
}
|
|
|
|
|
2022-10-24 02:35:03 -07:00
|
|
|
this.$store.commit('ndv/setMappingTelemetry', {
|
2022-07-20 04:32:51 -07:00
|
|
|
dest_node_type: this.node.type,
|
|
|
|
dest_parameter: this.path,
|
|
|
|
dest_parameter_mode: typeof prevValue === 'string' && prevValue.startsWith('=')? 'expression': 'fixed',
|
|
|
|
dest_parameter_empty: prevValue === '' || prevValue === undefined,
|
|
|
|
dest_parameter_had_mapping: typeof prevValue === 'string' && prevValue.startsWith('=') && hasExpressionMapping(prevValue),
|
|
|
|
success: true,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
this.forceShowExpression = false;
|
|
|
|
}, 200);
|
|
|
|
},
|
2022-10-06 06:03:55 -07:00
|
|
|
onMappingTooltipDismissed() {
|
|
|
|
window.localStorage.setItem(LOCAL_STORAGE_MAPPING_FLAG, 'true');
|
|
|
|
},
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
showMappingTooltip(newValue: boolean) {
|
|
|
|
if (!newValue) {
|
|
|
|
this.$telemetry.track('User viewed data mapping tooltip', { type: 'param focus' });
|
|
|
|
}
|
|
|
|
},
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|