summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/admin/users/components/user_modal_manager.vue
blob: 24c9fa4cb3f23ed4616a2d26fa63761636e4dc15 (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
<script>
import DeleteUserModal from './delete_user_modal.vue';

export default {
  components: { DeleteUserModal },
  props: {
    modalConfiguration: {
      required: true,
      type: Object,
    },
    csrfToken: {
      required: true,
      type: String,
    },
  },
  data() {
    return {
      currentModalData: null,
    };
  },
  computed: {
    activeModal() {
      return Boolean(this.currentModalData);
    },

    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.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>
  <delete-user-modal v-if="activeModal" ref="modal" v-bind="modalProps" />
</template>