mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
130 lines
2.3 KiB
Vue
130 lines
2.3 KiB
Vue
<template>
|
|
<span class="inline-edit" @keydown.stop>
|
|
<span v-if="isEditEnabled && !isDisabled">
|
|
<ExpandableInputEdit
|
|
:placeholder="placeholder"
|
|
:model-value="newValue"
|
|
:maxlength="maxLength"
|
|
:autofocus="true"
|
|
:event-bus="inputBus"
|
|
@update:modelValue="onInput"
|
|
@esc="onEscape"
|
|
@blur="onBlur"
|
|
@enter="submit"
|
|
/>
|
|
</span>
|
|
|
|
<span v-else class="preview" @click="onClick">
|
|
<ExpandableInputPreview :model-value="previewValue || modelValue" />
|
|
</span>
|
|
</span>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import ExpandableInputEdit from '@/components/ExpandableInput/ExpandableInputEdit.vue';
|
|
import ExpandableInputPreview from '@/components/ExpandableInput/ExpandableInputPreview.vue';
|
|
import { createEventBus } from 'n8n-design-system/utils';
|
|
|
|
export default defineComponent({
|
|
name: 'InlineTextEdit',
|
|
components: { ExpandableInputEdit, ExpandableInputPreview },
|
|
props: {
|
|
isEditEnabled: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
modelValue: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
placeholder: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
maxLength: {
|
|
type: Number,
|
|
default: 0,
|
|
},
|
|
previewValue: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
disabled: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
isDisabled: this.disabled,
|
|
newValue: '',
|
|
escPressed: false,
|
|
inputBus: createEventBus(),
|
|
};
|
|
},
|
|
watch: {
|
|
disabled(value) {
|
|
this.isDisabled = value;
|
|
},
|
|
},
|
|
methods: {
|
|
onInput(newValue: string) {
|
|
if (this.disabled) {
|
|
return;
|
|
}
|
|
|
|
this.newValue = newValue;
|
|
},
|
|
onClick() {
|
|
if (this.disabled) {
|
|
return;
|
|
}
|
|
|
|
this.newValue = this.modelValue;
|
|
this.$emit('toggle');
|
|
},
|
|
onBlur() {
|
|
if (this.disabled) {
|
|
return;
|
|
}
|
|
|
|
if (!this.escPressed) {
|
|
this.submit();
|
|
}
|
|
this.escPressed = false;
|
|
},
|
|
submit() {
|
|
if (this.disabled) {
|
|
return;
|
|
}
|
|
|
|
const onSubmit = (updated: boolean) => {
|
|
this.isDisabled = false;
|
|
|
|
if (!updated) {
|
|
this.inputBus.emit('focus');
|
|
}
|
|
};
|
|
|
|
this.isDisabled = true;
|
|
this.$emit('submit', { name: this.newValue, onSubmit });
|
|
},
|
|
onEscape() {
|
|
if (this.disabled) {
|
|
return;
|
|
}
|
|
|
|
this.escPressed = true;
|
|
this.$emit('toggle');
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.preview {
|
|
cursor: pointer;
|
|
}
|
|
</style>
|