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

index.js « google_cloud « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ba67877e005b2171e4f241695460791e56281100 (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
import Vue from 'vue';
import { __ } from '~/locale';
import App from './components/screens/app.vue';
import ServiceAccountsForm from './components/screens/service_accounts_form.vue';
import ErrorNoGcpProjects from './components/errors/no_gcp_projects.vue';
import ErrorGcpError from './components/errors/gcp_error.vue';

const elementRenderer = (element, props = {}) => (createElement) =>
  createElement(element, { props });

const rootComponentMap = [
  {
    root: '#js-google-cloud-error-no-gcp-projects',
    component: ErrorNoGcpProjects,
  },
  {
    root: '#js-google-cloud-error-gcp-error',
    component: ErrorGcpError,
  },
  {
    root: '#js-google-cloud-service-accounts',
    component: ServiceAccountsForm,
  },
  {
    root: '#js-google-cloud',
    component: App,
  },
];

export default () => {
  for (let i = 0; i < rootComponentMap.length; i += 1) {
    const { root, component } = rootComponentMap[i];
    const element = document.querySelector(root);
    if (element) {
      const props = JSON.parse(element.getAttribute('data'));
      return new Vue({ el: root, render: elementRenderer(component, props) });
    }
  }
  throw new Error(__('Unknown root'));
};