summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/merge_conflicts/merge_conflicts_bundle.js
blob: cf02c6fbd6b03a71703d5890ef6f062c000b2779 (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
import Vue from 'vue';
import initIssuableSidebar from '../init_issuable_sidebar';
import MergeConflictsResolverApp from './merge_conflict_resolver_app.vue';
import { createStore } from './store';

export default function initMergeConflicts() {
  const conflictsEl = document.querySelector('#conflicts');

  const {
    sourceBranchPath,
    mergeRequestPath,
    conflictsPath,
    resolveConflictsPath,
  } = conflictsEl.dataset;

  initIssuableSidebar();

  const store = createStore();

  return new Vue({
    el: conflictsEl,
    store,
    provide: {
      sourceBranchPath,
      mergeRequestPath,
      resolveConflictsPath,
    },
    created() {
      store.dispatch('fetchConflictsData', conflictsPath);
    },
    render(createElement) {
      return createElement(MergeConflictsResolverApp);
    },
  });
}