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

FieldTextArray.vue « FormField « src « vue « CorePluginsAdmin « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e182e95260364b3a719ba1597eb4addbe1c33e50 (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
62
63
64
65
66
67
68
69
70
<!--
  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 -->
  <div>
    <label
      :for="name"
      v-html="$sanitize(title)"
    />
    <input
      :class="`control_${ uiControl }`"
      :type="uiControl"
      :name="name"
      @keydown="onKeydown($event)"
      @change="onKeydown($event)"
      :value="concattedValues"
      v-bind="uiControlAttributes"
    />
  </div>
</template>

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

export default defineComponent({
  props: {
    name: String,
    title: String,
    uiControl: String,
    modelValue: Array,
    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) {
        this.$emit('update:modelValue', values);

        nextTick(() => {
          if ((event.target as HTMLInputElement).value !== this.concattedValues) {
            // 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.concattedValues;
          }
        });
      }
    },
  },
});
</script>