summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/batch_comments/index.js
blob: e06285c0b37b4ff2f527d315324ca95e17b9fc97 (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
import Vue from 'vue';
import { mapActions } from 'vuex';
import store from '~/mr_notes/stores';
import ReviewBar from './components/review_bar.vue';

// eslint-disable-next-line import/prefer-default-export
export const initReviewBar = () => {
  const el = document.getElementById('js-review-bar');

  // eslint-disable-next-line no-new
  new Vue({
    el,
    store,
    mounted() {
      this.fetchDrafts();
    },
    methods: {
      ...mapActions('batchComments', ['fetchDrafts']),
    },
    render(createElement) {
      return createElement(ReviewBar);
    },
  });
};