2018-11-27 10:51:33 +00:00
|
|
|
// Copyright (C) 2018 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
2018-11-05 15:26:18 +00:00
|
|
|
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';
|
2018-11-14 14:00:01 +00:00
|
|
|
import Dashboard from '@/views/Dashboard.vue';
|
|
|
|
import AccountArea from '@/components/dashboard/account/AccountArea.vue';
|
2018-11-23 15:48:11 +00:00
|
|
|
import ProjectDetails from '@/components/projectDetails/ProjectDetailsArea.vue';
|
2018-11-28 09:16:35 +00:00
|
|
|
import {getToken} from "@/utils/tokenManager";
|
2018-11-05 15:26:18 +00:00
|
|
|
|
|
|
|
Vue.use(Router);
|
|
|
|
|
2018-11-28 09:16:35 +00:00
|
|
|
const 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,
|
|
|
|
component: Dashboard,
|
|
|
|
meta: {
|
|
|
|
requiresAuth: true
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: '/account-settings',
|
|
|
|
name: 'AccountSettings',
|
|
|
|
component: AccountArea
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: '/project-details',
|
|
|
|
name: 'ProjectDetails',
|
|
|
|
component: ProjectDetails
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
2018-11-05 15:26:18 +00:00
|
|
|
});
|
2018-11-28 09:16:35 +00:00
|
|
|
|
|
|
|
// Makes check that Token exist at session storage before any route except Login and Register
|
|
|
|
router.beforeEach((to, from, next) => {
|
|
|
|
|
|
|
|
if(to.matched.some(record => record.meta.requiresAuth)) {
|
|
|
|
if (!getToken()) {
|
|
|
|
|
|
|
|
next(ROUTES.LOGIN)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
|
|
|
|
export default router;
|
|
|
|
|