2018-05-09 12:01:36 +05:30
|
|
|
import Vue from 'vue';
|
2018-11-08 19:23:39 +05:30
|
|
|
import { mapActions } from 'vuex';
|
2018-05-09 12:01:36 +05:30
|
|
|
import Translate from '~/vue_shared/translate';
|
|
|
|
import ide from './components/ide.vue';
|
|
|
|
import store from './stores';
|
|
|
|
import router from './ide_router';
|
2018-11-18 11:00:15 +05:30
|
|
|
import { convertPermissionToBoolean } from '../lib/utils/common_utils';
|
2018-05-09 12:01:36 +05:30
|
|
|
|
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() {
|
2018-11-08 19:23:39 +05:30
|
|
|
this.setEmptyStateSvgs({
|
2018-10-15 14:42:47 +05:30
|
|
|
emptyStateSvgPath: el.dataset.emptyStateSvgPath,
|
|
|
|
noChangesStateSvgPath: el.dataset.noChangesStateSvgPath,
|
|
|
|
committedStateSvgPath: el.dataset.committedStateSvgPath,
|
2018-11-08 19:23:39 +05:30
|
|
|
pipelinesEmptyStateSvgPath: el.dataset.pipelinesEmptyStateSvgPath,
|
2018-11-18 11:00:15 +05:30
|
|
|
promotionSvgPath: el.dataset.promotionSvgPath,
|
2018-05-09 12:01:36 +05:30
|
|
|
});
|
2018-11-08 19:23:39 +05:30
|
|
|
this.setLinks({
|
|
|
|
ciHelpPagePath: el.dataset.ciHelpPagePath,
|
2018-11-18 11:00:15 +05:30
|
|
|
webIDEHelpPagePath: el.dataset.webIdeHelpPagePath,
|
|
|
|
});
|
|
|
|
this.setInitialData({
|
|
|
|
clientsidePreviewEnabled: convertPermissionToBoolean(el.dataset.clientsidePreviewEnabled),
|
2018-11-08 19:23:39 +05:30
|
|
|
});
|
|
|
|
},
|
|
|
|
methods: {
|
2018-11-18 11:00:15 +05:30
|
|
|
...mapActions(['setEmptyStateSvgs', 'setLinks', 'setInitialData']),
|
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
|
|
|
|
}
|