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

index.js « new « projects « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e10e2872dcec0ff7ca9431829503f90f17fbd739 (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
import { deprecatedCreateFlash as createFlash } from '~/flash';
import { __ } from '~/locale';
import initProjectVisibilitySelector from '../../../project_visibility';
import initProjectNew from '../../../projects/project_new';

initProjectVisibilitySelector();
initProjectNew.bindEvents();

import(
  /* webpackChunkName: 'experiment_new_project_creation' */ '../../../projects/experiment_new_project_creation'
)
  .then((m) => {
    const el = document.querySelector('.js-experiment-new-project-creation');

    if (!el) {
      return;
    }

    const config = {
      hasErrors: 'hasErrors' in el.dataset,
      isCiCdAvailable: 'isCiCdAvailable' in el.dataset,
      newProjectGuidelines: el.dataset.newProjectGuidelines,
    };
    m.default(el, config);
  })
  .catch(() => {
    createFlash(__('An error occurred while loading project creation UI'));
  });