debian-mirror-gitlab/app/assets/javascripts/static_site_editor/index.js
2020-10-24 23:57:45 +05:30

46 lines
1 KiB
JavaScript

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,
} = el.dataset;
const { current_username: username } = window.gon;
const returnUrl = el.dataset.returnUrl || null;
const router = createRouter(baseUrl);
const apolloProvider = createApolloProvider({
isSupportedContent: parseBoolean(isSupportedContent),
project: `${namespace}/${project}`,
returnUrl,
sourcePath,
username,
});
return new Vue({
el,
router,
apolloProvider,
components: {
App,
},
render(createElement) {
return createElement('app', {
props: {
mergeRequestsIllustrationPath,
},
});
},
});
};
export default initStaticSiteEditor;