debian-mirror-gitlab/app/assets/javascripts/ide/ide_router.js

112 lines
2.6 KiB
JavaScript
Raw Normal View History

2018-05-09 12:01:36 +05:30
import Vue from 'vue';
import VueRouter from 'vue-router';
2018-11-18 11:00:15 +05:30
import { join as joinPath } from 'path';
2018-05-09 12:01:36 +05:30
import flash from '~/flash';
import store from './stores';
Vue.use(VueRouter);
/**
* Routes below /-/ide/:
/project/h5bp/html5-boilerplate/blob/master
/project/h5bp/html5-boilerplate/blob/master/app/js/test.js
/project/h5bp/html5-boilerplate/mr/123
/project/h5bp/html5-boilerplate/mr/123/app/js/test.js
/workspace/123
/workspace/project/h5bp/html5-boilerplate/blob/my-special-branch
/workspace/project/h5bp/html5-boilerplate/mr/123
/ = /workspace
/settings
*/
// Unfortunately Vue Router doesn't work without at least a fake component
// If you do only data handling
const EmptyRouterComponent = {
render(createElement) {
return createElement('div');
},
};
const router = new VueRouter({
mode: 'history',
base: `${gon.relative_url_root}/-/ide/`,
routes: [
{
2018-11-18 11:00:15 +05:30
path: '/project/:namespace+/:project',
2018-05-09 12:01:36 +05:30
component: EmptyRouterComponent,
children: [
{
2018-11-18 11:00:15 +05:30
path: ':targetmode(edit|tree|blob)/:branchid+/-/*',
2018-05-09 12:01:36 +05:30
component: EmptyRouterComponent,
},
2018-11-18 11:00:15 +05:30
{
path: ':targetmode(edit|tree|blob)/:branchid+/',
redirect: to => joinPath(to.path, '/-/'),
},
{
path: ':targetmode(edit|tree|blob)',
redirect: to => joinPath(to.path, '/master/-/'),
},
2018-05-09 12:01:36 +05:30
{
path: 'merge_requests/:mrid',
component: EmptyRouterComponent,
},
2018-11-18 11:00:15 +05:30
{
path: '',
redirect: to => joinPath(to.path, '/edit/master/-/'),
},
2018-05-09 12:01:36 +05:30
],
},
],
});
router.beforeEach((to, from, next) => {
if (to.params.namespace && to.params.project) {
store
.dispatch('getProjectData', {
namespace: to.params.namespace,
projectId: to.params.project,
})
.then(() => {
2019-03-02 22:35:43 +05:30
const basePath = to.params.pathMatch || '';
2018-11-20 20:47:30 +05:30
const projectId = `${to.params.namespace}/${to.params.project}`;
2018-11-18 11:00:15 +05:30
const branchId = to.params.branchid;
2018-11-20 20:47:30 +05:30
const mergeRequestId = to.params.mrid;
2018-11-08 19:23:39 +05:30
if (branchId) {
2018-11-20 20:47:30 +05:30
store.dispatch('openBranch', {
projectId,
2018-11-08 19:23:39 +05:30
branchId,
2018-11-20 20:47:30 +05:30
basePath,
});
} else if (mergeRequestId) {
store.dispatch('openMergeRequest', {
projectId,
mergeRequestId,
targetProjectId: to.query.target_project,
2018-05-09 12:01:36 +05:30
});
}
})
.catch(e => {
flash(
'Error while loading the project data. Please try again.',
'alert',
document,
null,
false,
true,
);
throw e;
});
}
next();
});
export default router;