summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipelines/pipeline_details_notification.js
blob: be234e8972dcc083aeb1ec4ba9c253ec22b4d23e (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
import Vue from 'vue';
import VueApollo from 'vue-apollo';
import PipelineNotification from './components/notification/pipeline_notification.vue';

Vue.use(VueApollo);

export const createPipelineNotificationApp = (elSelector, apolloProvider) => {
  const el = document.querySelector(elSelector);

  if (!el) {
    return;
  }

  const { dagDocPath } = el?.dataset;
  // eslint-disable-next-line no-new
  new Vue({
    el,
    components: {
      PipelineNotification,
    },
    provide: {
      dagDocPath,
    },
    apolloProvider,
    render(createElement) {
      return createElement('pipeline-notification');
    },
  });
};