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

pipeline_details_dag.js « pipelines « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e2835ecc4d121f08cfa6e1673dedcacf339a872f (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
import Vue from 'vue';
import VueApollo from 'vue-apollo';
import Dag from './components/dag/dag.vue';

Vue.use(VueApollo);

const createDagApp = (apolloProvider) => {
  const el = document.querySelector('#js-pipeline-dag-vue');

  if (!el) {
    return;
  }

  const {
    aboutDagDocPath,
    dagDocPath,
    emptySvgPath,
    pipelineProjectPath,
    pipelineIid,
  } = el?.dataset;

  // eslint-disable-next-line no-new
  new Vue({
    el,
    components: {
      Dag,
    },
    apolloProvider,
    provide: {
      aboutDagDocPath,
      dagDocPath,
      emptySvgPath,
      pipelineProjectPath,
      pipelineIid,
    },
    render(createElement) {
      return createElement('dag', {});
    },
  });
};

export default createDagApp;