Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FieldNumber.vue « FormField « src « vue « CorePluginsAdmin « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 32e6b70a0d96663c6c6f49c77a3244e5323c4a4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!--
  Matomo - free/libre analytics platform
  @link https://matomo.org
  @license http://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="name"
    :name="name"
    :value="(modelValue || '0').toString()"
    @keydown="onChange($event)"
    @change="onChange($event)"
    v-bind="uiControlAttributes"
  />
  <label :for="name" v-html="$sanitize(title)"></label>
</template>

<script lang="ts">
import { defineComponent } from 'vue';
import { debounce } from 'CoreHome';

export default defineComponent({
  props: {
    uiControl: String,
    name: String,
    title: String,
    modelValue: [Number, String],
    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);

      // change to previous value so the parent component can determine if this change should
      // go through
      (event.target as HTMLInputElement).value = (this.modelValue || '').toString();

      this.$emit('update:modelValue', value);
    },
  },
  mounted() {
    window.Materialize.updateTextFields();
  },
  watch: {
    modelValue() {
      setTimeout(() => {
        window.Materialize.updateTextFields();
      });
    },
  },
});
</script>