debian-mirror-gitlab/app/assets/javascripts/ide/index.js

41 lines
1.2 KiB
JavaScript
Raw Normal View History

2018-05-09 12:01:36 +05:30
import Vue from 'vue';
import Translate from '~/vue_shared/translate';
import ide from './components/ide.vue';
import store from './stores';
import router from './ide_router';
2018-10-15 14:42:47 +05:30
Vue.use(Translate);
export function initIde(el) {
2018-05-09 12:01:36 +05:30
if (!el) return null;
return new Vue({
el,
store,
router,
components: {
ide,
},
2018-10-15 14:42:47 +05:30
created() {
this.$store.dispatch('setEmptyStateSvgs', {
emptyStateSvgPath: el.dataset.emptyStateSvgPath,
noChangesStateSvgPath: el.dataset.noChangesStateSvgPath,
committedStateSvgPath: el.dataset.committedStateSvgPath,
2018-05-09 12:01:36 +05:30
});
},
2018-10-15 14:42:47 +05:30
render(createElement) {
return createElement('ide');
},
2018-05-09 12:01:36 +05:30
});
}
2018-10-15 14:42:47 +05:30
// tell webpack to load assets from origin so that web workers don't break
export function resetServiceWorkersPublicPath() {
// __webpack_public_path__ is a global variable that can be used to adjust
// the webpack publicPath setting at runtime.
// see: https://webpack.js.org/guides/public-path/
const relativeRootPath = (gon && gon.relative_url_root) || '';
const webpackAssetPath = `${relativeRootPath}/assets/webpack/`;
__webpack_public_path__ = webpackAssetPath; // eslint-disable-line camelcase
}