2020-03-13 15:44:24 +05:30
|
|
|
import Vue from 'vue';
|
2020-04-22 19:07:51 +05:30
|
|
|
import { GlToast } from '@gitlab/ui';
|
2020-03-13 15:44:24 +05:30
|
|
|
import Translate from '~/vue_shared/translate';
|
2021-02-22 17:27:13 +05:30
|
|
|
import { parseBoolean } from '~/lib/utils/common_utils';
|
2020-03-13 15:44:24 +05:30
|
|
|
import RegistryExplorer from './pages/index.vue';
|
|
|
|
import RegistryBreadcrumb from './components/registry_breadcrumb.vue';
|
|
|
|
import createRouter from './router';
|
2021-02-22 17:27:13 +05:30
|
|
|
import { apolloProvider } from './graphql/index';
|
2020-03-13 15:44:24 +05:30
|
|
|
|
|
|
|
Vue.use(Translate);
|
2020-04-22 19:07:51 +05:30
|
|
|
Vue.use(GlToast);
|
2020-03-13 15:44:24 +05:30
|
|
|
|
|
|
|
export default () => {
|
|
|
|
const el = document.getElementById('js-container-registry');
|
|
|
|
|
|
|
|
if (!el) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
const { endpoint, expirationPolicy, isGroupPage, isAdmin, ...config } = el.dataset;
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
// This is a mini state to help the breadcrumb have the correct name in the details page
|
|
|
|
const breadCrumbState = Vue.observable({
|
|
|
|
name: '',
|
|
|
|
updateName(value) {
|
|
|
|
this.name = value;
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const router = createRouter(endpoint, breadCrumbState);
|
2020-03-13 15:44:24 +05:30
|
|
|
|
|
|
|
const attachMainComponent = () =>
|
|
|
|
new Vue({
|
|
|
|
el,
|
|
|
|
router,
|
2021-02-22 17:27:13 +05:30
|
|
|
apolloProvider,
|
2020-03-13 15:44:24 +05:30
|
|
|
components: {
|
|
|
|
RegistryExplorer,
|
|
|
|
},
|
2021-02-22 17:27:13 +05:30
|
|
|
provide() {
|
|
|
|
return {
|
|
|
|
breadCrumbState,
|
|
|
|
config: {
|
|
|
|
...config,
|
|
|
|
expirationPolicy: expirationPolicy ? JSON.parse(expirationPolicy) : undefined,
|
|
|
|
isGroupPage: parseBoolean(isGroupPage),
|
|
|
|
isAdmin: parseBoolean(isAdmin),
|
|
|
|
},
|
|
|
|
/* eslint-disable @gitlab/require-i18n-strings */
|
|
|
|
dockerBuildCommand: `docker build -t ${config.repositoryUrl} .`,
|
|
|
|
dockerPushCommand: `docker push ${config.repositoryUrl}`,
|
|
|
|
dockerLoginCommand: `docker login ${config.registryHostUrlWithPort}`,
|
|
|
|
/* eslint-enable @gitlab/require-i18n-strings */
|
|
|
|
};
|
|
|
|
},
|
2020-03-13 15:44:24 +05:30
|
|
|
render(createElement) {
|
|
|
|
return createElement('registry-explorer');
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const attachBreadcrumb = () => {
|
|
|
|
const breadCrumbEl = document.querySelector('nav .js-breadcrumbs-list');
|
|
|
|
const crumbs = [...document.querySelectorAll('.js-breadcrumbs-list li')];
|
|
|
|
return new Vue({
|
|
|
|
el: breadCrumbEl,
|
|
|
|
router,
|
2021-02-22 17:27:13 +05:30
|
|
|
apolloProvider,
|
2020-03-13 15:44:24 +05:30
|
|
|
components: {
|
|
|
|
RegistryBreadcrumb,
|
|
|
|
},
|
|
|
|
render(createElement) {
|
|
|
|
return createElement('registry-breadcrumb', {
|
|
|
|
class: breadCrumbEl.className,
|
|
|
|
props: {
|
|
|
|
crumbs,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
return { attachBreadcrumb, attachMainComponent };
|
|
|
|
};
|