File: D:/web/matomo.vdk/plugins/CorePluginsAdmin/vue/src/FormField/FieldNumber.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 -->
<input
:class="`control_${uiControl}`"
:type="uiControl"
:id="id"
:name="name"
:value="modelValueFormatted"
@keydown="onChange($event)"
@change="onChange($event)"
v-bind="uiControlAttributes"
/>
<label :for="id" v-html="$sanitize(title)"></label>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import { debounce } from 'CoreHome';
import AbortableModifiers from './AbortableModifiers';
export default defineComponent({
props: {
uiControl: String,
name: String,
title: String,
id: String,
modelValue: [Number, String],
modelModifiers: Object,
uiControlAttributes: Object,
},
inheritAttrs: false,
emits: ['update:modelValue'],
created() {
this.onChange = debounce(this.onChange.bind(this), 50);
},
methods: {
onChange(event: Event) {
const value = parseFloat((event.target as HTMLInputElement).value);
if (value !== this.modelValue) {
if (!(this.modelModifiers as AbortableModifiers)?.abortable) {
this.$emit('update:modelValue', value);
return;
}
const emitEventData = {
value,
abort: () => {
if ((event.target as HTMLInputElement).value !== this.modelValueFormatted) {
// 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.modelValueFormatted;
}
},
};
this.$emit('update:modelValue', emitEventData);
}
},
},
mounted() {
setTimeout(() => {
window.Materialize.updateTextFields();
});
},
watch: {
modelValue() {
setTimeout(() => {
window.Materialize.updateTextFields();
});
},
},
computed: {
modelValueFormatted() {
return (this.modelValue || '').toString();
},
},
});
</script>