2019-06-23 03:35:23 -07:00
|
|
|
<template>
|
|
|
|
<div @keydown.stop :class="parameterInputClasses">
|
2022-07-20 04:32:51 -07:00
|
|
|
<expression-edit
|
|
|
|
:dialogVisible="expressionEditDialogVisible"
|
2022-12-14 01:04:10 -08:00
|
|
|
:value="
|
|
|
|
isResourceLocatorParameter && typeof value !== 'string' ? (value ? value.value : '') : value
|
|
|
|
"
|
2022-07-20 04:32:51 -07:00
|
|
|
:parameter="parameter"
|
|
|
|
:path="path"
|
|
|
|
:eventSource="eventSource || 'ndv'"
|
2022-12-01 04:26:22 -08:00
|
|
|
:isReadOnly="isReadOnly"
|
2022-07-20 04:32:51 -07:00
|
|
|
@closeDialog="closeExpressionEditDialog"
|
|
|
|
@valueChanged="expressionUpdated"
|
|
|
|
></expression-edit>
|
2022-12-14 05:43:02 -08:00
|
|
|
<div class="parameter-input ignore-key-press" :style="parameterInputWrapperStyle">
|
2022-09-21 06:44:45 -07:00
|
|
|
<resource-locator
|
|
|
|
v-if="isResourceLocatorParameter"
|
|
|
|
ref="resourceLocator"
|
|
|
|
:parameter="parameter"
|
|
|
|
:value="value"
|
2023-04-28 03:14:31 -07:00
|
|
|
:dependentParametersValues="dependentParametersValues"
|
2022-09-21 06:44:45 -07:00
|
|
|
:displayTitle="displayTitle"
|
|
|
|
:expressionDisplayValue="expressionDisplayValue"
|
2022-10-12 05:06:28 -07:00
|
|
|
:expressionComputedValue="expressionEvaluated"
|
2022-09-21 06:44:45 -07:00
|
|
|
:isValueExpression="isValueExpression"
|
|
|
|
:isReadOnly="isReadOnly"
|
|
|
|
:parameterIssues="getIssues"
|
|
|
|
:droppable="droppable"
|
|
|
|
:node="node"
|
|
|
|
:path="path"
|
2023-06-20 03:00:53 -07:00
|
|
|
:event-bus="eventBus"
|
2022-09-21 06:44:45 -07:00
|
|
|
@input="valueChanged"
|
2022-12-14 05:43:02 -08:00
|
|
|
@modalOpenerClick="openExpressionEditorModal"
|
2022-09-21 06:44:45 -07:00
|
|
|
@focus="setFocus"
|
|
|
|
@blur="onBlur"
|
|
|
|
@drop="onResourceLocatorDrop"
|
|
|
|
/>
|
2022-12-14 05:43:02 -08:00
|
|
|
<ExpressionParameterInput
|
|
|
|
v-else-if="isValueExpression || forceShowExpression"
|
2022-10-12 05:06:28 -07:00
|
|
|
:value="expressionDisplayValue"
|
2022-07-20 04:32:51 -07:00
|
|
|
:title="displayTitle"
|
2022-12-14 05:43:02 -08:00
|
|
|
:isReadOnly="isReadOnly"
|
2023-02-02 03:35:38 -08:00
|
|
|
:path="path"
|
2022-12-14 05:43:02 -08:00
|
|
|
@valueChanged="expressionUpdated"
|
|
|
|
@modalOpenerClick="openExpressionEditorModal"
|
|
|
|
@focus="setFocus"
|
|
|
|
@blur="onBlur"
|
|
|
|
ref="inputField"
|
2022-07-20 04:32:51 -07:00
|
|
|
/>
|
|
|
|
<div
|
|
|
|
v-else-if="
|
|
|
|
['json', 'string'].includes(parameter.type) ||
|
|
|
|
remoteParameterOptionsLoadingIssues !== null
|
|
|
|
"
|
|
|
|
>
|
2023-04-25 07:57:21 -07:00
|
|
|
<el-dialog
|
2022-07-20 04:32:51 -07:00
|
|
|
v-if="codeEditDialogVisible"
|
2023-04-25 07:57:21 -07:00
|
|
|
visible
|
|
|
|
append-to-body
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
width="80%"
|
|
|
|
:title="`${$locale.baseText('codeEdit.edit')} ${$locale
|
|
|
|
.nodeText()
|
|
|
|
.inputLabelDisplayName(parameter, path)}`"
|
|
|
|
:before-close="closeCodeEditDialog"
|
|
|
|
>
|
|
|
|
<div class="ignore-key-press">
|
|
|
|
<code-node-editor
|
|
|
|
:value="value"
|
|
|
|
:defaultValue="parameter.default"
|
|
|
|
:language="editorLanguage"
|
|
|
|
:isReadOnly="isReadOnly"
|
|
|
|
@valueChanged="expressionUpdated"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</el-dialog>
|
|
|
|
|
2022-07-20 04:32:51 -07:00
|
|
|
<text-edit
|
|
|
|
:dialogVisible="textEditDialogVisible"
|
|
|
|
:value="value"
|
|
|
|
:parameter="parameter"
|
|
|
|
:path="path"
|
2022-10-24 11:17:25 -07:00
|
|
|
:isReadOnly="isReadOnly"
|
2022-07-20 04:32:51 -07:00
|
|
|
@closeDialog="closeTextEditDialog"
|
|
|
|
@valueChanged="expressionUpdated"
|
|
|
|
></text-edit>
|
|
|
|
|
2022-10-13 05:28:02 -07:00
|
|
|
<code-node-editor
|
2023-04-25 07:57:21 -07:00
|
|
|
v-if="editorType === 'codeNodeEditor' && isCodeNode(node)"
|
2022-10-13 05:28:02 -07:00
|
|
|
:mode="node.parameters.mode"
|
2023-06-06 05:01:26 -07:00
|
|
|
:value="value"
|
2023-04-25 07:57:21 -07:00
|
|
|
:defaultValue="parameter.default"
|
|
|
|
:language="editorLanguage"
|
2022-10-13 05:28:02 -07:00
|
|
|
:isReadOnly="isReadOnly"
|
2023-05-30 09:43:46 -07:00
|
|
|
:aiButtonEnabled="settingsStore.isCloudDeployment"
|
2022-10-20 06:45:58 -07:00
|
|
|
@valueChanged="valueChangedDebounced"
|
2022-10-13 05:28:02 -07:00
|
|
|
/>
|
|
|
|
|
2023-01-26 01:03:13 -08:00
|
|
|
<html-editor
|
2023-04-25 07:57:21 -07:00
|
|
|
v-else-if="editorType === 'htmlEditor'"
|
2023-06-06 05:01:26 -07:00
|
|
|
:html="value"
|
2023-01-26 01:03:13 -08:00
|
|
|
:isReadOnly="isReadOnly"
|
2023-02-02 05:00:16 -08:00
|
|
|
:rows="getArgument('rows')"
|
|
|
|
:disableExpressionColoring="!isHtmlNode(node)"
|
2023-02-09 00:41:07 -08:00
|
|
|
:disableExpressionCompletions="!isHtmlNode(node)"
|
2023-01-26 01:03:13 -08:00
|
|
|
@valueChanged="valueChangedDebounced"
|
|
|
|
/>
|
|
|
|
|
2023-04-25 09:18:27 -07:00
|
|
|
<sql-editor
|
|
|
|
v-else-if="editorType === 'sqlEditor'"
|
2023-06-06 05:01:26 -07:00
|
|
|
:query="value"
|
2023-04-25 09:18:27 -07:00
|
|
|
:dialect="getArgument('sqlDialect')"
|
|
|
|
:isReadOnly="isReadOnly"
|
|
|
|
@valueChanged="valueChangedDebounced"
|
|
|
|
/>
|
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
<div
|
2023-04-25 07:57:21 -07:00
|
|
|
v-else-if="editorType"
|
|
|
|
class="readonly-code clickable ph-no-capture"
|
2022-12-14 01:04:10 -08:00
|
|
|
@click="displayEditDialog()"
|
|
|
|
>
|
2023-04-25 07:57:21 -07:00
|
|
|
<code-node-editor
|
2022-07-20 04:32:51 -07:00
|
|
|
v-if="!codeEditDialogVisible"
|
2023-04-25 07:57:21 -07:00
|
|
|
:value="value"
|
|
|
|
:language="editorLanguage"
|
|
|
|
:isReadOnly="true"
|
|
|
|
/>
|
2022-07-20 04:32:51 -07:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<n8n-input
|
|
|
|
v-else
|
|
|
|
v-model="tempValue"
|
|
|
|
ref="inputField"
|
2022-12-14 05:43:02 -08:00
|
|
|
class="input-with-opener"
|
2022-07-20 04:32:51 -07:00
|
|
|
:size="inputSize"
|
|
|
|
:type="getStringInputType"
|
|
|
|
:rows="getArgument('rows')"
|
|
|
|
:value="displayValue"
|
|
|
|
:disabled="isReadOnly"
|
|
|
|
@input="onTextInputChange"
|
|
|
|
@change="valueChanged"
|
|
|
|
@keydown.stop
|
|
|
|
@focus="setFocus"
|
|
|
|
@blur="onBlur"
|
|
|
|
:title="displayTitle"
|
|
|
|
:placeholder="getPlaceholder()"
|
|
|
|
>
|
2022-11-18 05:59:31 -08:00
|
|
|
<template #suffix>
|
2022-12-14 05:43:02 -08:00
|
|
|
<n8n-icon
|
2022-12-15 05:31:06 -08:00
|
|
|
v-if="!isReadOnly && !isSecretParameter"
|
2022-12-14 05:43:02 -08:00
|
|
|
icon="external-link-alt"
|
|
|
|
size="xsmall"
|
|
|
|
class="edit-window-button textarea-modal-opener"
|
|
|
|
:class="{
|
|
|
|
focused: isFocused,
|
|
|
|
invalid: !isFocused && getIssues.length > 0 && !isValueExpression,
|
|
|
|
}"
|
|
|
|
:title="$locale.baseText('parameterInput.openEditWindow')"
|
|
|
|
@click="displayEditDialog()"
|
|
|
|
@focus="setFocus"
|
|
|
|
/>
|
2022-11-18 05:59:31 -08:00
|
|
|
</template>
|
2022-07-20 04:32:51 -07:00
|
|
|
</n8n-input>
|
2019-09-04 09:22:06 -07:00
|
|
|
</div>
|
|
|
|
|
2022-07-20 04:32:51 -07:00
|
|
|
<div v-else-if="parameter.type === 'color'" ref="inputField" class="color-input">
|
|
|
|
<el-color-picker
|
|
|
|
size="small"
|
|
|
|
class="color-picker"
|
|
|
|
:value="displayValue"
|
|
|
|
:disabled="isReadOnly"
|
|
|
|
@focus="setFocus"
|
|
|
|
@blur="onBlur"
|
|
|
|
@change="valueChanged"
|
|
|
|
:title="displayTitle"
|
|
|
|
:show-alpha="getArgument('showAlpha')"
|
|
|
|
/>
|
|
|
|
<n8n-input
|
|
|
|
v-model="tempValue"
|
|
|
|
:size="inputSize"
|
|
|
|
type="text"
|
|
|
|
:value="tempValue"
|
|
|
|
:disabled="isReadOnly"
|
|
|
|
@change="valueChanged"
|
|
|
|
@keydown.stop
|
|
|
|
@focus="setFocus"
|
|
|
|
@blur="onBlur"
|
|
|
|
:title="displayTitle"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<el-date-picker
|
|
|
|
v-else-if="parameter.type === 'dateTime'"
|
2019-06-23 03:35:23 -07:00
|
|
|
v-model="tempValue"
|
|
|
|
ref="inputField"
|
2022-07-20 04:32:51 -07:00
|
|
|
type="datetime"
|
2021-08-29 04:36:17 -07:00
|
|
|
:size="inputSize"
|
2019-06-23 03:35:23 -07:00
|
|
|
:value="displayValue"
|
2022-07-20 04:32:51 -07:00
|
|
|
:title="displayTitle"
|
2019-06-23 03:35:23 -07:00
|
|
|
:disabled="isReadOnly"
|
2022-07-20 04:32:51 -07:00
|
|
|
:placeholder="
|
|
|
|
parameter.placeholder
|
|
|
|
? getPlaceholder()
|
|
|
|
: $locale.baseText('parameterInput.selectDateAndTime')
|
|
|
|
"
|
|
|
|
:picker-options="dateTimePickerOptions"
|
2019-06-23 03:35:23 -07:00
|
|
|
@change="valueChanged"
|
2021-08-29 04:36:17 -07:00
|
|
|
@focus="setFocus"
|
2021-09-11 01:15:36 -07:00
|
|
|
@blur="onBlur"
|
2022-07-20 04:32:51 -07:00
|
|
|
@keydown.stop
|
|
|
|
/>
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-07-20 04:32:51 -07:00
|
|
|
<n8n-input-number
|
|
|
|
v-else-if="parameter.type === 'number'"
|
|
|
|
ref="inputField"
|
|
|
|
:size="inputSize"
|
2021-08-29 04:36:17 -07:00
|
|
|
:value="displayValue"
|
2022-07-20 04:32:51 -07:00
|
|
|
:controls="false"
|
|
|
|
:max="getArgument('maxValue')"
|
|
|
|
:min="getArgument('minValue')"
|
|
|
|
:precision="getArgument('numberPrecision')"
|
2021-08-29 04:36:17 -07:00
|
|
|
:disabled="isReadOnly"
|
2022-07-20 04:32:51 -07:00
|
|
|
@change="valueChanged"
|
|
|
|
@input="onTextInputChange"
|
2021-08-29 04:36:17 -07:00
|
|
|
@focus="setFocus"
|
2021-09-11 01:15:36 -07:00
|
|
|
@blur="onBlur"
|
2022-07-20 04:32:51 -07:00
|
|
|
@keydown.stop
|
2021-08-29 04:36:17 -07:00
|
|
|
:title="displayTitle"
|
2022-07-20 04:32:51 -07:00
|
|
|
:placeholder="parameter.placeholder"
|
2021-08-29 04:36:17 -07:00
|
|
|
/>
|
2022-07-20 04:32:51 -07:00
|
|
|
|
|
|
|
<credentials-select
|
2022-12-14 01:04:10 -08:00
|
|
|
v-else-if="parameter.type === 'credentialsSelect' || parameter.name === 'genericAuthType'"
|
2022-07-20 04:32:51 -07:00
|
|
|
ref="inputField"
|
|
|
|
:parameter="parameter"
|
|
|
|
:node="node"
|
|
|
|
:activeCredentialType="activeCredentialType"
|
|
|
|
:inputSize="inputSize"
|
|
|
|
:displayValue="displayValue"
|
|
|
|
:isReadOnly="isReadOnly"
|
|
|
|
:displayTitle="displayTitle"
|
|
|
|
@credentialSelected="credentialSelected"
|
|
|
|
@valueChanged="valueChanged"
|
|
|
|
@setFocus="setFocus"
|
|
|
|
@onBlur="onBlur"
|
|
|
|
>
|
2022-11-18 05:59:31 -08:00
|
|
|
<template #issues-and-options>
|
2022-07-20 04:32:51 -07:00
|
|
|
<parameter-issues :issues="getIssues" />
|
|
|
|
</template>
|
|
|
|
</credentials-select>
|
|
|
|
|
|
|
|
<n8n-select
|
|
|
|
v-else-if="parameter.type === 'options'"
|
|
|
|
ref="inputField"
|
2021-08-29 04:36:17 -07:00
|
|
|
:size="inputSize"
|
2022-07-20 04:32:51 -07:00
|
|
|
filterable
|
|
|
|
:value="displayValue"
|
|
|
|
:placeholder="
|
|
|
|
parameter.placeholder ? getPlaceholder() : $locale.baseText('parameterInput.select')
|
|
|
|
"
|
|
|
|
:loading="remoteParameterOptionsLoading"
|
|
|
|
:disabled="isReadOnly || remoteParameterOptionsLoading"
|
|
|
|
:title="displayTitle"
|
2021-08-29 04:36:17 -07:00
|
|
|
@change="valueChanged"
|
|
|
|
@keydown.stop
|
|
|
|
@focus="setFocus"
|
2021-09-11 01:15:36 -07:00
|
|
|
@blur="onBlur"
|
2022-07-20 04:32:51 -07:00
|
|
|
>
|
|
|
|
<n8n-option
|
|
|
|
v-for="option in parameterOptions"
|
|
|
|
:value="option.value"
|
|
|
|
:key="option.value"
|
|
|
|
:label="getOptionsOptionDisplayName(option)"
|
|
|
|
>
|
|
|
|
<div class="list-option">
|
2022-08-19 06:35:39 -07:00
|
|
|
<div
|
2022-09-21 01:20:29 -07:00
|
|
|
class="option-headline ph-no-capture"
|
2022-08-19 06:35:39 -07:00
|
|
|
:class="{ 'remote-parameter-option': isRemoteParameterOption(option) }"
|
|
|
|
>
|
2022-07-20 04:32:51 -07:00
|
|
|
{{ getOptionsOptionDisplayName(option) }}
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
v-if="option.description"
|
|
|
|
class="option-description"
|
|
|
|
v-html="getOptionsOptionDescription(option)"
|
|
|
|
></div>
|
|
|
|
</div>
|
|
|
|
</n8n-option>
|
|
|
|
</n8n-select>
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-07-20 04:32:51 -07:00
|
|
|
<n8n-select
|
|
|
|
v-else-if="parameter.type === 'multiOptions'"
|
|
|
|
ref="inputField"
|
|
|
|
:size="inputSize"
|
|
|
|
filterable
|
|
|
|
multiple
|
|
|
|
:value="displayValue"
|
|
|
|
:loading="remoteParameterOptionsLoading"
|
|
|
|
:disabled="isReadOnly || remoteParameterOptionsLoading"
|
|
|
|
:title="displayTitle"
|
|
|
|
:placeholder="$locale.baseText('parameterInput.select')"
|
|
|
|
@change="valueChanged"
|
|
|
|
@keydown.stop
|
|
|
|
@focus="setFocus"
|
|
|
|
@blur="onBlur"
|
2019-06-23 03:35:23 -07:00
|
|
|
>
|
2022-07-20 04:32:51 -07:00
|
|
|
<n8n-option
|
|
|
|
v-for="option in parameterOptions"
|
|
|
|
:value="option.value"
|
|
|
|
:key="option.value"
|
|
|
|
:label="getOptionsOptionDisplayName(option)"
|
|
|
|
>
|
|
|
|
<div class="list-option">
|
|
|
|
<div class="option-headline">{{ getOptionsOptionDisplayName(option) }}</div>
|
|
|
|
<div
|
|
|
|
v-if="option.description"
|
|
|
|
class="option-description"
|
|
|
|
v-html="getOptionsOptionDescription(option)"
|
|
|
|
></div>
|
2021-11-15 02:19:43 -08:00
|
|
|
</div>
|
2022-07-20 04:32:51 -07:00
|
|
|
</n8n-option>
|
|
|
|
</n8n-select>
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2023-03-31 03:35:02 -07:00
|
|
|
<!-- temporary state of booleans while data is mapped -->
|
|
|
|
<n8n-input
|
|
|
|
v-else-if="parameter.type === 'boolean' && droppable"
|
|
|
|
:size="inputSize"
|
|
|
|
:value="JSON.stringify(displayValue)"
|
|
|
|
:disabled="isReadOnly"
|
|
|
|
:title="displayTitle"
|
|
|
|
/>
|
2022-07-20 04:32:51 -07:00
|
|
|
<el-switch
|
|
|
|
v-else-if="parameter.type === 'boolean'"
|
|
|
|
class="switch-input"
|
|
|
|
ref="inputField"
|
|
|
|
active-color="#13ce66"
|
|
|
|
:value="displayValue"
|
|
|
|
:disabled="isReadOnly"
|
|
|
|
@change="valueChanged"
|
|
|
|
/>
|
|
|
|
</div>
|
2021-08-29 04:36:17 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
<parameter-issues
|
|
|
|
v-if="parameter.type !== 'credentialsSelect' && !isResourceLocatorParameter"
|
|
|
|
:issues="getIssues"
|
|
|
|
/>
|
2019-06-23 03:35:23 -07:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2022-09-23 07:14:28 -07:00
|
|
|
/* eslint-disable prefer-spread */
|
2023-05-16 02:43:46 -07:00
|
|
|
import { defineComponent } from 'vue';
|
|
|
|
import { mapStores } from 'pinia';
|
2022-09-23 07:14:28 -07:00
|
|
|
|
2023-02-23 07:16:05 -08:00
|
|
|
import { get } from 'lodash-es';
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2023-04-24 03:18:24 -07:00
|
|
|
import type { INodeUi, INodeUpdatePropertiesInformation } from '@/Interface';
|
|
|
|
import type {
|
2022-02-05 13:55:43 -08:00
|
|
|
ILoadOptions,
|
2019-12-16 18:27:56 -08:00
|
|
|
INodeParameters,
|
2019-06-23 03:35:23 -07:00
|
|
|
INodePropertyOptions,
|
|
|
|
Workflow,
|
2022-10-12 05:06:28 -07:00
|
|
|
INodeProperties,
|
|
|
|
INodePropertyCollection,
|
2022-09-22 10:04:26 -07:00
|
|
|
NodeParameterValueType,
|
feat(editor): Implement Resource Mapper component (#6207)
* :zap: scaffolding
* :zap: finished scaffolding
* :zap: renamed types
* :zap: updated subtitle
* :zap: renamed functions file, UI updates
* :zap: query parameters fixes, ui updates, refactoring
* :zap: fixes for credentials test, setup for error parsing
* :zap: rlc for schema and table, error handling tweaks
* :zap: delete operation, new options
* :zap: columns loader
* :zap: linter fixes
* :zap: where clauses setup
* :zap: logic for processing where clauses
* :zap: select operation
* :zap: refactoring
* :zap: data mode for insert and update, wip
* :zap: data mapping, insert update, skip on conflict option
* :zap: select columns with spaces fix
* :zap: update operation update, wip
* :zap: finished update operation
* :zap: upsert operation
* :zap: ui fixes
* Copy updates.
* Copy updates.
* :zap: option to convert empty strings to nulls, schema checks
* :zap: UI requested updates
* :zap: ssh setup WIP
* :zap: fixes, ssh WIP
* :zap: ssh fixes, credentials
* :zap: credentials testing update
* :zap: uncaught error fix
* :zap: clean up
* :zap: address in use fix
* :zap: improved error message
* :zap: tests setup
* :zap: unit tests wip
* :zap: config files clean up
* :zap: utils unit tests
* :zap: refactoring
* :zap: setup for testing operations, tests for deleteTable operation
* :zap: executeQuery and insert operations tests
* :zap: select, update, upsert operations tests
* :zap: runQueries tests setup
* :zap: hint to query
* Copy updates.
* :zap: ui fixes
* :zap: clean up
* :zap: error message update
* :zap: ui update
* Minor tweaks to query params decription.
* feat(Google Sheets Node): Implement Resource mapper in Google Sheets node (#5752)
* ✨ Added initial resource mapping support in google sheets node
* ✨ Wired mapping API endpoint with node-specific logic for fetching mapping fields
* ✨ Implementing mapping fields logic for google sheets
* ✨ Updating Google Sheets execute methods to support resource mapper fields
* 🚧 Added initial version of `ResourceLocator` component
* 👌 Added `update` mode to resource mapper modes
* 👌 Addressing PR feedback
* 👌 Removing leftover const reference
* 👕 Fixing lint errors
* :zap: singlton for conections
* :zap: credentials test fix, clean up
* feat(Postgres Node): Add resource mapper to new version of Postgres node (#5814)
* :zap: scaffolding
* :zap: finished scaffolding
* :zap: renamed types
* :zap: updated subtitle
* :zap: renamed functions file, UI updates
* :zap: query parameters fixes, ui updates, refactoring
* :zap: fixes for credentials test, setup for error parsing
* :zap: rlc for schema and table, error handling tweaks
* :zap: delete operation, new options
* :zap: columns loader
* :zap: linter fixes
* :zap: where clauses setup
* :zap: logic for processing where clauses
* :zap: select operation
* :zap: refactoring
* :zap: data mode for insert and update, wip
* :zap: data mapping, insert update, skip on conflict option
* :zap: select columns with spaces fix
* :zap: update operation update, wip
* :zap: finished update operation
* :zap: upsert operation
* :zap: ui fixes
* Copy updates.
* Copy updates.
* :zap: option to convert empty strings to nulls, schema checks
* :zap: UI requested updates
* :zap: ssh setup WIP
* :zap: fixes, ssh WIP
* :zap: ssh fixes, credentials
* :zap: credentials testing update
* :zap: uncaught error fix
* :zap: clean up
* :zap: address in use fix
* :zap: improved error message
* :zap: tests setup
* :zap: unit tests wip
* :zap: config files clean up
* :zap: utils unit tests
* :zap: refactoring
* :zap: setup for testing operations, tests for deleteTable operation
* :zap: executeQuery and insert operations tests
* :zap: select, update, upsert operations tests
* :zap: runQueries tests setup
* :zap: hint to query
* Copy updates.
* :zap: ui fixes
* :zap: clean up
* :zap: error message update
* :zap: ui update
* Minor tweaks to query params decription.
* ✨ Updated Postgres node to use resource mapper component
* ✨ Implemented postgres <-> resource mapper type mapping
* ✨ Updated Postgres node execution to use resource mapper fields in v3
* 🔥 Removing unused import
---------
Co-authored-by: Michael Kret <michael.k@radency.com>
Co-authored-by: Giulio Andreini <g.andreini@gmail.com>
* feat(core): Resource editor componend P0 (#5970)
* ✨ Added inital value of mapping mode dropdown
* ✨ Finished mapping mode selector
* ✨ Finished implementing mapping mode selector
* ✨ Implemented 'Columns to match on' dropdown
* ✨ Implemented `loadOptionsDependOn` support in resource mapper
* ✨ Implemented initial version of mapping fields
* ✨ Implementing dependant fields watcher in new component setup
* ✨ Generating correct resource mapper field types. Added `supportAutoMap` to node specification and UI. Not showing fields with `display=false`. Pre-selecting matching columns if it's the only one
* ✨ Handling matching columns correctly in UI
* ✨ Saving and loading resourceMapper values in component
* ✨ Implemented proper data saving and loading
* ✨ ResourceMapper component refactor, fixing value save/load
* ✨ Refactoring MatchingColumnSelect component. Updating Sheets node to use single key match and Postgres to use multi key
* ✨ Updated Google Sheets node to work with the new UI
* ✨ Updating Postgres Node to work with new UI
* ✨ Additional loading indicator that shown if there is no mapping mode selector
* ✨ Removing hard-coded values, fixing matching columns ordering, refactoring
* ✨ Updating field names in nodes
* ✨ Fixing minor UI issues
* ✨ Implemented matching fields filter logic
* ✨ Moving loading label outside of fields list
* ✅ Added initial unit tests for resource mapper
* ✅ Finished default rendering test
* ✅ Test refactoring
* ✅ Finished unit tests
* 🔨 Updating the way i18n is used in resource mapper components
* ✔️ Fixing value to match on logic for postgres node
* ✨ Hiding mapping fields when auto-map mode is selected
* ✨ Syncing selected mapping mode between components
* ✨ Fixing dateTime input rendering and adding update check to Postgres node
* ✨ Properly handling database connections. Sending null for empty string values.
* 💄 Updated wording in the error message for non-existing rows
* ✨ Fixing issues with selected matching values
* ✔️ Updating unit tests after matching logic update
* ✨ Updating matching columns when new fields are loaded
* ✨ Defaulting to null for empty parameter values
* ✨ Allowing zero as valid value for number imputs
* ✨ Updated list of types that use datepicker as widger
* ✨ Using text inputs for time types
* ✨ Initial mapping field rework
* ✨ Added new component for mapping fields, moved bit of logic from root component to matching selector, fixing some lint errors
* ✨ Added tooltip for columns that cannot be deleted
* ✨ Saving deleted values in parameter value
* ✨ Implemented control to add/remove mapping fields
* ✨ Syncing field list with add field dropdown when changing dependent values
* ✨ Not showing removed fields in matching columns selector. Updating wording in matching columns selector description
* ✨ Implementing disabled states for add/remove all fields options
* ✨ Saving removed columns separately, updating copy
* ✨ Implemented resource mapper values validation
* ✨ Updated validation logic and error input styling
* ✨ Validating resource mapper fields when new nodes are added
* ✨ Using node field words in validation, refactoring resource mapper component
* ✨ Implemented schema syncing and add/remove all fields
* ✨ Implemented custom parameter actions
* ✨ Implemented loading indicator in parameter options
* 🔨 Removing unnecessary constants and vue props
* ✨ Handling default values properly
* ✨ Fixing validation logic
* 👕 Fixing lint errors
* ⚡ Fixing type issues
* ⚡ Not showing fields by default if `addAllFields` is set to `false`
* ✨ Implemented field type validation in resource mapper
* ✨ Updated casing in copy, removed all/remove all option from bottom menu
* ✨ Added auto mapping mode notice
* ✨ Added support for more types in validation
* ✨ Added support for enumerated values
* ✨ Fixing imports after merging
* ✨ Not showing removed fields in matching columns selector. Refactoring validation logic.
* 👕 Fixing imports
* ✔️ Updating unit tests
* ✅ Added resource mapper schema tests
* ⚡ Removing `match` from resource mapper field definition, fixing matching columns loading
* ⚡ Fixed schema merging
* :zap: update operation return data fix
* :zap: review
* 🐛 Added missing import
* 💄 Updating parameter actions icon based on the ui review
* 💄 Updating word capitalisation in tooltips
* 💄 Added empty state to mapping fields list
* 💄 Removing asterisk from fields, updating tooltips for matching fields
* ⚡ Preventing matching fields from being removed by 'Remove All option'
* ⚡ Not showing hidden fields in the `Add field` dropdown
* ⚡ Added support for custom matching columns labels
* :zap: query optimization
* :zap: fix
* ⚡ Optimizing Postgres node enumeration logic
* ⚡ Added empty state for matching columns
* ⚡ Only fully loading fields if there is no schema fetched
* ⚡ Hiding mapping fields if there is no matching columns available in the schema
* ✔️ Fixing minor issues
* ✨ Implemented runtime type validation
* 🔨 Refactoring validation logic
* ✨ Implemented required check, added more custom messages
* ✨ Skipping boolean type in required check
* Type check improvements
* ✨ Only reloading fields if dependent values actually change
* ✨ Adding item index to validation error title
* ✨ Updating Postgres fetching logic, using resource mapper mode to determine if a field can be deleted
* ✨ Resetting field values when adding them via the addAll option
* ⚡ Using minor version (2.2) for new Postgres node
* ⚡ Implemented proper date validation and type casting
* 👕 Consolidating typing
* ✅ Added unit tests for type validations
* 👌 Addressing front-end review comments
* ⚡ More refactoring to address review changes
* ⚡ Updating leftover props
* ⚡ Added fallback for ISO dates with invalid timezones
* Added timestamp to datetime test cases
* ⚡ Reseting matching columns if operation changes
* ⚡ Not forcing auto-increment fields to be filled in in Postgres node. Handling null values
* 💄 Added a custom message for invalid dates
* ⚡ Better handling of JSON values
* ⚡ Updating codemirror readonly stauts based on component property, handling objects in json validation
* Deleting leftover console.log
* ⚡ Better time validation
* ⚡ Fixing build error after merging
* 👕 Fixing lint error
* ⚡ Updating node configuration values
* ⚡ Handling postgres arrays better
* ⚡ Handling SQL array syntax
* ⚡ Updating time validation rules to include timezone
* ⚡ Sending expressions that resolve to `null` or `undefined` by the resource mapper to delete cell content in Google Sheets
* ⚡ Allowing removed fields to be selected for match
* ⚡ Updated the query for fetching unique columns and primary keys
* ⚡ Optimizing the unique query
* ⚡ Setting timezone to all parsed dates
* ⚡ Addressing PR review feedback
* ⚡ Configuring Sheets node for production, minor vue component update
* New cases added to the TypeValidation test.
* ✅ Tweaking validation rules for arrays/objects and updating test cases
---------
Co-authored-by: Michael Kret <michael.k@radency.com>
Co-authored-by: Giulio Andreini <g.andreini@gmail.com>
2023-05-31 02:56:09 -07:00
|
|
|
IParameterLabel,
|
2023-04-25 07:57:21 -07:00
|
|
|
EditorType,
|
|
|
|
CodeNodeEditorLanguage,
|
2019-06-23 03:35:23 -07:00
|
|
|
} from 'n8n-workflow';
|
2023-04-25 02:47:03 -07:00
|
|
|
import { NodeHelpers } from 'n8n-workflow';
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-05-24 02:36:19 -07:00
|
|
|
import CredentialsSelect from '@/components/CredentialsSelect.vue';
|
2019-06-23 03:35:23 -07:00
|
|
|
import ExpressionEdit from '@/components/ExpressionEdit.vue';
|
2022-05-24 02:36:19 -07:00
|
|
|
import ParameterIssues from '@/components/ParameterIssues.vue';
|
2022-09-21 06:44:45 -07:00
|
|
|
import ResourceLocator from '@/components/ResourceLocator/ResourceLocator.vue';
|
2022-12-14 05:43:02 -08:00
|
|
|
import ExpressionParameterInput from '@/components/ExpressionParameterInput.vue';
|
2019-06-23 03:35:23 -07:00
|
|
|
import TextEdit from '@/components/TextEdit.vue';
|
2022-10-13 05:28:02 -07:00
|
|
|
import CodeNodeEditor from '@/components/CodeNodeEditor/CodeNodeEditor.vue';
|
2023-01-26 01:03:13 -08:00
|
|
|
import HtmlEditor from '@/components/HtmlEditor/HtmlEditor.vue';
|
2023-04-25 09:18:27 -07:00
|
|
|
import SqlEditor from '@/components/SqlEditor/SqlEditor.vue';
|
2022-11-23 04:41:53 -08:00
|
|
|
import { externalHooks } from '@/mixins/externalHooks';
|
|
|
|
import { nodeHelpers } from '@/mixins/nodeHelpers';
|
|
|
|
import { workflowHelpers } from '@/mixins/workflowHelpers';
|
|
|
|
import { hasExpressionMapping, isValueExpression, isResourceLocatorValue } from '@/utils';
|
2023-04-25 09:18:27 -07:00
|
|
|
import { CODE_NODE_TYPE, CUSTOM_API_CALL_KEY, HTML_NODE_TYPE } from '@/constants';
|
2023-04-24 03:18:24 -07:00
|
|
|
import type { PropType } from 'vue';
|
2022-11-23 04:41:53 -08:00
|
|
|
import { debounceHelper } from '@/mixins/debounce';
|
2023-05-05 01:41:54 -07:00
|
|
|
import { useWorkflowsStore } from '@/stores/workflows.store';
|
|
|
|
import { useNDVStore } from '@/stores/ndv.store';
|
|
|
|
import { useNodeTypesStore } from '@/stores/nodeTypes.store';
|
|
|
|
import { useCredentialsStore } from '@/stores/credentials.store';
|
2023-05-30 09:43:46 -07:00
|
|
|
import { useSettingsStore } from '@/stores/settings.store';
|
2023-04-06 06:32:45 -07:00
|
|
|
import { htmlEditorEventBus } from '@/event-bus';
|
2023-05-02 01:15:16 -07:00
|
|
|
import Vue from 'vue';
|
2023-06-20 03:00:53 -07:00
|
|
|
import type { EventBus } from 'n8n-design-system/utils';
|
|
|
|
import { createEventBus } from 'n8n-design-system/utils';
|
2023-04-21 06:59:04 -07:00
|
|
|
|
2023-05-16 02:43:46 -07:00
|
|
|
export default defineComponent({
|
2022-12-14 01:04:10 -08:00
|
|
|
name: 'parameter-input',
|
2023-05-16 02:43:46 -07:00
|
|
|
mixins: [externalHooks, nodeHelpers, workflowHelpers, debounceHelper],
|
2022-12-14 01:04:10 -08:00
|
|
|
components: {
|
|
|
|
CodeNodeEditor,
|
2023-01-26 01:03:13 -08:00
|
|
|
HtmlEditor,
|
2023-04-25 09:18:27 -07:00
|
|
|
SqlEditor,
|
2022-12-14 01:04:10 -08:00
|
|
|
ExpressionEdit,
|
2022-12-14 05:43:02 -08:00
|
|
|
ExpressionParameterInput,
|
2022-12-14 01:04:10 -08:00
|
|
|
CredentialsSelect,
|
|
|
|
ParameterIssues,
|
|
|
|
ResourceLocator,
|
|
|
|
TextEdit,
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
isReadOnly: {
|
|
|
|
type: Boolean,
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
2022-12-14 01:04:10 -08:00
|
|
|
parameter: {
|
|
|
|
type: Object as PropType<INodeProperties>,
|
2022-10-12 05:06:28 -07:00
|
|
|
},
|
2022-12-14 01:04:10 -08:00
|
|
|
path: {
|
|
|
|
type: String,
|
|
|
|
},
|
|
|
|
value: {
|
|
|
|
type: [String, Number, Boolean, Array, Object] as PropType<NodeParameterValueType>,
|
|
|
|
},
|
|
|
|
hideLabel: {
|
|
|
|
type: Boolean,
|
|
|
|
},
|
|
|
|
droppable: {
|
|
|
|
type: Boolean,
|
|
|
|
},
|
|
|
|
activeDrop: {
|
|
|
|
type: Boolean,
|
|
|
|
},
|
|
|
|
forceShowExpression: {
|
|
|
|
type: Boolean,
|
|
|
|
},
|
|
|
|
hint: {
|
|
|
|
type: String as PropType<string | undefined>,
|
|
|
|
},
|
|
|
|
inputSize: {
|
|
|
|
type: String,
|
|
|
|
},
|
|
|
|
hideIssues: {
|
|
|
|
type: Boolean,
|
|
|
|
},
|
|
|
|
documentationUrl: {
|
|
|
|
type: String as PropType<string | undefined>,
|
|
|
|
},
|
|
|
|
errorHighlight: {
|
|
|
|
type: Boolean,
|
|
|
|
},
|
|
|
|
isForCredential: {
|
|
|
|
type: Boolean,
|
|
|
|
},
|
|
|
|
eventSource: {
|
|
|
|
type: String,
|
|
|
|
},
|
|
|
|
expressionEvaluated: {
|
|
|
|
type: String as PropType<string | undefined>,
|
|
|
|
},
|
feat(editor): Implement Resource Mapper component (#6207)
* :zap: scaffolding
* :zap: finished scaffolding
* :zap: renamed types
* :zap: updated subtitle
* :zap: renamed functions file, UI updates
* :zap: query parameters fixes, ui updates, refactoring
* :zap: fixes for credentials test, setup for error parsing
* :zap: rlc for schema and table, error handling tweaks
* :zap: delete operation, new options
* :zap: columns loader
* :zap: linter fixes
* :zap: where clauses setup
* :zap: logic for processing where clauses
* :zap: select operation
* :zap: refactoring
* :zap: data mode for insert and update, wip
* :zap: data mapping, insert update, skip on conflict option
* :zap: select columns with spaces fix
* :zap: update operation update, wip
* :zap: finished update operation
* :zap: upsert operation
* :zap: ui fixes
* Copy updates.
* Copy updates.
* :zap: option to convert empty strings to nulls, schema checks
* :zap: UI requested updates
* :zap: ssh setup WIP
* :zap: fixes, ssh WIP
* :zap: ssh fixes, credentials
* :zap: credentials testing update
* :zap: uncaught error fix
* :zap: clean up
* :zap: address in use fix
* :zap: improved error message
* :zap: tests setup
* :zap: unit tests wip
* :zap: config files clean up
* :zap: utils unit tests
* :zap: refactoring
* :zap: setup for testing operations, tests for deleteTable operation
* :zap: executeQuery and insert operations tests
* :zap: select, update, upsert operations tests
* :zap: runQueries tests setup
* :zap: hint to query
* Copy updates.
* :zap: ui fixes
* :zap: clean up
* :zap: error message update
* :zap: ui update
* Minor tweaks to query params decription.
* feat(Google Sheets Node): Implement Resource mapper in Google Sheets node (#5752)
* ✨ Added initial resource mapping support in google sheets node
* ✨ Wired mapping API endpoint with node-specific logic for fetching mapping fields
* ✨ Implementing mapping fields logic for google sheets
* ✨ Updating Google Sheets execute methods to support resource mapper fields
* 🚧 Added initial version of `ResourceLocator` component
* 👌 Added `update` mode to resource mapper modes
* 👌 Addressing PR feedback
* 👌 Removing leftover const reference
* 👕 Fixing lint errors
* :zap: singlton for conections
* :zap: credentials test fix, clean up
* feat(Postgres Node): Add resource mapper to new version of Postgres node (#5814)
* :zap: scaffolding
* :zap: finished scaffolding
* :zap: renamed types
* :zap: updated subtitle
* :zap: renamed functions file, UI updates
* :zap: query parameters fixes, ui updates, refactoring
* :zap: fixes for credentials test, setup for error parsing
* :zap: rlc for schema and table, error handling tweaks
* :zap: delete operation, new options
* :zap: columns loader
* :zap: linter fixes
* :zap: where clauses setup
* :zap: logic for processing where clauses
* :zap: select operation
* :zap: refactoring
* :zap: data mode for insert and update, wip
* :zap: data mapping, insert update, skip on conflict option
* :zap: select columns with spaces fix
* :zap: update operation update, wip
* :zap: finished update operation
* :zap: upsert operation
* :zap: ui fixes
* Copy updates.
* Copy updates.
* :zap: option to convert empty strings to nulls, schema checks
* :zap: UI requested updates
* :zap: ssh setup WIP
* :zap: fixes, ssh WIP
* :zap: ssh fixes, credentials
* :zap: credentials testing update
* :zap: uncaught error fix
* :zap: clean up
* :zap: address in use fix
* :zap: improved error message
* :zap: tests setup
* :zap: unit tests wip
* :zap: config files clean up
* :zap: utils unit tests
* :zap: refactoring
* :zap: setup for testing operations, tests for deleteTable operation
* :zap: executeQuery and insert operations tests
* :zap: select, update, upsert operations tests
* :zap: runQueries tests setup
* :zap: hint to query
* Copy updates.
* :zap: ui fixes
* :zap: clean up
* :zap: error message update
* :zap: ui update
* Minor tweaks to query params decription.
* ✨ Updated Postgres node to use resource mapper component
* ✨ Implemented postgres <-> resource mapper type mapping
* ✨ Updated Postgres node execution to use resource mapper fields in v3
* 🔥 Removing unused import
---------
Co-authored-by: Michael Kret <michael.k@radency.com>
Co-authored-by: Giulio Andreini <g.andreini@gmail.com>
* feat(core): Resource editor componend P0 (#5970)
* ✨ Added inital value of mapping mode dropdown
* ✨ Finished mapping mode selector
* ✨ Finished implementing mapping mode selector
* ✨ Implemented 'Columns to match on' dropdown
* ✨ Implemented `loadOptionsDependOn` support in resource mapper
* ✨ Implemented initial version of mapping fields
* ✨ Implementing dependant fields watcher in new component setup
* ✨ Generating correct resource mapper field types. Added `supportAutoMap` to node specification and UI. Not showing fields with `display=false`. Pre-selecting matching columns if it's the only one
* ✨ Handling matching columns correctly in UI
* ✨ Saving and loading resourceMapper values in component
* ✨ Implemented proper data saving and loading
* ✨ ResourceMapper component refactor, fixing value save/load
* ✨ Refactoring MatchingColumnSelect component. Updating Sheets node to use single key match and Postgres to use multi key
* ✨ Updated Google Sheets node to work with the new UI
* ✨ Updating Postgres Node to work with new UI
* ✨ Additional loading indicator that shown if there is no mapping mode selector
* ✨ Removing hard-coded values, fixing matching columns ordering, refactoring
* ✨ Updating field names in nodes
* ✨ Fixing minor UI issues
* ✨ Implemented matching fields filter logic
* ✨ Moving loading label outside of fields list
* ✅ Added initial unit tests for resource mapper
* ✅ Finished default rendering test
* ✅ Test refactoring
* ✅ Finished unit tests
* 🔨 Updating the way i18n is used in resource mapper components
* ✔️ Fixing value to match on logic for postgres node
* ✨ Hiding mapping fields when auto-map mode is selected
* ✨ Syncing selected mapping mode between components
* ✨ Fixing dateTime input rendering and adding update check to Postgres node
* ✨ Properly handling database connections. Sending null for empty string values.
* 💄 Updated wording in the error message for non-existing rows
* ✨ Fixing issues with selected matching values
* ✔️ Updating unit tests after matching logic update
* ✨ Updating matching columns when new fields are loaded
* ✨ Defaulting to null for empty parameter values
* ✨ Allowing zero as valid value for number imputs
* ✨ Updated list of types that use datepicker as widger
* ✨ Using text inputs for time types
* ✨ Initial mapping field rework
* ✨ Added new component for mapping fields, moved bit of logic from root component to matching selector, fixing some lint errors
* ✨ Added tooltip for columns that cannot be deleted
* ✨ Saving deleted values in parameter value
* ✨ Implemented control to add/remove mapping fields
* ✨ Syncing field list with add field dropdown when changing dependent values
* ✨ Not showing removed fields in matching columns selector. Updating wording in matching columns selector description
* ✨ Implementing disabled states for add/remove all fields options
* ✨ Saving removed columns separately, updating copy
* ✨ Implemented resource mapper values validation
* ✨ Updated validation logic and error input styling
* ✨ Validating resource mapper fields when new nodes are added
* ✨ Using node field words in validation, refactoring resource mapper component
* ✨ Implemented schema syncing and add/remove all fields
* ✨ Implemented custom parameter actions
* ✨ Implemented loading indicator in parameter options
* 🔨 Removing unnecessary constants and vue props
* ✨ Handling default values properly
* ✨ Fixing validation logic
* 👕 Fixing lint errors
* ⚡ Fixing type issues
* ⚡ Not showing fields by default if `addAllFields` is set to `false`
* ✨ Implemented field type validation in resource mapper
* ✨ Updated casing in copy, removed all/remove all option from bottom menu
* ✨ Added auto mapping mode notice
* ✨ Added support for more types in validation
* ✨ Added support for enumerated values
* ✨ Fixing imports after merging
* ✨ Not showing removed fields in matching columns selector. Refactoring validation logic.
* 👕 Fixing imports
* ✔️ Updating unit tests
* ✅ Added resource mapper schema tests
* ⚡ Removing `match` from resource mapper field definition, fixing matching columns loading
* ⚡ Fixed schema merging
* :zap: update operation return data fix
* :zap: review
* 🐛 Added missing import
* 💄 Updating parameter actions icon based on the ui review
* 💄 Updating word capitalisation in tooltips
* 💄 Added empty state to mapping fields list
* 💄 Removing asterisk from fields, updating tooltips for matching fields
* ⚡ Preventing matching fields from being removed by 'Remove All option'
* ⚡ Not showing hidden fields in the `Add field` dropdown
* ⚡ Added support for custom matching columns labels
* :zap: query optimization
* :zap: fix
* ⚡ Optimizing Postgres node enumeration logic
* ⚡ Added empty state for matching columns
* ⚡ Only fully loading fields if there is no schema fetched
* ⚡ Hiding mapping fields if there is no matching columns available in the schema
* ✔️ Fixing minor issues
* ✨ Implemented runtime type validation
* 🔨 Refactoring validation logic
* ✨ Implemented required check, added more custom messages
* ✨ Skipping boolean type in required check
* Type check improvements
* ✨ Only reloading fields if dependent values actually change
* ✨ Adding item index to validation error title
* ✨ Updating Postgres fetching logic, using resource mapper mode to determine if a field can be deleted
* ✨ Resetting field values when adding them via the addAll option
* ⚡ Using minor version (2.2) for new Postgres node
* ⚡ Implemented proper date validation and type casting
* 👕 Consolidating typing
* ✅ Added unit tests for type validations
* 👌 Addressing front-end review comments
* ⚡ More refactoring to address review changes
* ⚡ Updating leftover props
* ⚡ Added fallback for ISO dates with invalid timezones
* Added timestamp to datetime test cases
* ⚡ Reseting matching columns if operation changes
* ⚡ Not forcing auto-increment fields to be filled in in Postgres node. Handling null values
* 💄 Added a custom message for invalid dates
* ⚡ Better handling of JSON values
* ⚡ Updating codemirror readonly stauts based on component property, handling objects in json validation
* Deleting leftover console.log
* ⚡ Better time validation
* ⚡ Fixing build error after merging
* 👕 Fixing lint error
* ⚡ Updating node configuration values
* ⚡ Handling postgres arrays better
* ⚡ Handling SQL array syntax
* ⚡ Updating time validation rules to include timezone
* ⚡ Sending expressions that resolve to `null` or `undefined` by the resource mapper to delete cell content in Google Sheets
* ⚡ Allowing removed fields to be selected for match
* ⚡ Updated the query for fetching unique columns and primary keys
* ⚡ Optimizing the unique query
* ⚡ Setting timezone to all parsed dates
* ⚡ Addressing PR review feedback
* ⚡ Configuring Sheets node for production, minor vue component update
* New cases added to the TypeValidation test.
* ✅ Tweaking validation rules for arrays/objects and updating test cases
---------
Co-authored-by: Michael Kret <michael.k@radency.com>
Co-authored-by: Giulio Andreini <g.andreini@gmail.com>
2023-05-31 02:56:09 -07:00
|
|
|
label: {
|
|
|
|
type: Object as PropType<IParameterLabel>,
|
|
|
|
default: () => ({
|
|
|
|
size: 'small',
|
|
|
|
}),
|
|
|
|
},
|
2023-06-20 03:00:53 -07:00
|
|
|
eventBus: {
|
|
|
|
type: Object as PropType<EventBus>,
|
|
|
|
default: () => createEventBus(),
|
|
|
|
},
|
2022-12-14 01:04:10 -08:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
codeEditDialogVisible: false,
|
|
|
|
nodeName: '',
|
|
|
|
expressionAddOperation: 'set' as 'add' | 'set',
|
|
|
|
expressionEditDialogVisible: false,
|
|
|
|
remoteParameterOptions: [] as INodePropertyOptions[],
|
|
|
|
remoteParameterOptionsLoading: false,
|
|
|
|
remoteParameterOptionsLoadingIssues: null as string | null,
|
|
|
|
textEditDialogVisible: false,
|
|
|
|
tempValue: '', // el-date-picker and el-input does not seem to work without v-model so add one
|
|
|
|
CUSTOM_API_CALL_KEY,
|
|
|
|
activeCredentialType: '',
|
|
|
|
dateTimePickerOptions: {
|
|
|
|
shortcuts: [
|
|
|
|
{
|
|
|
|
text: 'Today', // TODO
|
2022-12-15 05:06:00 -08:00
|
|
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
2022-12-14 01:04:10 -08:00
|
|
|
onClick(picker: any) {
|
|
|
|
picker.$emit('pick', new Date());
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
2022-12-14 01:04:10 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
text: 'Yesterday', // TODO
|
2022-12-15 05:06:00 -08:00
|
|
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
2022-12-14 01:04:10 -08:00
|
|
|
onClick(picker: any) {
|
|
|
|
const date = new Date();
|
|
|
|
date.setTime(date.getTime() - 3600 * 1000 * 24);
|
|
|
|
picker.$emit('pick', date);
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
2022-12-14 01:04:10 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
text: 'A week ago', // TODO
|
2022-12-15 05:06:00 -08:00
|
|
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
2022-12-14 01:04:10 -08:00
|
|
|
onClick(picker: any) {
|
|
|
|
const date = new Date();
|
|
|
|
date.setTime(date.getTime() - 3600 * 1000 * 24 * 7);
|
|
|
|
picker.$emit('pick', date);
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
2022-12-14 01:04:10 -08:00
|
|
|
},
|
|
|
|
],
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
2022-12-14 05:43:02 -08:00
|
|
|
isFocused: false,
|
2022-12-14 01:04:10 -08:00
|
|
|
};
|
|
|
|
},
|
|
|
|
watch: {
|
2023-06-03 08:58:09 -07:00
|
|
|
async dependentParametersValues() {
|
2022-12-14 01:04:10 -08:00
|
|
|
// Reload the remote parameters whenever a parameter
|
|
|
|
// on which the current field depends on changes
|
2023-06-03 08:58:09 -07:00
|
|
|
await this.loadRemoteParameterOptions();
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
2022-12-14 01:04:10 -08:00
|
|
|
value() {
|
|
|
|
if (this.parameter.type === 'color' && this.getArgument('showAlpha') === true) {
|
|
|
|
// Do not set for color with alpha else wrong value gets displayed in field
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.tempValue = this.displayValue as string;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
computed: {
|
2023-05-30 09:43:46 -07:00
|
|
|
...mapStores(
|
|
|
|
useCredentialsStore,
|
|
|
|
useNodeTypesStore,
|
|
|
|
useNDVStore,
|
|
|
|
useWorkflowsStore,
|
|
|
|
useSettingsStore,
|
|
|
|
),
|
2022-12-14 01:04:10 -08:00
|
|
|
expressionDisplayValue(): string {
|
2022-12-20 07:23:57 -08:00
|
|
|
if (this.forceShowExpression) {
|
2022-12-14 01:04:10 -08:00
|
|
|
return '';
|
|
|
|
}
|
2020-01-04 20:28:09 -08:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
const value = isResourceLocatorValue(this.value) ? this.value.value : this.value;
|
|
|
|
if (typeof value === 'string' && value.startsWith('=')) {
|
|
|
|
return value.slice(1);
|
|
|
|
}
|
2020-01-04 20:28:09 -08:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
return `${this.displayValue ?? ''}`;
|
|
|
|
},
|
|
|
|
isValueExpression(): boolean {
|
|
|
|
return isValueExpression(this.parameter, this.value);
|
|
|
|
},
|
|
|
|
codeAutocomplete(): string | undefined {
|
|
|
|
return this.getArgument('codeAutocomplete') as string | undefined;
|
|
|
|
},
|
|
|
|
dependentParametersValues(): string | null {
|
|
|
|
const loadOptionsDependsOn = this.getArgument('loadOptionsDependsOn') as string[] | undefined;
|
2020-01-04 20:28:09 -08:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
if (loadOptionsDependsOn === undefined) {
|
|
|
|
return null;
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
// Get the resolved parameter values of the current node
|
|
|
|
const currentNodeParameters = this.ndvStore.activeNode?.parameters;
|
|
|
|
try {
|
|
|
|
const resolvedNodeParameters = this.resolveParameter(currentNodeParameters);
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
const returnValues: string[] = [];
|
|
|
|
for (const parameterPath of loadOptionsDependsOn) {
|
|
|
|
returnValues.push(get(resolvedNodeParameters, parameterPath) as string);
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
return returnValues.join('|');
|
|
|
|
} catch (error) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
},
|
2023-04-25 07:57:21 -07:00
|
|
|
node(): INodeUi {
|
|
|
|
return this.ndvStore.activeNode!;
|
2022-12-14 01:04:10 -08:00
|
|
|
},
|
|
|
|
displayTitle(): string {
|
|
|
|
const interpolation = { interpolate: { shortPath: this.shortPath } };
|
|
|
|
|
|
|
|
if (this.getIssues.length && this.isValueExpression) {
|
|
|
|
return this.$locale.baseText(
|
|
|
|
'parameterInput.parameterHasIssuesAndExpression',
|
|
|
|
interpolation,
|
|
|
|
);
|
|
|
|
} else if (this.getIssues.length && !this.isValueExpression) {
|
|
|
|
return this.$locale.baseText('parameterInput.parameterHasIssues', interpolation);
|
|
|
|
} else if (!this.getIssues.length && this.isValueExpression) {
|
|
|
|
return this.$locale.baseText('parameterInput.parameterHasExpression', interpolation);
|
|
|
|
}
|
2022-05-24 02:36:19 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
return this.$locale.baseText('parameterInput.parameter', interpolation);
|
|
|
|
},
|
|
|
|
displayValue(): string | number | boolean | null {
|
|
|
|
if (this.remoteParameterOptionsLoading === true) {
|
|
|
|
// If it is loading options from server display
|
|
|
|
// to user that the data is loading. If not it would
|
|
|
|
// display the user the key instead of the value it
|
|
|
|
// represents
|
|
|
|
return this.$locale.baseText('parameterInput.loadingOptions');
|
|
|
|
}
|
2020-11-09 02:26:46 -08:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
let returnValue;
|
|
|
|
if (this.isValueExpression === false) {
|
|
|
|
returnValue = this.isResourceLocatorParameter
|
|
|
|
? isResourceLocatorValue(this.value)
|
|
|
|
? this.value.value
|
|
|
|
: ''
|
|
|
|
: this.value;
|
|
|
|
} else {
|
|
|
|
returnValue = this.expressionEvaluated;
|
|
|
|
}
|
2020-11-09 02:26:46 -08:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
if (this.parameter.type === 'credentialsSelect' && typeof this.value === 'string') {
|
|
|
|
const credType = this.credentialsStore.getCredentialTypeByName(this.value);
|
|
|
|
if (credType) {
|
|
|
|
returnValue = credType.displayName;
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
2022-12-14 01:04:10 -08:00
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
if (
|
|
|
|
Array.isArray(returnValue) &&
|
|
|
|
this.parameter.type === 'color' &&
|
|
|
|
this.getArgument('showAlpha') === true &&
|
|
|
|
returnValue.charAt(0) === '#'
|
|
|
|
) {
|
|
|
|
// Convert the value to rgba that el-color-picker can display it correctly
|
|
|
|
const bigint = parseInt(returnValue.slice(1), 16);
|
|
|
|
const h = [];
|
|
|
|
h.push((bigint >> 24) & 255);
|
|
|
|
h.push((bigint >> 16) & 255);
|
|
|
|
h.push((bigint >> 8) & 255);
|
|
|
|
h.push(((255 - bigint) & 255) / 255);
|
|
|
|
|
|
|
|
returnValue = 'rgba(' + h.join() + ')';
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
if (returnValue !== undefined && returnValue !== null && this.parameter.type === 'string') {
|
2019-06-23 03:35:23 -07:00
|
|
|
const rows = this.getArgument('rows');
|
2022-12-14 01:04:10 -08:00
|
|
|
if (rows === undefined || rows === 1) {
|
|
|
|
returnValue = returnValue.toString().replace(/\n/, '|');
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
2022-12-14 01:04:10 -08:00
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
return returnValue;
|
|
|
|
},
|
|
|
|
getStringInputType() {
|
|
|
|
if (this.getArgument('password') === true) {
|
|
|
|
return 'password';
|
|
|
|
}
|
2022-05-24 02:36:19 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
const rows = this.getArgument('rows');
|
|
|
|
if (rows !== undefined && rows > 1) {
|
|
|
|
return 'textarea';
|
|
|
|
}
|
2022-05-24 02:36:19 -07:00
|
|
|
|
2023-04-25 07:57:21 -07:00
|
|
|
if (this.editorType === 'code') {
|
2022-12-14 01:04:10 -08:00
|
|
|
return 'textarea';
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
return 'text';
|
|
|
|
},
|
|
|
|
getIssues(): string[] {
|
|
|
|
if (this.hideIssues === true || this.node === null) {
|
|
|
|
return [];
|
|
|
|
}
|
2022-05-24 02:36:19 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
const newPath = this.shortPath.split('.');
|
|
|
|
newPath.pop();
|
|
|
|
|
|
|
|
const issues = NodeHelpers.getParameterIssues(
|
|
|
|
this.parameter,
|
|
|
|
this.node.parameters,
|
|
|
|
newPath.join('.'),
|
|
|
|
this.node,
|
|
|
|
);
|
|
|
|
|
|
|
|
if (this.parameter.type === 'credentialsSelect' && this.displayValue === '') {
|
|
|
|
issues.parameters = issues.parameters || {};
|
|
|
|
|
|
|
|
const issue = this.$locale.baseText('parameterInput.selectACredentialTypeFromTheDropdown');
|
|
|
|
|
|
|
|
issues.parameters[this.parameter.name] = [issue];
|
|
|
|
} else if (
|
|
|
|
['options', 'multiOptions'].includes(this.parameter.type) &&
|
|
|
|
this.remoteParameterOptionsLoading === false &&
|
|
|
|
this.remoteParameterOptionsLoadingIssues === null &&
|
|
|
|
this.parameterOptions
|
|
|
|
) {
|
|
|
|
// Check if the value resolves to a valid option
|
|
|
|
// Currently it only displays an error in the node itself in
|
|
|
|
// case the value is not valid. The workflow can still be executed
|
|
|
|
// and the error is not displayed on the node in the workflow
|
|
|
|
const validOptions = this.parameterOptions.map(
|
|
|
|
(options) => (options as INodePropertyOptions).value,
|
|
|
|
);
|
|
|
|
|
|
|
|
const checkValues: string[] = [];
|
|
|
|
|
|
|
|
if (!this.skipCheck(this.displayValue)) {
|
|
|
|
if (Array.isArray(this.displayValue)) {
|
|
|
|
checkValues.push.apply(checkValues, this.displayValue);
|
|
|
|
} else {
|
|
|
|
checkValues.push(this.displayValue as string);
|
2019-11-21 15:07:38 -08:00
|
|
|
}
|
2022-12-14 01:04:10 -08:00
|
|
|
}
|
2019-11-21 15:07:38 -08:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
for (const checkValue of checkValues) {
|
|
|
|
if (checkValue === null || !validOptions.includes(checkValue)) {
|
|
|
|
if (issues.parameters === undefined) {
|
|
|
|
issues.parameters = {};
|
|
|
|
}
|
2022-05-24 02:36:19 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
const issue = this.$locale.baseText('parameterInput.theValueIsNotSupported', {
|
|
|
|
interpolate: { checkValue },
|
|
|
|
});
|
2022-05-24 02:36:19 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
issues.parameters[this.parameter.name] = [issue];
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
}
|
2022-12-14 01:04:10 -08:00
|
|
|
} else if (this.remoteParameterOptionsLoadingIssues !== null) {
|
|
|
|
if (issues.parameters === undefined) {
|
|
|
|
issues.parameters = {};
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
2022-12-14 01:04:10 -08:00
|
|
|
issues.parameters[this.parameter.name] = [
|
|
|
|
`There was a problem loading the parameter options from server: "${this.remoteParameterOptionsLoadingIssues}"`,
|
|
|
|
];
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
if (
|
|
|
|
issues !== undefined &&
|
|
|
|
issues.parameters !== undefined &&
|
|
|
|
issues.parameters[this.parameter.name] !== undefined
|
|
|
|
) {
|
|
|
|
return issues.parameters[this.parameter.name];
|
|
|
|
}
|
2022-07-20 04:32:51 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
return [];
|
|
|
|
},
|
2023-04-25 07:57:21 -07:00
|
|
|
editorType(): EditorType {
|
|
|
|
return this.getArgument('editor') as EditorType;
|
2022-12-14 01:04:10 -08:00
|
|
|
},
|
2023-04-25 07:57:21 -07:00
|
|
|
editorLanguage(): CodeNodeEditorLanguage {
|
|
|
|
if (this.editorType === 'json' || this.parameter.type === 'json') return 'json';
|
2023-05-04 11:00:00 -07:00
|
|
|
return (this.getArgument('editorLanguage') as CodeNodeEditorLanguage) ?? 'javaScript';
|
2022-12-14 01:04:10 -08:00
|
|
|
},
|
|
|
|
parameterOptions():
|
|
|
|
| Array<INodePropertyOptions | INodeProperties | INodePropertyCollection>
|
|
|
|
| undefined {
|
|
|
|
if (this.hasRemoteMethod === false) {
|
|
|
|
// Options are already given
|
|
|
|
return this.parameter.options;
|
|
|
|
}
|
2021-08-29 04:36:17 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
// Options get loaded from server
|
|
|
|
return this.remoteParameterOptions;
|
|
|
|
},
|
|
|
|
parameterInputClasses() {
|
|
|
|
const classes: { [c: string]: boolean } = {
|
|
|
|
droppable: this.droppable,
|
|
|
|
activeDrop: this.activeDrop,
|
|
|
|
};
|
2022-07-20 04:32:51 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
const rows = this.getArgument('rows');
|
|
|
|
const isTextarea = this.parameter.type === 'string' && rows !== undefined;
|
|
|
|
const isSwitch = this.parameter.type === 'boolean' && !this.isValueExpression;
|
2022-07-20 04:32:51 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
if (!isTextarea && !isSwitch) {
|
|
|
|
classes['parameter-value-container'] = true;
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-12-14 05:43:02 -08:00
|
|
|
if (
|
|
|
|
!this.droppable &&
|
|
|
|
!this.activeDrop &&
|
|
|
|
(this.getIssues.length > 0 || this.errorHighlight) &&
|
|
|
|
!this.isValueExpression
|
|
|
|
) {
|
2022-12-14 01:04:10 -08:00
|
|
|
classes['has-issues'] = true;
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
return classes;
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
2022-12-14 01:04:10 -08:00
|
|
|
parameterInputWrapperStyle() {
|
|
|
|
let deductWidth = 0;
|
|
|
|
const styles = {
|
|
|
|
width: '100%',
|
|
|
|
};
|
|
|
|
if (this.parameter.type === 'credentialsSelect' || this.isResourceLocatorParameter) {
|
|
|
|
return styles;
|
|
|
|
}
|
|
|
|
if (this.getIssues.length) {
|
|
|
|
deductWidth += 20;
|
|
|
|
}
|
2022-05-24 02:36:19 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
if (deductWidth !== 0) {
|
|
|
|
styles.width = `calc(100% - ${deductWidth}px)`;
|
|
|
|
}
|
2022-05-24 02:36:19 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
return styles;
|
|
|
|
},
|
|
|
|
hasRemoteMethod(): boolean {
|
|
|
|
return !!this.getArgument('loadOptionsMethod') || !!this.getArgument('loadOptions');
|
|
|
|
},
|
|
|
|
shortPath(): string {
|
|
|
|
const shortPath = this.path.split('.');
|
|
|
|
shortPath.shift();
|
|
|
|
return shortPath.join('.');
|
|
|
|
},
|
|
|
|
workflow(): Workflow {
|
|
|
|
return this.getCurrentWorkflow();
|
|
|
|
},
|
|
|
|
isResourceLocatorParameter(): boolean {
|
|
|
|
return this.parameter.type === 'resourceLocator';
|
|
|
|
},
|
2022-12-15 05:31:06 -08:00
|
|
|
isSecretParameter(): boolean {
|
|
|
|
return this.getArgument('password') === true;
|
|
|
|
},
|
2023-03-22 07:36:10 -07:00
|
|
|
remoteParameterOptionsKeys(): string[] {
|
|
|
|
return (this.remoteParameterOptions || []).map((o) => o.name);
|
|
|
|
},
|
2022-12-14 01:04:10 -08:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
isRemoteParameterOption(option: INodePropertyOptions) {
|
2023-03-22 07:36:10 -07:00
|
|
|
return this.remoteParameterOptionsKeys.includes(option.name);
|
2022-12-14 01:04:10 -08:00
|
|
|
},
|
|
|
|
credentialSelected(updateInformation: INodeUpdatePropertiesInformation) {
|
|
|
|
// Update the values on the node
|
|
|
|
this.workflowsStore.updateNodeProperties(updateInformation);
|
2022-05-24 02:36:19 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
const node = this.workflowsStore.getNodeByName(updateInformation.name);
|
2021-11-15 02:19:43 -08:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
if (node) {
|
|
|
|
// Update the issues
|
|
|
|
this.updateNodeCredentialIssues(node);
|
|
|
|
}
|
2022-08-01 13:43:50 -07:00
|
|
|
|
2023-05-15 09:41:13 -07:00
|
|
|
void this.$externalHooks().run('nodeSettings.credentialSelected', { updateInformation });
|
2022-12-14 01:04:10 -08:00
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Check whether a param value must be skipped when collecting node param issues for validation.
|
|
|
|
*/
|
|
|
|
skipCheck(value: string | number | boolean | null) {
|
|
|
|
return typeof value === 'string' && value.includes(CUSTOM_API_CALL_KEY);
|
|
|
|
},
|
|
|
|
getPlaceholder(): string {
|
|
|
|
return this.isForCredential
|
|
|
|
? this.$locale.credText().placeholder(this.parameter)
|
|
|
|
: this.$locale.nodeText().placeholder(this.parameter, this.path);
|
|
|
|
},
|
|
|
|
getOptionsOptionDisplayName(option: INodePropertyOptions): string {
|
|
|
|
return this.isForCredential
|
|
|
|
? this.$locale.credText().optionsOptionDisplayName(this.parameter, option)
|
|
|
|
: this.$locale.nodeText().optionsOptionDisplayName(this.parameter, option, this.path);
|
|
|
|
},
|
|
|
|
getOptionsOptionDescription(option: INodePropertyOptions): string {
|
|
|
|
return this.isForCredential
|
|
|
|
? this.$locale.credText().optionsOptionDescription(this.parameter, option)
|
|
|
|
: this.$locale.nodeText().optionsOptionDescription(this.parameter, option, this.path);
|
|
|
|
},
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
async loadRemoteParameterOptions() {
|
|
|
|
if (
|
|
|
|
this.node === null ||
|
|
|
|
this.hasRemoteMethod === false ||
|
|
|
|
this.remoteParameterOptionsLoading
|
|
|
|
) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.remoteParameterOptionsLoadingIssues = null;
|
|
|
|
this.remoteParameterOptionsLoading = true;
|
|
|
|
this.remoteParameterOptions.length = 0;
|
|
|
|
|
|
|
|
// Get the resolved parameter values of the current node
|
|
|
|
|
|
|
|
try {
|
|
|
|
const currentNodeParameters = (this.ndvStore.activeNode as INodeUi).parameters;
|
|
|
|
const resolvedNodeParameters = this.resolveParameter(
|
|
|
|
currentNodeParameters,
|
|
|
|
) as INodeParameters;
|
|
|
|
const loadOptionsMethod = this.getArgument('loadOptionsMethod') as string | undefined;
|
|
|
|
const loadOptions = this.getArgument('loadOptions') as ILoadOptions | undefined;
|
|
|
|
|
|
|
|
const options = await this.nodeTypesStore.getNodeParameterOptions({
|
|
|
|
nodeTypeAndVersion: {
|
|
|
|
name: this.node.type,
|
|
|
|
version: this.node.typeVersion,
|
|
|
|
},
|
|
|
|
path: this.path,
|
|
|
|
methodName: loadOptionsMethod,
|
|
|
|
loadOptions,
|
|
|
|
currentNodeParameters: resolvedNodeParameters,
|
|
|
|
credentials: this.node.credentials,
|
|
|
|
});
|
2021-10-18 20:57:49 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
this.remoteParameterOptions.push.apply(this.remoteParameterOptions, options);
|
|
|
|
} catch (error) {
|
|
|
|
this.remoteParameterOptionsLoadingIssues = error.message;
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
this.remoteParameterOptionsLoading = false;
|
|
|
|
},
|
|
|
|
closeCodeEditDialog() {
|
|
|
|
this.codeEditDialogVisible = false;
|
|
|
|
},
|
|
|
|
closeExpressionEditDialog() {
|
|
|
|
this.expressionEditDialogVisible = false;
|
|
|
|
},
|
|
|
|
trackExpressionEditOpen() {
|
|
|
|
if (!this.node) {
|
|
|
|
return;
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
if ((this.node.type as string).startsWith('n8n-nodes-base')) {
|
|
|
|
this.$telemetry.track('User opened Expression Editor', {
|
|
|
|
node_type: this.node.type,
|
|
|
|
parameter_name: this.parameter.displayName,
|
|
|
|
parameter_field_type: this.parameter.type,
|
|
|
|
new_expression: !this.isValueExpression,
|
|
|
|
workflow_id: this.workflowsStore.workflowId,
|
|
|
|
session_id: this.ndvStore.sessionId,
|
|
|
|
source: this.eventSource || 'ndv',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
closeTextEditDialog() {
|
|
|
|
this.textEditDialogVisible = false;
|
|
|
|
},
|
|
|
|
displayEditDialog() {
|
2023-04-25 07:57:21 -07:00
|
|
|
if (this.editorType) {
|
2022-12-14 01:04:10 -08:00
|
|
|
this.codeEditDialogVisible = true;
|
|
|
|
} else {
|
|
|
|
this.textEditDialogVisible = true;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
getArgument(argumentName: string): string | number | boolean | undefined {
|
2023-04-25 07:57:21 -07:00
|
|
|
return this.parameter.typeOptions?.[argumentName];
|
2022-12-14 01:04:10 -08:00
|
|
|
},
|
|
|
|
expressionUpdated(value: string) {
|
|
|
|
const val: NodeParameterValueType = this.isResourceLocatorParameter
|
|
|
|
? { __rl: true, value, mode: this.value.mode }
|
|
|
|
: value;
|
|
|
|
this.valueChanged(val);
|
|
|
|
},
|
2022-12-14 05:43:02 -08:00
|
|
|
openExpressionEditorModal() {
|
|
|
|
if (!this.isValueExpression) return;
|
|
|
|
|
|
|
|
this.expressionEditDialogVisible = true;
|
|
|
|
this.trackExpressionEditOpen();
|
2022-12-14 01:04:10 -08:00
|
|
|
},
|
|
|
|
onBlur() {
|
|
|
|
this.$emit('blur');
|
2022-12-14 05:43:02 -08:00
|
|
|
this.isFocused = false;
|
2022-12-14 01:04:10 -08:00
|
|
|
},
|
|
|
|
onResourceLocatorDrop(data: string) {
|
|
|
|
this.$emit('drop', data);
|
|
|
|
},
|
|
|
|
setFocus() {
|
|
|
|
if (['json'].includes(this.parameter.type) && this.getArgument('alwaysOpenEditWindow')) {
|
|
|
|
this.displayEditDialog();
|
|
|
|
return;
|
|
|
|
}
|
2021-10-27 12:55:37 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
if (this.node !== null) {
|
|
|
|
// When an event like mouse-click removes the active node while
|
|
|
|
// editing is active it does not know where to save the value to.
|
|
|
|
// For that reason do we save the node-name here. We could probably
|
|
|
|
// also just do that once on load but if Vue decides for some reason to
|
|
|
|
// reuse the input it could have the wrong value so lets set it everytime
|
|
|
|
// just to be sure
|
|
|
|
this.nodeName = this.node.name;
|
|
|
|
}
|
2021-09-11 01:15:36 -07:00
|
|
|
|
2023-05-02 01:15:16 -07:00
|
|
|
Vue.nextTick(() => {
|
2022-12-14 01:04:10 -08:00
|
|
|
// @ts-ignore
|
2023-03-31 05:59:54 -07:00
|
|
|
if (this.$refs.inputField?.focus && this.$refs.inputField?.$el) {
|
2022-12-14 01:04:10 -08:00
|
|
|
// @ts-ignore
|
|
|
|
this.$refs.inputField.focus();
|
2022-12-14 05:43:02 -08:00
|
|
|
this.isFocused = true;
|
2022-05-24 02:36:19 -07:00
|
|
|
}
|
2022-12-14 01:04:10 -08:00
|
|
|
});
|
2022-05-24 02:36:19 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
this.$emit('focus');
|
|
|
|
},
|
|
|
|
isCodeNode(node: INodeUi): boolean {
|
|
|
|
return node.type === CODE_NODE_TYPE;
|
|
|
|
},
|
2023-01-26 01:03:13 -08:00
|
|
|
isHtmlNode(node: INodeUi): boolean {
|
|
|
|
return node.type === HTML_NODE_TYPE;
|
|
|
|
},
|
2022-12-14 01:04:10 -08:00
|
|
|
rgbaToHex(value: string): string | null {
|
|
|
|
// Convert rgba to hex from: https://stackoverflow.com/questions/5623838/rgb-to-hex-and-hex-to-rgb
|
|
|
|
const valueMatch = (value as string).match(
|
|
|
|
/^rgba\((\d+),\s*(\d+),\s*(\d+),\s*(\d+(\.\d+)?)\)$/,
|
|
|
|
);
|
|
|
|
if (valueMatch === null) {
|
|
|
|
// TODO: Display something if value is not valid
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
const [r, g, b, a] = valueMatch.splice(1, 4).map((v) => Number(v));
|
|
|
|
return (
|
|
|
|
'#' +
|
|
|
|
((1 << 24) + (r << 16) + (g << 8) + b).toString(16).slice(1) +
|
|
|
|
((1 << 8) + Math.floor((1 - a) * 255)).toString(16).slice(1)
|
|
|
|
);
|
|
|
|
},
|
|
|
|
onTextInputChange(value: string) {
|
|
|
|
const parameterData = {
|
|
|
|
node: this.node !== null ? this.node.name : this.nodeName,
|
|
|
|
name: this.path,
|
|
|
|
value,
|
|
|
|
};
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
this.$emit('textInput', parameterData);
|
|
|
|
},
|
|
|
|
valueChangedDebounced(value: NodeParameterValueType | {} | Date) {
|
2023-05-19 06:31:16 -07:00
|
|
|
void this.callDebounced('valueChanged', { debounceTime: 100 }, value);
|
2022-12-14 01:04:10 -08:00
|
|
|
},
|
|
|
|
valueChanged(value: NodeParameterValueType | {} | Date) {
|
|
|
|
if (this.parameter.name === 'nodeCredentialType') {
|
|
|
|
this.activeCredentialType = value as string;
|
|
|
|
}
|
2020-11-09 02:26:46 -08:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
if (value instanceof Date) {
|
|
|
|
value = value.toISOString();
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
if (
|
|
|
|
this.parameter.type === 'color' &&
|
|
|
|
this.getArgument('showAlpha') === true &&
|
|
|
|
value !== null &&
|
|
|
|
value !== undefined &&
|
|
|
|
value.toString().charAt(0) !== '#'
|
|
|
|
) {
|
|
|
|
const newValue = this.rgbaToHex(value as string);
|
|
|
|
if (newValue !== null) {
|
|
|
|
this.tempValue = newValue;
|
|
|
|
value = newValue;
|
2022-07-09 23:53:04 -07:00
|
|
|
}
|
2022-12-14 01:04:10 -08:00
|
|
|
}
|
2022-07-20 04:32:51 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
const parameterData = {
|
|
|
|
node: this.node !== null ? this.node.name : this.nodeName,
|
|
|
|
name: this.path,
|
|
|
|
value,
|
|
|
|
};
|
2021-08-29 04:36:17 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
this.$emit('valueChanged', parameterData);
|
2022-04-14 22:35:51 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
if (this.parameter.name === 'operation' || this.parameter.name === 'mode') {
|
|
|
|
this.$telemetry.track('User set node operation or mode', {
|
|
|
|
workflow_id: this.workflowsStore.workflowId,
|
|
|
|
node_type: this.node && this.node.type,
|
|
|
|
resource: this.node && this.node.parameters.resource,
|
|
|
|
is_custom: value === CUSTOM_API_CALL_KEY,
|
|
|
|
session_id: this.ndvStore.sessionId,
|
|
|
|
parameter: this.parameter.name,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
optionSelected(command: string) {
|
|
|
|
const prevValue = this.value;
|
|
|
|
|
|
|
|
if (command === 'resetValue') {
|
|
|
|
this.valueChanged(this.parameter.default);
|
|
|
|
} else if (command === 'addExpression') {
|
|
|
|
if (this.isResourceLocatorParameter) {
|
|
|
|
if (isResourceLocatorValue(this.value)) {
|
|
|
|
this.valueChanged({ __rl: true, value: `=${this.value.value}`, mode: this.value.mode });
|
|
|
|
} else {
|
|
|
|
this.valueChanged({ __rl: true, value: `=${this.value}`, mode: '' });
|
2022-04-14 22:35:51 -07:00
|
|
|
}
|
2022-12-14 05:43:02 -08:00
|
|
|
} else if (
|
|
|
|
this.parameter.type === 'number' &&
|
|
|
|
(!this.value || this.value === '[Object: null]')
|
|
|
|
) {
|
|
|
|
this.valueChanged('={{ 0 }}');
|
2022-12-14 01:04:10 -08:00
|
|
|
} else if (this.parameter.type === 'number' || this.parameter.type === 'boolean') {
|
2022-12-14 05:43:02 -08:00
|
|
|
this.valueChanged(`={{ ${this.value} }}`);
|
2022-12-14 01:04:10 -08:00
|
|
|
} else {
|
|
|
|
this.valueChanged(`=${this.value}`);
|
|
|
|
}
|
2022-04-14 22:35:51 -07:00
|
|
|
|
2022-12-14 05:43:02 -08:00
|
|
|
this.setFocus();
|
2022-12-14 01:04:10 -08:00
|
|
|
} else if (command === 'removeExpression') {
|
|
|
|
let value: NodeParameterValueType = this.expressionEvaluated;
|
|
|
|
|
2022-12-14 05:43:02 -08:00
|
|
|
this.isFocused = false;
|
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
if (this.parameter.type === 'multiOptions' && typeof value === 'string') {
|
|
|
|
value = (value || '')
|
|
|
|
.split(',')
|
|
|
|
.filter((value) =>
|
|
|
|
(this.parameterOptions || []).find(
|
|
|
|
(option) => (option as INodePropertyOptions).value === value,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
2022-11-15 04:55:53 -08:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
if (this.isResourceLocatorParameter && isResourceLocatorValue(this.value)) {
|
|
|
|
this.valueChanged({ __rl: true, value, mode: this.value.mode });
|
|
|
|
} else {
|
|
|
|
let newValue = typeof value !== 'undefined' ? value : null;
|
2022-11-15 04:55:53 -08:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
if (this.parameter.type === 'string') {
|
|
|
|
// Strip the '=' from the beginning
|
|
|
|
newValue = this.value ? this.value.toString().substring(1) : null;
|
2022-09-21 06:44:45 -07:00
|
|
|
}
|
2022-07-20 04:32:51 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
this.valueChanged(newValue);
|
2022-07-20 04:32:51 -07:00
|
|
|
}
|
2022-12-14 01:04:10 -08:00
|
|
|
} else if (command === 'refreshOptions') {
|
|
|
|
if (this.isResourceLocatorParameter) {
|
2023-06-20 03:00:53 -07:00
|
|
|
this.eventBus.emit('refreshList');
|
2022-08-19 06:35:39 -07:00
|
|
|
}
|
2023-05-10 08:10:03 -07:00
|
|
|
void this.loadRemoteParameterOptions();
|
2023-01-26 01:03:13 -08:00
|
|
|
} else if (command === 'formatHtml') {
|
2023-04-06 06:32:45 -07:00
|
|
|
htmlEditorEventBus.emit('format-html');
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
if (this.node && (command === 'addExpression' || command === 'removeExpression')) {
|
|
|
|
const telemetryPayload = {
|
|
|
|
node_type: this.node.type,
|
|
|
|
parameter: this.path,
|
|
|
|
old_mode: command === 'addExpression' ? 'fixed' : 'expression',
|
|
|
|
new_mode: command === 'removeExpression' ? 'fixed' : 'expression',
|
|
|
|
was_parameter_empty: prevValue === '' || prevValue === undefined,
|
|
|
|
had_mapping: hasExpressionMapping(prevValue),
|
|
|
|
had_parameter: typeof prevValue === 'string' && prevValue.includes('$parameter'),
|
|
|
|
};
|
|
|
|
this.$telemetry.track('User switched parameter mode', telemetryPayload);
|
2023-05-15 09:41:13 -07:00
|
|
|
void this.$externalHooks().run('parameterInput.modeSwitch', telemetryPayload);
|
2022-05-24 02:36:19 -07:00
|
|
|
}
|
2022-12-14 01:04:10 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
updated() {
|
|
|
|
this.$nextTick(() => {
|
|
|
|
const remoteParameterOptions = this.$el.querySelectorAll('.remote-parameter-option');
|
2022-05-24 02:36:19 -07:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
if (remoteParameterOptions.length > 0) {
|
2023-05-15 09:41:13 -07:00
|
|
|
void this.$externalHooks().run('parameterInput.updated', { remoteParameterOptions });
|
2020-11-09 02:26:46 -08:00
|
|
|
}
|
2022-12-14 01:04:10 -08:00
|
|
|
});
|
|
|
|
},
|
|
|
|
mounted() {
|
2023-06-20 03:00:53 -07:00
|
|
|
this.eventBus.on('optionSelected', this.optionSelected);
|
2022-12-14 01:04:10 -08:00
|
|
|
|
|
|
|
this.tempValue = this.displayValue as string;
|
|
|
|
if (this.node !== null) {
|
|
|
|
this.nodeName = this.node.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.node && this.node.parameters.authentication === 'predefinedCredentialType') {
|
|
|
|
this.activeCredentialType = this.node.parameters.nodeCredentialType as string;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (
|
|
|
|
this.parameter.type === 'color' &&
|
|
|
|
this.getArgument('showAlpha') === true &&
|
|
|
|
this.displayValue !== null &&
|
|
|
|
this.displayValue.toString().charAt(0) !== '#'
|
|
|
|
) {
|
|
|
|
const newValue = this.rgbaToHex(this.displayValue as string);
|
|
|
|
if (newValue !== null) {
|
|
|
|
this.tempValue = newValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.hasRemoteMethod === true && this.node !== null) {
|
|
|
|
// Make sure to load the parameter options
|
|
|
|
// directly and whenever the credentials change
|
|
|
|
this.$watch(
|
|
|
|
() => this.node!.credentials,
|
|
|
|
() => {
|
2023-05-10 08:10:03 -07:00
|
|
|
void this.loadRemoteParameterOptions();
|
2022-12-14 01:04:10 -08:00
|
|
|
},
|
|
|
|
{ deep: true, immediate: true },
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-05-15 09:41:13 -07:00
|
|
|
void this.$externalHooks().run('parameterInput.mount', {
|
2022-12-14 01:04:10 -08:00
|
|
|
parameter: this.parameter,
|
|
|
|
inputFieldRef: this.$refs['inputField'],
|
|
|
|
});
|
|
|
|
},
|
2023-06-20 03:00:53 -07:00
|
|
|
beforeDestroy() {
|
|
|
|
this.eventBus.off('optionSelected', this.optionSelected);
|
|
|
|
},
|
2022-12-14 01:04:10 -08:00
|
|
|
});
|
2019-06-23 03:35:23 -07:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
2023-04-25 07:57:21 -07:00
|
|
|
.readonly-code {
|
2021-10-27 12:55:37 -07:00
|
|
|
font-size: var(--font-size-xs);
|
|
|
|
}
|
|
|
|
|
2021-08-29 04:36:17 -07:00
|
|
|
.switch-input {
|
2022-08-24 05:47:42 -07:00
|
|
|
margin: var(--spacing-5xs) 0 var(--spacing-2xs) 0;
|
2021-08-29 04:36:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.parameter-value-container {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.parameter-actions {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
.parameter-input {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2021-08-29 04:36:17 -07:00
|
|
|
::v-deep .color-input {
|
|
|
|
display: flex;
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2021-08-29 04:36:17 -07:00
|
|
|
.el-color-picker__trigger {
|
|
|
|
border: none;
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.ql-editor {
|
|
|
|
padding: 6px;
|
|
|
|
line-height: 26px;
|
2021-08-29 04:36:17 -07:00
|
|
|
background-color: #f0f0f0;
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
2022-07-20 04:32:51 -07:00
|
|
|
.droppable {
|
2022-12-06 03:50:06 -08:00
|
|
|
--input-border-color: var(--color-secondary);
|
2021-08-29 04:36:17 -07:00
|
|
|
--input-border-style: dashed;
|
2022-12-06 03:50:06 -08:00
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
textarea,
|
2022-12-14 05:43:02 -08:00
|
|
|
input,
|
|
|
|
.cm-editor {
|
2022-12-06 03:50:06 -08:00
|
|
|
border-width: 1.5px;
|
|
|
|
}
|
2022-07-20 04:32:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.activeDrop {
|
|
|
|
--input-border-color: var(--color-success);
|
2022-12-06 03:50:06 -08:00
|
|
|
--input-background-color: var(--color-foreground-xlight);
|
2022-07-20 04:32:51 -07:00
|
|
|
--input-border-style: solid;
|
|
|
|
|
2022-12-14 01:04:10 -08:00
|
|
|
textarea,
|
|
|
|
input {
|
2022-07-20 04:32:51 -07:00
|
|
|
cursor: grabbing !important;
|
2022-12-06 03:50:06 -08:00
|
|
|
border-width: 1px;
|
2022-07-20 04:32:51 -07:00
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.has-issues {
|
2021-08-29 04:36:17 -07:00
|
|
|
--input-border-color: var(--color-danger);
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.el-dropdown {
|
2022-07-26 03:45:55 -07:00
|
|
|
color: var(--color-text-light);
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
2021-08-29 04:36:17 -07:00
|
|
|
.list-option {
|
|
|
|
margin: 6px 0;
|
2019-06-23 03:35:23 -07:00
|
|
|
white-space: normal;
|
2021-09-22 02:02:38 -07:00
|
|
|
padding-right: 20px;
|
2021-08-29 04:36:17 -07:00
|
|
|
|
|
|
|
.option-headline {
|
|
|
|
font-weight: var(--font-weight-bold);
|
|
|
|
line-height: var(--font-line-height-regular);
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
.option-description {
|
|
|
|
margin-top: 2px;
|
|
|
|
font-size: var(--font-size-2xs);
|
|
|
|
font-weight: var(--font-weight-regular);
|
|
|
|
line-height: var(--font-line-height-xloose);
|
2022-09-23 07:14:28 -07:00
|
|
|
color: $custom-font-very-light;
|
2021-08-29 04:36:17 -07:00
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.edit-window-button {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.parameter-input:hover .edit-window-button {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2021-08-29 04:36:17 -07:00
|
|
|
.expand-input-icon-container {
|
|
|
|
display: flex;
|
|
|
|
height: 100%;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2022-12-14 05:43:02 -08:00
|
|
|
|
|
|
|
.input-with-opener > .el-input__suffix {
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.textarea-modal-opener {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
background-color: white;
|
|
|
|
padding: 3px;
|
|
|
|
line-height: 9px;
|
|
|
|
border: var(--border-base);
|
|
|
|
border-top-left-radius: var(--border-radius-base);
|
|
|
|
border-bottom-right-radius: var(--border-radius-base);
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
width: 9px !important;
|
|
|
|
height: 9px;
|
|
|
|
transform: rotate(270deg);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: var(--color-primary);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.focused {
|
|
|
|
border-color: var(--color-secondary);
|
|
|
|
}
|
|
|
|
|
|
|
|
.invalid {
|
|
|
|
border-color: var(--color-danger);
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
</style>
|