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: 19aeb1d1ecf15ad70f78eebfaec06784e5ab72e1 (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 initProjectVisibilitySelector from '../../../project_visibility';
import initProjectNew from '../../../projects/project_new';
import { __ } from '~/locale';
import { deprecatedCreateFlash as createFlash } from '~/flash';

document.addEventListener('DOMContentLoaded', () => {
  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,
      };
      m.default(el, config);
    })
    .catch(() => {
      createFlash(__('An error occurred while loading project creation UI'));
    });
});