summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/code_navigation/components/app.vue
blob: d738c914125c4ead901aa9a4264c90dc581e6980 (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
<script>
import { mapActions, mapState } from 'vuex';
import Popover from './popover.vue';
import eventHub from '../../notes/event_hub';

export default {
  components: {
    Popover,
  },
  computed: {
    ...mapState(['currentDefinition', 'currentDefinitionPosition', 'definitionPathPrefix']),
  },
  mounted() {
    this.body = document.body;

    eventHub.$on('showBlobInteractionZones', this.showBlobInteractionZones);

    this.addGlobalEventListeners();
    this.fetchData();
  },
  beforeDestroy() {
    eventHub.$off('showBlobInteractionZones', this.showBlobInteractionZones);
    this.removeGlobalEventListeners();
  },
  methods: {
    ...mapActions(['fetchData', 'showDefinition', 'showBlobInteractionZones']),
    addGlobalEventListeners() {
      if (this.body) {
        this.body.addEventListener('click', this.showDefinition);
      }
    },
    removeGlobalEventListeners() {
      if (this.body) {
        this.body.removeEventListener('click', this.showDefinition);
      }
    },
  },
};
</script>

<template>
  <popover
    v-if="currentDefinition"
    :position="currentDefinitionPosition"
    :data="currentDefinition"
    :definition-path-prefix="definitionPathPrefix"
  />
</template>