File: D:/web/matomo.vdk/plugins/CorePluginsAdmin/vue/src/FormField/FieldTextareaArray.vue
<!--
Matomo - free/libre analytics platform
@link https://matomo.org
@license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
-->
<template>
<!-- note: @change is used in case the change event is programmatically triggered -->
<div>
<label
:for="id"
v-html="$sanitize(title)"
></label>
<textarea
ref="textarea"
:name="name"
:id="id"
v-bind="uiControlAttributes"
:value="concattedValue"
@keydown="onKeydown($event)"
@change="onKeydown($event)"
class="materialize-textarea"
></textarea>
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import { debounce } from 'CoreHome';
import AbortableModifiers from './AbortableModifiers';
const SEPARATOR = '\n';
export default defineComponent({
props: {
name: String,
title: String,
id: String,
uiControlAttributes: Object,
modelValue: [Array, String],
modelModifiers: Object,
},
inheritAttrs: false,
emits: ['update:modelValue'],
computed: {
concattedValue() {
if (typeof this.modelValue === 'string') {
return this.modelValue;
}
// Handle case when modelValues is like: {"0": "value0", "2": "value1"}
if (typeof this.modelValue === 'object') {
return Object.values(this.modelValue).join(SEPARATOR);
}
try {
return (this.modelValue || []).join(SEPARATOR);
} catch (e) {
// Prevent page breaking on unexpected modelValue type
console.error(e);
return '';
}
},
},
created() {
this.onKeydown = debounce(this.onKeydown.bind(this), 50);
},
methods: {
onKeydown(event: KeyboardEvent) {
const value = (event.target as HTMLTextAreaElement).value.split(SEPARATOR);
if (value.join(SEPARATOR) !== this.concattedValue) {
if (!(this.modelModifiers as AbortableModifiers)?.abortable) {
this.$emit('update:modelValue', value);
return;
}
const emitEventData = {
value,
abort: () => {
if ((event.target as HTMLInputElement).value !== this.concattedValue) {
// change to previous value if the parent component did not update the model value
// (done manually because Vue will not notice if a value does NOT change)
(event.target as HTMLInputElement).value = this.concattedValue;
}
},
};
this.$emit('update:modelValue', emitEventData);
}
},
},
watch: {
modelValue(newVal, oldVal) {
if (newVal !== oldVal) {
setTimeout(() => {
if (this.$refs.textarea) {
window.Materialize.textareaAutoResize(this.$refs.textarea);
}
window.Materialize.updateTextFields();
});
}
},
},
mounted() {
setTimeout(() => {
if (this.$refs.textarea) {
window.Materialize.textareaAutoResize(this.$refs.textarea);
}
window.Materialize.updateTextFields();
});
},
});
</script>