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

index.js « static_site_editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 15d668fd4318d6cb22b4638db0067e03266e9ff5 (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
import Vue from 'vue';
import StaticSiteEditor from './components/static_site_editor.vue';
import createStore from './store';

const initStaticSiteEditor = el => {
  const { projectId, path: sourcePath, returnUrl } = el.dataset;
  const isSupportedContent = 'isSupportedContent' in el.dataset;

  const store = createStore({
    initialState: {
      isSupportedContent,
      projectId,
      returnUrl,
      sourcePath,
      username: window.gon.current_username,
    },
  });

  return new Vue({
    el,
    store,
    components: {
      StaticSiteEditor,
    },
    render(createElement) {
      return createElement('static-site-editor', StaticSiteEditor);
    },
  });
};

export default initStaticSiteEditor;