183 lines
4.6 KiB
JavaScript
183 lines
4.6 KiB
JavaScript
import { GlButton } from '@gitlab/ui';
|
|
import Vue from 'vue';
|
|
import { parseBoolean } from '~/lib/utils/common_utils';
|
|
import { escapeFileUrl } from '~/lib/utils/url_utility';
|
|
import { __ } from '~/locale';
|
|
import initWebIdeLink from '~/pages/projects/shared/web_ide_link';
|
|
import App from './components/app.vue';
|
|
import Breadcrumbs from './components/breadcrumbs.vue';
|
|
import DirectoryDownloadLinks from './components/directory_download_links.vue';
|
|
import LastCommit from './components/last_commit.vue';
|
|
import apolloProvider from './graphql';
|
|
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';
|
|
import createRouter from './router';
|
|
import { updateFormAction } from './utils/dom';
|
|
import { setTitle } from './utils/title';
|
|
|
|
export default function setupVueRepositoryList() {
|
|
const el = document.getElementById('js-tree-list');
|
|
const { dataset } = el;
|
|
const { projectPath, projectShortPath, ref, escapedRef, fullName } = dataset;
|
|
const router = createRouter(projectPath, escapedRef);
|
|
|
|
apolloProvider.clients.defaultClient.cache.writeQuery({
|
|
query: commitsQuery,
|
|
data: {
|
|
commits: [],
|
|
},
|
|
});
|
|
|
|
apolloProvider.clients.defaultClient.cache.writeQuery({
|
|
query: projectPathQuery,
|
|
data: {
|
|
projectPath,
|
|
},
|
|
});
|
|
|
|
apolloProvider.clients.defaultClient.cache.writeQuery({
|
|
query: projectShortPathQuery,
|
|
data: {
|
|
projectShortPath,
|
|
},
|
|
});
|
|
|
|
apolloProvider.clients.defaultClient.cache.writeQuery({
|
|
query: refsQuery,
|
|
data: {
|
|
ref,
|
|
escapedRef,
|
|
},
|
|
});
|
|
|
|
const initLastCommitApp = () =>
|
|
new Vue({
|
|
el: document.getElementById('js-last-commit'),
|
|
router,
|
|
apolloProvider,
|
|
render(h) {
|
|
return h(LastCommit, {
|
|
props: {
|
|
currentPath: this.$route.params.path,
|
|
},
|
|
});
|
|
},
|
|
});
|
|
|
|
initLastCommitApp();
|
|
|
|
router.afterEach(({ params: { path } }) => {
|
|
setTitle(path, ref, fullName);
|
|
});
|
|
|
|
const breadcrumbEl = document.getElementById('js-repo-breadcrumb');
|
|
|
|
if (breadcrumbEl) {
|
|
const {
|
|
canCollaborate,
|
|
canEditTree,
|
|
canPushCode,
|
|
selectedBranch,
|
|
newBranchPath,
|
|
newTagPath,
|
|
newBlobPath,
|
|
forkNewBlobPath,
|
|
forkNewDirectoryPath,
|
|
forkUploadBlobPath,
|
|
uploadPath,
|
|
newDirPath,
|
|
} = breadcrumbEl.dataset;
|
|
|
|
router.afterEach(({ params: { path } }) => {
|
|
updateFormAction('.js-create-dir-form', newDirPath, path);
|
|
});
|
|
|
|
// eslint-disable-next-line no-new
|
|
new Vue({
|
|
el: breadcrumbEl,
|
|
router,
|
|
apolloProvider,
|
|
render(h) {
|
|
return h(Breadcrumbs, {
|
|
props: {
|
|
currentPath: this.$route.params.path,
|
|
canCollaborate: parseBoolean(canCollaborate),
|
|
canEditTree: parseBoolean(canEditTree),
|
|
canPushCode: parseBoolean(canPushCode),
|
|
originalBranch: ref,
|
|
selectedBranch,
|
|
newBranchPath,
|
|
newTagPath,
|
|
newBlobPath,
|
|
forkNewBlobPath,
|
|
forkNewDirectoryPath,
|
|
forkUploadBlobPath,
|
|
uploadPath,
|
|
},
|
|
});
|
|
},
|
|
});
|
|
}
|
|
|
|
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) {
|
|
return h(
|
|
GlButton,
|
|
{
|
|
attrs: {
|
|
href: `${historyLink}/${
|
|
this.$route.params.path ? escapeFileUrl(this.$route.params.path) : ''
|
|
}`,
|
|
},
|
|
},
|
|
[__('History')],
|
|
);
|
|
},
|
|
});
|
|
|
|
initWebIdeLink({ el: document.getElementById('js-tree-web-ide-link'), router });
|
|
|
|
const directoryDownloadLinks = document.getElementById('js-directory-downloads');
|
|
|
|
if (directoryDownloadLinks) {
|
|
// eslint-disable-next-line no-new
|
|
new Vue({
|
|
el: directoryDownloadLinks,
|
|
router,
|
|
render(h) {
|
|
const currentPath = this.$route.params.path || '/';
|
|
|
|
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({
|
|
el,
|
|
router,
|
|
apolloProvider,
|
|
render(h) {
|
|
return h(App);
|
|
},
|
|
});
|
|
|
|
return { router, data: dataset };
|
|
}
|