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

MatomoDialog.vue « MatomoDialog « src « vue « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5a46841cbf400bd8aaf90944a10989fd8749c1f5 (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
<!--
  Matomo - free/libre analytics platform

  @link https://matomo.org
  @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
-->
<template>
  <slot></slot>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import Matomo from '../Matomo/Matomo';

export default defineComponent({
  props: {
    /**
     * Whether the modal is displayed or not;
     */
    show: {
      type: Boolean,
      required: true,
    },

    /**
     * Only here for backwards compatibility w/ AngularJS. If supplied, we use this
     * element to launch the modal instead of the element in the slot. This should not
     * be used for new Vue code.
     *
     * @deprecated
     */
    element: {
      type: HTMLElement,
      required: false,
    },
  },
  emits: ['yes', 'no', 'closeEnd', 'close'],
  activated() {
    const slotElement = this.element || this.$slots.default()[0].el;
    slotElement.style.display = 'none';
  },
  watch: {
    show(newValue, oldValue) {
      if (newValue) {
        const slotElement = this.element || this.$slots.default()[0].el;
        Matomo.helper.modalConfirm(slotElement, {
          yes: () => { this.$emit('yes'); },
          no: () => { this.$emit('no'); },
        }, {
          onCloseEnd: () => { this.$emit('closeEnd'); },
        });
      } else if (newValue === false && oldValue === true) {
        // the user closed the dialog, e.g. by pressing Esc or clicking away from it
        this.$emit('close');
      }
    },
  },
});
</script>