summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/static_site_editor/index.js
blob: fceef8f9084e3e8c31db8cb0e0cfb4e8bfcb30bc (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import Vue from 'vue';
import { parseBoolean } from '~/lib/utils/common_utils';
import App from './components/app.vue';
import createRouter from './router';
import createApolloProvider from './graphql';

const initStaticSiteEditor = el => {
  const {
    isSupportedContent,
    path: sourcePath,
    baseUrl,
    namespace,
    project,
    mergeRequestsIllustrationPath,
    // NOTE: The following variables are not yet used, but are supported by the config file,
    //       so we are adding them here as a convenience for future use.
    // eslint-disable-next-line no-unused-vars
    staticSiteGenerator,
    // eslint-disable-next-line no-unused-vars
    imageUploadPath,
    mounts,
  } = el.dataset;
  // NOTE that the object in 'mounts' is a JSON string from the data attribute, so it must be parsed into an object.
  // eslint-disable-next-line no-unused-vars
  const mountsObject = JSON.parse(mounts);
  const { current_username: username } = window.gon;
  const returnUrl = el.dataset.returnUrl || null;
  const router = createRouter(baseUrl);
  const apolloProvider = createApolloProvider({
    isSupportedContent: parseBoolean(isSupportedContent),
    hasSubmittedChanges: false,
    project: `${namespace}/${project}`,
    returnUrl,
    sourcePath,
    username,
  });

  return new Vue({
    el,
    router,
    apolloProvider,
    components: {
      App,
    },
    render(createElement) {
      return createElement('app', {
        props: {
          mergeRequestsIllustrationPath,
        },
      });
    },
  });
};

export default initStaticSiteEditor;