summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/error_tracking/details.js
blob: c18298dec4fdd6b3b742f6eb3e3272b6948d8b17 (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
import Vue from 'vue';
import VueApollo from 'vue-apollo';
import createDefaultClient from '~/lib/graphql';
import store from './store';
import ErrorDetails from './components/error_details.vue';
import csrf from '~/lib/utils/csrf';

Vue.use(VueApollo);

export default () => {
  const apolloProvider = new VueApollo({
    defaultClient: createDefaultClient(),
  });

  // eslint-disable-next-line no-new
  new Vue({
    el: '#js-error_details',
    apolloProvider,
    components: {
      ErrorDetails,
    },
    store,
    render(createElement) {
      const domEl = document.querySelector(this.$options.el);
      const {
        issueId,
        projectPath,
        listPath,
        issueUpdatePath,
        issueDetailsPath,
        issueStackTracePath,
        projectIssuesPath,
      } = domEl.dataset;

      return createElement('error-details', {
        props: {
          issueId,
          projectPath,
          listPath,
          issueUpdatePath,
          issueDetailsPath,
          issueStackTracePath,
          projectIssuesPath,
          csrfToken: csrf.token,
        },
      });
    },
  });
};