summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/shared/mount_runner_instructions.js
blob: b7662155339efab46b062805fd3c97a7d924db3a (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
import Vue from 'vue';
import VueApollo from 'vue-apollo';
import createDefaultClient from '~/lib/graphql';
import InstallRunnerInstructions from '~/vue_shared/components/runner_instructions/runner_instructions.vue';

Vue.use(VueApollo);

export function initInstallRunner(componentId = 'js-install-runner') {
  const installRunnerEl = document.getElementById(componentId);
  const { projectPath, groupPath } = installRunnerEl?.dataset;

  if (installRunnerEl) {
    const defaultClient = createDefaultClient();

    const apolloProvider = new VueApollo({
      defaultClient,
    });

    // eslint-disable-next-line no-new
    new Vue({
      el: installRunnerEl,
      apolloProvider,
      provide: {
        projectPath,
        groupPath,
      },
      render(createElement) {
        return createElement(InstallRunnerInstructions);
      },
    });
  }
}