summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/projects/new/index.js
blob: f469c56e808078876265b767717545f02cc30e8c (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
43
44
import Vue from 'vue';
import { parseBoolean } from '~/lib/utils/common_utils';
import initProjectVisibilitySelector from '../../../project_visibility';
import initProjectNew from '../../../projects/project_new';
import NewProjectCreationApp from './components/app.vue';

initProjectVisibilitySelector();
initProjectNew.bindEvents();

function initNewProjectCreation(el) {
  const {
    pushToCreateProjectCommand,
    workingWithProjectsHelpPath,
    newProjectGuidelines,
    hasErrors,
    isCiCdAvailable,
  } = el.dataset;

  const props = {
    hasErrors: parseBoolean(hasErrors),
    isCiCdAvailable: parseBoolean(isCiCdAvailable),
    newProjectGuidelines,
  };

  const provide = {
    workingWithProjectsHelpPath,
    pushToCreateProjectCommand,
  };

  return new Vue({
    el,
    components: {
      NewProjectCreationApp,
    },
    provide,
    render(h) {
      return h(NewProjectCreationApp, { props });
    },
  });
}

const el = document.querySelector('.js-new-project-creation');

initNewProjectCreation(el);