60 lines
1.4 KiB
TypeScript
60 lines
1.4 KiB
TypeScript
import { createRouter, createWebHistory } from 'vue-router'
|
|
import HomeView from '../views/HomeView.vue'
|
|
import { useAuthStore } from '@/stores/auth'
|
|
|
|
const router = createRouter({
|
|
history: createWebHistory(import.meta.env.BASE_URL),
|
|
routes: [
|
|
{
|
|
path: '/',
|
|
name: 'home',
|
|
component: HomeView,
|
|
meta: { requiresAuth: false },
|
|
},
|
|
{
|
|
path: '/test',
|
|
name: 'test',
|
|
component: () => import('../views/TestView.vue'),
|
|
meta: { requiresAuth: false },
|
|
},
|
|
{
|
|
path: '/about',
|
|
name: 'about',
|
|
component: () => import('../views/AboutView.vue'),
|
|
meta: { requiresAuth: false },
|
|
},
|
|
{
|
|
path: '/login',
|
|
name: 'login',
|
|
component: () => import('../views/LoginView.vue'),
|
|
meta: { guestOnly: true },
|
|
},
|
|
{
|
|
path: '/signup',
|
|
name: 'signup',
|
|
component: () => import('../views/SignupView.vue'),
|
|
meta: { guestOnly: true },
|
|
},
|
|
{
|
|
path: '/whiteboard/:id',
|
|
name: 'whiteboard',
|
|
component: () => import('../views/WhiteboardView.vue'),
|
|
meta: { requiresAuth: true, hideTopBar: true },
|
|
},
|
|
],
|
|
})
|
|
|
|
router.beforeEach((to) => {
|
|
const auth = useAuthStore()
|
|
|
|
if (to.meta.guestOnly && auth.isAuthenticated) {
|
|
return '/'
|
|
}
|
|
|
|
if (to.meta.requiresAuth && !auth.isAuthenticated) {
|
|
return '/login'
|
|
}
|
|
})
|
|
|
|
export default router
|