summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/admin/users/components/user_modal_manager.vue
blob: a08d32028c36f1747734655402fdd02d8f914b04 (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
71
72
73
74
75
76
77
<script>
export default {
  props: {
    modalConfiguration: {
      required: true,
      type: Object,
    },
    actionModals: {
      required: true,
      type: Object,
    },
    csrfToken: {
      required: true,
      type: String,
    },
  },
  data() {
    return {
      currentModalData: null,
    };
  },
  computed: {
    activeModal() {
      if (!this.currentModalData) return null;
      const { glModalAction: action } = this.currentModalData;

      return this.actionModals[action];
    },

    modalProps() {
      const { glModalAction: requestedAction } = this.currentModalData;
      return {
        ...this.modalConfiguration[requestedAction],
        ...this.currentModalData,
        csrfToken: this.csrfToken,
      };
    },
  },

  mounted() {
    document.addEventListener('click', this.handleClick);
  },

  beforeDestroy() {
    document.removeEventListener('click', this.handleClick);
  },

  methods: {
    handleClick(e) {
      const { glModalAction: action } = e.target.dataset;
      if (!action) return;

      this.show(e.target.dataset);
      e.preventDefault();
    },

    show(modalData) {
      const { glModalAction: requestedAction } = modalData;
      if (!this.actionModals[requestedAction]) {
        throw new Error(`Requested non-existing modal action ${requestedAction}`);
      }
      if (!this.modalConfiguration[requestedAction]) {
        throw new Error(`Modal action ${requestedAction} has no configuration in HTML`);
      }

      this.currentModalData = modalData;

      return this.$nextTick().then(() => {
        this.$refs.modal.show();
      });
    },
  },
};
</script>
<template>
  <div :is="activeModal" v-if="activeModal" ref="modal" v-bind="modalProps" />
</template>