storj/web/satellite/src/router/index.ts

188 lines
6.9 KiB
TypeScript
Raw Normal View History

2019-01-24 20:15:10 +00:00
// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
import Vue from 'vue';
2019-09-09 11:33:39 +01:00
import Router, { RouteRecord } from 'vue-router';
import AccountArea from '@/components/account/AccountArea.vue';
2019-09-09 11:33:39 +01:00
import AccountBilling from '@/components/account/billing/BillingArea.vue';
import BillingHistory from '@/components/account/billing/BillingHistory.vue';
import ProfileArea from '@/components/account/ProfileArea.vue';
import ApiKeysArea from '@/components/apiKeys/ApiKeysArea.vue';
import BucketArea from '@/components/buckets/BucketArea.vue';
import Page404 from '@/components/errors/Page404.vue';
import ProjectDetails from '@/components/project/ProjectDetails.vue';
import ProjectOverviewArea from '@/components/project/ProjectOverviewArea.vue';
import UsageReport from '@/components/project/UsageReport.vue';
2019-09-09 11:33:39 +01:00
import ProjectMembersArea from '@/components/team/ProjectMembersArea.vue';
import { NavigationLink } from '@/types/navigation';
2019-09-09 11:33:39 +01:00
import { AuthToken } from '@/utils/authToken';
import DashboardArea from '@/views/DashboardArea.vue';
2019-09-09 11:33:39 +01:00
import ForgotPassword from '@/views/forgotPassword/ForgotPassword.vue';
import LoginArea from '@/views/login/LoginArea.vue';
import RegisterArea from '@/views/register/RegisterArea.vue';
Vue.use(Router);
/**
* RouteConfig contains information about all routes and subroutes
*/
export abstract class RouteConfig {
// root paths
public static Root = new NavigationLink('/', 'Root');
public static Login = new NavigationLink('/login', 'Login');
public static Register = new NavigationLink('/register', 'Register');
public static ForgotPassword = new NavigationLink('/forgot-password', 'Forgot Password');
public static Account = new NavigationLink('/account', 'Account');
public static ProjectOverview = new NavigationLink('/project-overview', 'Overview');
public static Team = new NavigationLink('/project-members', 'Team');
public static ApiKeys = new NavigationLink('/api-keys', 'API Keys');
public static Buckets = new NavigationLink('/buckets', 'Buckets');
// child paths
public static ProjectDetails = new NavigationLink('details', 'Project Details');
public static UsageReport = new NavigationLink('usage-report', 'Usage Report');
public static Profile = new NavigationLink('profile', 'Profile');
public static Billing = new NavigationLink('billing', 'Billing');
public static BillingHistory = new NavigationLink('billing-history', 'Billing History');
// not in project yet
// public static Referral = new NavigationLink('//ref/:ids', 'Referral');
}
export const router = new Router({
mode: 'history',
routes: [
{
path: RouteConfig.Login.path,
name: RouteConfig.Login.name,
component: LoginArea,
},
{
path: RouteConfig.Register.path,
name: RouteConfig.Register.name,
component: RegisterArea,
},
{
path: RouteConfig.ForgotPassword.path,
name: RouteConfig.ForgotPassword.name,
component: ForgotPassword,
},
{
path: RouteConfig.Root.path,
meta: {
requiresAuth: true,
},
component: DashboardArea,
children: [
{
path: RouteConfig.Account.path,
name: RouteConfig.Account.name,
2019-06-03 13:19:48 +01:00
component: AccountArea,
children: [
{
path: RouteConfig.Profile.path,
name: RouteConfig.Profile.name,
component: ProfileArea,
2019-06-03 13:19:48 +01:00
},
{
path: RouteConfig.Billing.path,
name: RouteConfig.Billing.name,
component: AccountBilling,
},
{
path: RouteConfig.BillingHistory.path,
name: RouteConfig.BillingHistory.name,
component: BillingHistory,
},
],
},
{
path: RouteConfig.ProjectOverview.path,
name: RouteConfig.ProjectOverview.name,
component: ProjectOverviewArea,
children: [
{
path: RouteConfig.UsageReport.path,
name: RouteConfig.UsageReport.name,
component: UsageReport,
},
{
path: RouteConfig.ProjectDetails.path,
name: RouteConfig.ProjectDetails.name,
component: ProjectDetails,
},
],
},
{
path: RouteConfig.Root.path,
name: 'default',
component: ProjectOverviewArea,
},
{
path: RouteConfig.Team.path,
name: RouteConfig.Team.name,
component: ProjectMembersArea,
},
{
path: RouteConfig.ApiKeys.path,
name: RouteConfig.ApiKeys.name,
component: ApiKeysArea,
},
2019-05-16 11:43:46 +01:00
{
path: RouteConfig.Buckets.path,
name: RouteConfig.Buckets.name,
component: BucketArea,
2019-05-16 11:43:46 +01:00
},
],
},
{
path: '*',
name: '404',
component: Page404,
2019-03-14 12:48:43 +00:00
},
],
});
router.beforeEach((to, from, next) => {
if (to.matched.some(route => route.meta.requiresAuth)) {
if (!AuthToken.get()) {
next(RouteConfig.Login.path);
return;
}
}
if (navigateToDefaultSubTab(to.matched, RouteConfig.Account)) {
next(RouteConfig.Account.with(RouteConfig.Profile).path);
return;
}
if (navigateToDefaultSubTab(to.matched, RouteConfig.ProjectOverview)) {
next(RouteConfig.ProjectOverview.with(RouteConfig.ProjectDetails).path);
return;
}
if (to.name === 'default') {
next(RouteConfig.ProjectOverview.with(RouteConfig.ProjectDetails).path);
return;
}
next();
});
/**
* if our route is a tab and has no sub tab route - we will navigate to default subtab.
* F.E. /account/ -> /account/profile/; /project-overview/ -> /project-overview/details/
* @param routes - array of RouteRecord from vue-router
* @param next - callback to process next route
* @param tabRoute - tabNavigator route
*/
function navigateToDefaultSubTab(routes: RouteRecord[], tabRoute: NavigationLink): boolean {
2019-09-09 11:33:39 +01:00
return routes.length === 2 && (routes[1].name as string) === tabRoute.name;
}