2018-05-09 12:01:36 +05:30
|
|
|
import Vue from 'vue';
|
2021-03-11 19:13:27 +05:30
|
|
|
import PipelineTourSuccessModal from '~/blob/pipeline_tour_success_modal.vue';
|
2018-03-17 18:26:18 +05:30
|
|
|
import BlobViewer from '~/blob/viewer/index';
|
2018-11-18 11:00:15 +05:30
|
|
|
import GpgBadges from '~/gpg_badges';
|
2021-03-11 19:13:27 +05:30
|
|
|
import initBlob from '~/pages/projects/init_blob';
|
2021-01-03 14:25:43 +05:30
|
|
|
import initWebIdeLink from '~/pages/projects/shared/web_ide_link';
|
2021-03-11 19:13:27 +05:30
|
|
|
import commitPipelineStatus from '~/projects/tree/components/commit_pipeline_status_component.vue';
|
2021-04-29 21:17:54 +05:30
|
|
|
import BlobContentViewer from '~/repository/components/blob_content_viewer.vue';
|
2019-12-26 22:10:19 +05:30
|
|
|
import '~/sourcegraph/load';
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
const viewBlobEl = document.querySelector('#js-view-blob-app');
|
|
|
|
|
|
|
|
if (viewBlobEl) {
|
|
|
|
const { blobPath } = viewBlobEl.dataset;
|
|
|
|
|
|
|
|
// eslint-disable-next-line no-new
|
|
|
|
new Vue({
|
|
|
|
el: viewBlobEl,
|
|
|
|
render(createElement) {
|
|
|
|
return createElement(BlobContentViewer, {
|
|
|
|
props: {
|
|
|
|
path: blobPath,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
},
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
new BlobViewer(); // eslint-disable-line no-new
|
|
|
|
initBlob();
|
|
|
|
}
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
const CommitPipelineStatusEl = document.querySelector('.js-commit-pipeline-status');
|
|
|
|
const statusLink = document.querySelector('.commit-actions .ci-status-link');
|
|
|
|
if (statusLink) {
|
|
|
|
statusLink.remove();
|
|
|
|
// eslint-disable-next-line no-new
|
|
|
|
new Vue({
|
|
|
|
el: CommitPipelineStatusEl,
|
|
|
|
components: {
|
|
|
|
commitPipelineStatus,
|
|
|
|
},
|
|
|
|
render(createElement) {
|
|
|
|
return createElement('commit-pipeline-status', {
|
|
|
|
props: {
|
|
|
|
endpoint: CommitPipelineStatusEl.dataset.endpoint,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
2018-11-18 11:00:15 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
initWebIdeLink({ el: document.getElementById('js-blob-web-ide-link') });
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
GpgBadges.fetch();
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
const codeNavEl = document.getElementById('js-code-navigation');
|
2020-05-24 23:13:21 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
if (codeNavEl) {
|
|
|
|
const { codeNavigationPath, blobPath, definitionPathPrefix } = codeNavEl.dataset;
|
2020-04-22 19:07:51 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
// eslint-disable-next-line promise/catch-or-return
|
|
|
|
import('~/code_navigation').then((m) =>
|
|
|
|
m.default({
|
|
|
|
blobs: [{ path: blobPath, codeNavigationPath }],
|
|
|
|
definitionPathPrefix,
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
}
|
2020-04-08 14:13:33 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
const successPipelineEl = document.querySelector('.js-success-pipeline-modal');
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
if (successPipelineEl) {
|
|
|
|
// eslint-disable-next-line no-new
|
|
|
|
new Vue({
|
|
|
|
el: successPipelineEl,
|
|
|
|
render(createElement) {
|
|
|
|
return createElement(PipelineTourSuccessModal, {
|
|
|
|
props: {
|
|
|
|
...successPipelineEl.dataset,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|