8a79d184aa
* [V3-965] Satellite account. Fixed Vue lint errors
78 lines
1.7 KiB
TypeScript
78 lines
1.7 KiB
TypeScript
// Copyright (C) 2018 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import Vue from 'vue';
|
|
import Router from 'vue-router';
|
|
import ROUTES from '@/utils/constants/routerConstants';
|
|
import Login from '@/views/Login.vue';
|
|
import Register from '@/views/Register.vue';
|
|
import Dashboard from '@/views/Dashboard.vue';
|
|
import AccountArea from '@/components/dashboard/account/AccountArea.vue';
|
|
import ProjectDetails from '@/components/projectDetails/ProjectDetailsArea.vue';
|
|
import TeamArea from '@/components/team/TeamArea.vue';
|
|
import Page404 from '@/components/errors/Page404.vue';
|
|
import { getToken } from '@/utils/tokenManager';
|
|
|
|
Vue.use(Router);
|
|
|
|
let router = new Router({
|
|
mode: 'history',
|
|
routes: [
|
|
{
|
|
path: ROUTES.LOGIN.path,
|
|
name: ROUTES.LOGIN.name,
|
|
component: Login
|
|
},
|
|
{
|
|
path: ROUTES.REGISTER.path,
|
|
name: ROUTES.REGISTER.name,
|
|
component: Register
|
|
},
|
|
{
|
|
path: ROUTES.DASHBOARD.path,
|
|
name: ROUTES.DASHBOARD.name,
|
|
meta: {
|
|
requiresAuth: true
|
|
},
|
|
component: Dashboard,
|
|
children: [
|
|
{
|
|
path: '/account-settings',
|
|
name: 'AccountSettings',
|
|
component: AccountArea
|
|
},
|
|
{
|
|
path: '/project-details',
|
|
name: 'ProjectDetails',
|
|
component: ProjectDetails
|
|
},
|
|
{
|
|
path: '/team',
|
|
name: 'Team',
|
|
component: TeamArea
|
|
}
|
|
]
|
|
},
|
|
{
|
|
path: '*',
|
|
name: '404',
|
|
component: Page404
|
|
}
|
|
]
|
|
});
|
|
|
|
// Makes check that Token exist at session storage before any route except Login and Register
|
|
router.beforeEach((to, from, next) => {
|
|
if (to.matched.some(route => route.meta.requiresAuth)) {
|
|
if (!getToken()) {
|
|
next(ROUTES.LOGIN);
|
|
|
|
return;
|
|
}
|
|
}
|
|
|
|
next();
|
|
});
|
|
|
|
export default router;
|