Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « batch_comments « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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);
    },
  });
};