File: D:/web/matomo.vdk/plugins/CorePluginsAdmin/vue/src/FormField/FieldTextArray.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)"
/>
<input
:class="`control_${ uiControl }`"
:type="uiControl"
:name="name"
:id="id"
@keydown="onKeydown($event)"
@change="onKeydown($event)"
:value="concattedValues"
v-bind="uiControlAttributes"
/>
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import { debounce } from 'CoreHome';
import AbortableModifiers from './AbortableModifiers';
export default defineComponent({
props: {
name: String,
title: String,
id: String,
uiControl: String,
modelValue: Array,
modelModifiers: Object,
uiControlAttributes: Object,
},
inheritAttrs: false,
computed: {
concattedValues() {
if (typeof this.modelValue === 'string') {
return this.modelValue;
}
return (this.modelValue || []).join(', ');
},
},
emits: ['update:modelValue'],
created() {
// debounce because puppeteer types reeaally fast
this.onKeydown = debounce(this.onKeydown.bind(this), 50);
},
methods: {
onKeydown(event: Event) {
const values = (event.target as HTMLInputElement).value.split(',').map((v) => v.trim());
if (values.join(', ') !== this.concattedValues) {
if (!(this.modelModifiers as AbortableModifiers)?.abortable) {
this.$emit('update:modelValue', values);
return;
}
const emitEventData = {
value: values,
abort: () => {
if ((event.target as HTMLInputElement).value !== this.concattedValues) {
(event.target as HTMLInputElement).value = this.concattedValues;
}
},
};
this.$emit('update:modelValue', emitEventData);
}
},
},
});
</script>