summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/static_site_editor/index.js
blob: c6a883c659a1627d3c8060cab5f6e7be80bb297b (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
import Vue from 'vue';
import StaticSiteEditor from './components/static_site_editor.vue';
import createStore from './store';

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

  const store = createStore({
    initialState: { 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;