mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 17:14:05 -08:00
63 lines
1.6 KiB
Vue
63 lines
1.6 KiB
Vue
<template>
|
|
<div v-if="dialogVisible">
|
|
<el-dialog :visible="dialogVisible" append-to-body width="80%" :title="`${$baseText('textEdit.edit')} ${$nodeText.topParameterDisplayName(parameter)}`" :before-close="closeDialog">
|
|
|
|
<div class="ignore-key-press">
|
|
<n8n-input-label :label="$nodeText.topParameterDisplayName(parameter)">
|
|
<div @keydown.stop @keydown.esc="closeDialog()">
|
|
<n8n-input v-model="tempValue" type="textarea" ref="inputField" :value="value" :placeholder="$nodeText.placeholder(parameter)" @change="valueChanged" @keydown.stop="noOp" :rows="15" />
|
|
</div>
|
|
</n8n-input-label>
|
|
</div>
|
|
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import { renderText } from '@/components/mixins/renderText';
|
|
import mixins from 'vue-typed-mixins';
|
|
|
|
export default mixins(renderText).extend({
|
|
name: 'TextEdit',
|
|
props: [
|
|
'dialogVisible',
|
|
'parameter',
|
|
'value',
|
|
],
|
|
data () {
|
|
return {
|
|
tempValue: '', // el-input does not seem to work without v-model so add one
|
|
};
|
|
},
|
|
methods: {
|
|
valueChanged (value: string) {
|
|
this.$emit('valueChanged', value);
|
|
},
|
|
|
|
closeDialog () {
|
|
// Handle the close externally as the visible parameter is an external prop
|
|
// and is so not allowed to be changed here.
|
|
this.$emit('closeDialog');
|
|
return false;
|
|
},
|
|
},
|
|
mounted () {
|
|
this.tempValue = this.value as string;
|
|
},
|
|
watch: {
|
|
dialogVisible () {
|
|
if (this.dialogVisible === true) {
|
|
Vue.nextTick(() => {
|
|
(this.$refs.inputField as HTMLInputElement).focus();
|
|
});
|
|
}
|
|
},
|
|
value () {
|
|
this.tempValue = this.value as string;
|
|
},
|
|
},
|
|
});
|
|
</script>
|