2021-04-17 20:07:23 +05:30
|
|
|
import { GlButton } from '@gitlab/ui';
|
2019-09-04 21:01:54 +05:30
|
|
|
import Vue from 'vue';
|
2021-04-29 21:17:54 +05:30
|
|
|
import { parseBoolean } from '~/lib/utils/common_utils';
|
|
|
|
import { escapeFileUrl } from '~/lib/utils/url_utility';
|
|
|
|
import { __ } from '~/locale';
|
2021-03-11 19:13:27 +05:30
|
|
|
import initWebIdeLink from '~/pages/projects/shared/web_ide_link';
|
2019-09-04 21:01:54 +05:30
|
|
|
import App from './components/app.vue';
|
|
|
|
import Breadcrumbs from './components/breadcrumbs.vue';
|
2021-03-11 19:13:27 +05:30
|
|
|
import DirectoryDownloadLinks from './components/directory_download_links.vue';
|
2019-09-30 21:07:59 +05:30
|
|
|
import LastCommit from './components/last_commit.vue';
|
2019-09-04 21:01:54 +05:30
|
|
|
import apolloProvider from './graphql';
|
2021-04-29 21:17:54 +05:30
|
|
|
import commitsQuery from './queries/commits.query.graphql';
|
|
|
|
import projectPathQuery from './queries/project_path.query.graphql';
|
|
|
|
import projectShortPathQuery from './queries/project_short_path.query.graphql';
|
|
|
|
import refsQuery from './queries/ref.query.graphql';
|
2021-03-11 19:13:27 +05:30
|
|
|
import createRouter from './router';
|
2020-01-01 13:55:28 +05:30
|
|
|
import { updateFormAction } from './utils/dom';
|
2021-03-11 19:13:27 +05:30
|
|
|
import { setTitle } from './utils/title';
|
2019-09-04 21:01:54 +05:30
|
|
|
|
|
|
|
export default function setupVueRepositoryList() {
|
|
|
|
const el = document.getElementById('js-tree-list');
|
2019-12-26 22:10:19 +05:30
|
|
|
const { dataset } = el;
|
2020-11-24 15:15:51 +05:30
|
|
|
const { projectPath, projectShortPath, ref, escapedRef, fullName } = dataset;
|
2020-05-05 14:28:15 +05:30
|
|
|
const router = createRouter(projectPath, escapedRef);
|
2019-09-04 21:01:54 +05:30
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
apolloProvider.clients.defaultClient.cache.writeQuery({
|
|
|
|
query: commitsQuery,
|
|
|
|
data: {
|
|
|
|
commits: [],
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
apolloProvider.clients.defaultClient.cache.writeQuery({
|
|
|
|
query: projectPathQuery,
|
2019-09-04 21:01:54 +05:30
|
|
|
data: {
|
|
|
|
projectPath,
|
2021-04-29 21:17:54 +05:30
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
apolloProvider.clients.defaultClient.cache.writeQuery({
|
|
|
|
query: projectShortPathQuery,
|
|
|
|
data: {
|
2019-09-04 21:01:54 +05:30
|
|
|
projectShortPath,
|
2021-04-29 21:17:54 +05:30
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
apolloProvider.clients.defaultClient.cache.writeQuery({
|
|
|
|
query: refsQuery,
|
|
|
|
data: {
|
2019-09-04 21:01:54 +05:30
|
|
|
ref,
|
2020-05-05 14:28:15 +05:30
|
|
|
escapedRef,
|
2019-09-04 21:01:54 +05:30
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
const initLastCommitApp = () =>
|
|
|
|
new Vue({
|
|
|
|
el: document.getElementById('js-last-commit'),
|
|
|
|
router,
|
|
|
|
apolloProvider,
|
|
|
|
render(h) {
|
|
|
|
return h(LastCommit, {
|
|
|
|
props: {
|
|
|
|
currentPath: this.$route.params.path,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
initLastCommitApp();
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
router.afterEach(({ params: { path } }) => {
|
|
|
|
setTitle(path, ref, fullName);
|
2019-09-04 21:01:54 +05:30
|
|
|
});
|
|
|
|
|
2019-09-30 21:07:59 +05:30
|
|
|
const breadcrumbEl = document.getElementById('js-repo-breadcrumb');
|
|
|
|
|
|
|
|
if (breadcrumbEl) {
|
|
|
|
const {
|
|
|
|
canCollaborate,
|
|
|
|
canEditTree,
|
2021-04-29 21:17:54 +05:30
|
|
|
canPushCode,
|
|
|
|
selectedBranch,
|
2019-09-30 21:07:59 +05:30
|
|
|
newBranchPath,
|
|
|
|
newTagPath,
|
|
|
|
newBlobPath,
|
|
|
|
forkNewBlobPath,
|
|
|
|
forkNewDirectoryPath,
|
|
|
|
forkUploadBlobPath,
|
2020-01-01 13:55:28 +05:30
|
|
|
uploadPath,
|
|
|
|
newDirPath,
|
2019-09-30 21:07:59 +05:30
|
|
|
} = breadcrumbEl.dataset;
|
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
router.afterEach(({ params: { path } }) => {
|
2020-03-13 15:44:24 +05:30
|
|
|
updateFormAction('.js-create-dir-form', newDirPath, path);
|
2020-01-01 13:55:28 +05:30
|
|
|
});
|
|
|
|
|
2019-09-30 21:07:59 +05:30
|
|
|
// eslint-disable-next-line no-new
|
|
|
|
new Vue({
|
|
|
|
el: breadcrumbEl,
|
|
|
|
router,
|
|
|
|
apolloProvider,
|
|
|
|
render(h) {
|
|
|
|
return h(Breadcrumbs, {
|
|
|
|
props: {
|
2020-03-13 15:44:24 +05:30
|
|
|
currentPath: this.$route.params.path,
|
2019-09-30 21:07:59 +05:30
|
|
|
canCollaborate: parseBoolean(canCollaborate),
|
|
|
|
canEditTree: parseBoolean(canEditTree),
|
2021-04-29 21:17:54 +05:30
|
|
|
canPushCode: parseBoolean(canPushCode),
|
|
|
|
originalBranch: ref,
|
|
|
|
selectedBranch,
|
2019-09-30 21:07:59 +05:30
|
|
|
newBranchPath,
|
|
|
|
newTagPath,
|
|
|
|
newBlobPath,
|
|
|
|
forkNewBlobPath,
|
|
|
|
forkNewDirectoryPath,
|
|
|
|
forkUploadBlobPath,
|
2021-04-29 21:17:54 +05:30
|
|
|
uploadPath,
|
2019-09-30 21:07:59 +05:30
|
|
|
},
|
|
|
|
});
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
const treeHistoryLinkEl = document.getElementById('js-tree-history-link');
|
|
|
|
const { historyLink } = treeHistoryLinkEl.dataset;
|
|
|
|
|
|
|
|
// eslint-disable-next-line no-new
|
|
|
|
new Vue({
|
|
|
|
el: treeHistoryLinkEl,
|
|
|
|
router,
|
|
|
|
render(h) {
|
2021-04-17 20:07:23 +05:30
|
|
|
return h(
|
|
|
|
GlButton,
|
|
|
|
{
|
|
|
|
attrs: {
|
|
|
|
href: `${historyLink}/${
|
|
|
|
this.$route.params.path ? escapeFileUrl(this.$route.params.path) : ''
|
|
|
|
}`,
|
|
|
|
},
|
2019-12-26 22:10:19 +05:30
|
|
|
},
|
2021-04-17 20:07:23 +05:30
|
|
|
[__('History')],
|
|
|
|
);
|
2019-12-26 22:10:19 +05:30
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
initWebIdeLink({ el: document.getElementById('js-tree-web-ide-link'), router });
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
const directoryDownloadLinks = document.getElementById('js-directory-downloads');
|
|
|
|
|
|
|
|
if (directoryDownloadLinks) {
|
|
|
|
// eslint-disable-next-line no-new
|
|
|
|
new Vue({
|
|
|
|
el: directoryDownloadLinks,
|
|
|
|
router,
|
|
|
|
render(h) {
|
2020-03-13 15:44:24 +05:30
|
|
|
const currentPath = this.$route.params.path || '/';
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
if (currentPath !== '/') {
|
|
|
|
return h(DirectoryDownloadLinks, {
|
|
|
|
props: {
|
|
|
|
currentPath: currentPath.replace(/^\//, ''),
|
|
|
|
links: JSON.parse(directoryDownloadLinks.dataset.links),
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// eslint-disable-next-line no-new
|
|
|
|
new Vue({
|
2019-09-04 21:01:54 +05:30
|
|
|
el,
|
|
|
|
router,
|
|
|
|
apolloProvider,
|
|
|
|
render(h) {
|
|
|
|
return h(App);
|
|
|
|
},
|
|
|
|
});
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
return { router, data: dataset };
|
2019-09-04 21:01:54 +05:30
|
|
|
}
|