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

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

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