Files
Automata/packages/editor-ui/src/components/MultipleParameter.vue
Csaba Tuncsik 408bd96815 feat(editor): add readonly state for nodes (#4299)
* fix(editor): add types to Node.vue component props

* fix(editor): some cleanup in NodeView

* fix(editor): fix some boolean usage

* feat(editor): check foreign credentials

* fix(editor): passing readOnly to inputs

* fix(editor): add types to component and solve property mutation

* fix(editor): add types to component and solve property mutation

* fix(editor): component property type

* fix(editor): component property type

* fix(editor): default prop values

* fix(editor): fix FixedCollectionParameter.vue
2022-10-24 20:17:25 +02:00

222 lines
5.7 KiB
Vue

<template>
<div @keydown.stop class="duplicate-parameter">
<n8n-input-label
:label="$locale.nodeText().inputLabelDisplayName(parameter, path)"
:tooltipText="$locale.nodeText().inputLabelDescription(parameter, path)"
:underline="true"
size="small"
color="text-dark"
/>
<div v-for="(value, index) in mutableValues" :key="index" class="duplicate-parameter-item" :class="parameter.type">
<div class="delete-item clickable" v-if="!isReadOnly">
<font-awesome-icon icon="trash" :title="$locale.baseText('multipleParameter.deleteItem')" @click="deleteItem(index)" />
<div v-if="sortable">
<font-awesome-icon v-if="index !== 0" icon="angle-up" class="clickable" :title="$locale.baseText('multipleParameter.moveUp')" @click="moveOptionUp(index)" />
<font-awesome-icon v-if="index !== (mutableValues.length - 1)" icon="angle-down" class="clickable" :title="$locale.baseText('multipleParameter.moveDown')" @click="moveOptionDown(index)" />
</div>
</div>
<div v-if="parameter.type === 'collection'">
<collection-parameter :parameter="parameter" :values="value" :nodeValues="nodeValues" :path="getPath(index)" :hideDelete="hideDelete" :isReadOnly="isReadOnly" @valueChanged="valueChanged" />
</div>
<div v-else>
<parameter-input-full class="duplicate-parameter-input-item" :parameter="parameter" :value="value" :displayOptions="true" :hideLabel="true" :path="getPath(index)" @valueChanged="valueChanged" inputSize="small" :isReadOnly="isReadOnly" />
</div>
</div>
<div class="add-item-wrapper">
<div v-if="mutableValues && mutableValues.length === 0 || isReadOnly" class="no-items-exist">
<n8n-text size="small">{{ $locale.baseText('multipleParameter.currentlyNoItemsExist') }}</n8n-text>
</div>
<n8n-button v-if="!isReadOnly" type="tertiary" block @click="addItem()" :label="addButtonText" />
</div>
</div>
</template>
<script lang="ts">
import Vue, { PropType } from "vue";
import {
IUpdateInformation,
} from '@/Interface';
import { deepCopy, INodeParameters, INodeProperties } from "n8n-workflow";
import CollectionParameter from '@/components/CollectionParameter.vue';
import ParameterInputFull from '@/components/ParameterInputFull.vue';
import { get } from 'lodash';
export default Vue.extend({
name: 'MultipleParameter',
components: {
CollectionParameter,
ParameterInputFull,
},
props: {
nodeValues: {
type: Object as PropType<Record<string, INodeParameters[]>>,
required: true,
},
parameter: {
type: Object as PropType<INodeProperties>,
required: true,
},
path: {
type: String,
required: true,
},
values: {
type: Array as PropType<INodeParameters[]>,
default: () => [],
},
isReadOnly: {
type: Boolean,
default: false,
},
},
data() {
return {
mutableValues: [] as INodeParameters[],
};
},
watch: {
values: {
handler(newValues: INodeParameters[]) {
this.mutableValues = deepCopy(newValues);
},
deep: true,
},
},
created(){
this.mutableValues = deepCopy(this.values);
},
computed: {
addButtonText (): string {
if (
!this.parameter.typeOptions ||
(this.parameter.typeOptions && !this.parameter.typeOptions.multipleValueButtonText)
) {
return this.$locale.baseText('multipleParameter.addItem');
}
return this.$locale.nodeText().multipleValueButtonText(this.parameter);
},
hideDelete (): boolean {
return this.parameter.options?.length === 1;
},
sortable (): boolean {
return !!this.parameter.typeOptions?.sortable;
},
},
methods: {
addItem () {
const name = this.getPath();
const currentValue = get(this.nodeValues, name, [] as INodeParameters[]);
currentValue.push(deepCopy(this.parameter.default as INodeParameters));
const parameterData = {
name,
value: currentValue,
};
this.$emit('valueChanged', parameterData);
},
deleteItem (index: number) {
const parameterData = {
name: this.getPath(index),
value: undefined,
};
this.$emit('valueChanged', parameterData);
},
getPath (index?: number): string {
return this.path + (index !== undefined ? `[${index}]` : '');
},
moveOptionDown (index: number) {
this.mutableValues.splice(index + 1, 0, this.mutableValues.splice(index, 1)[0]);
const parameterData = {
name: this.path,
value: this.mutableValues,
};
this.$emit('valueChanged', parameterData);
},
moveOptionUp (index: number) {
this.mutableValues.splice(index - 1, 0, this.mutableValues.splice(index, 1)[0]);
const parameterData = {
name: this.path,
value: this.mutableValues,
};
this.$emit('valueChanged', parameterData);
},
valueChanged (parameterData: IUpdateInformation) {
this.$emit('valueChanged', parameterData);
},
},
});
</script>
<style scoped lang="scss">
.duplicate-parameter-item {
~ .add-item-wrapper {
margin-top: var(--spacing-xs);
}
}
.delete-item {
display: none;
position: absolute;
left: 0.1em;
top: .3em;
z-index: 999;
color: #f56c6c;
width: 15px;
font-size: var(--font-size-2xs);
:hover {
color: #ff0000;
}
}
::v-deep {
.button {
--button-background-color: var(--color-background-base);
--button-border-color: var(--color-foreground-base);
}
.duplicate-parameter-item {
position: relative;
.multi > .delete-item{
top: 0.1em;
}
}
.duplicate-parameter-input-item {
margin: 0.5em 0 0.25em 2em;
}
.duplicate-parameter-item + .duplicate-parameter-item {
.collection-parameter-wrapper {
border-top: 1px dashed #999;
margin-top: var(--spacing-xs);
}
}
}
.no-items-exist {
margin: var(--spacing-xs) 0;
}
</style>
<style>
.duplicate-parameter-item:hover > .delete-item {
display: inline;
}
.duplicate-parameter-item .multi > .delete-item{
top: 0.1em;
}
</style>