2023-11-14 17:47:43 +07:00
|
|
|
import { createRouter, createWebHistory } from 'vue-router'
|
|
|
|
|
import HomeView from '@/views/HomeView.vue'
|
2023-12-08 13:15:13 +07:00
|
|
|
import MapView from '@/views/MapView.vue'
|
2024-01-19 15:34:09 +07:00
|
|
|
import MianView from '@/views/MianView.vue'
|
2023-11-07 11:17:13 +07:00
|
|
|
|
2023-11-15 09:51:52 +07:00
|
|
|
import keycloak from '@/plugins/keycloak'
|
|
|
|
|
|
2023-11-07 11:17:13 +07:00
|
|
|
const router = createRouter({
|
2023-11-14 17:47:43 +07:00
|
|
|
history: createWebHistory(import.meta.env.BASE_URL),
|
|
|
|
|
routes: [
|
|
|
|
|
{
|
2024-01-19 15:34:09 +07:00
|
|
|
path: "/",
|
|
|
|
|
name: "home",
|
|
|
|
|
component: MianView,
|
|
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
path: '/',
|
|
|
|
|
name: 'home',
|
|
|
|
|
component: HomeView,
|
|
|
|
|
meta: {
|
|
|
|
|
Auth: true,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: '/map',
|
|
|
|
|
name: 'map',
|
|
|
|
|
component: MapView,
|
|
|
|
|
meta: {
|
|
|
|
|
Auth: true,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: '/about',
|
|
|
|
|
name: 'about',
|
|
|
|
|
// route level code-splitting
|
|
|
|
|
// this generates a separate chunk (about.[hash].js) for this route
|
|
|
|
|
// which is lazy-loaded when the route is visited.
|
|
|
|
|
component: () => import('@/views/AboutView.vue'),
|
|
|
|
|
meta: {
|
|
|
|
|
Auth: true,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: '/history',
|
|
|
|
|
name: 'history',
|
|
|
|
|
component: () => import('@/views/HistoryView.vue'),
|
|
|
|
|
meta: {
|
|
|
|
|
Auth: true,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
// {
|
|
|
|
|
// path: '/camera',
|
|
|
|
|
// name: 'camera',
|
|
|
|
|
// component: () => import('@/views/SampleCamera.vue'),
|
|
|
|
|
// },
|
|
|
|
|
/**
|
|
|
|
|
* 404 Not Found
|
|
|
|
|
* ref: https://router.vuejs.org/guide/essentials/dynamic-matching.html#catch-all-404-not-found-route
|
|
|
|
|
*/
|
|
|
|
|
{
|
|
|
|
|
path: '/:pathMatch(.*)*',
|
|
|
|
|
name: 'NotFound',
|
|
|
|
|
component: () => import('@/views/ErrorNotFoundPage.vue'),
|
|
|
|
|
meta: {
|
|
|
|
|
Auth: true,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
]
|
2023-11-15 09:51:52 +07:00
|
|
|
},
|
2023-11-14 17:47:43 +07:00
|
|
|
],
|
|
|
|
|
})
|
2023-11-07 11:17:13 +07:00
|
|
|
|
2023-11-15 09:51:52 +07:00
|
|
|
router.beforeEach((to, from, next) => {
|
|
|
|
|
if (to.meta.Auth) {
|
|
|
|
|
if (!keycloak.authenticated) {
|
|
|
|
|
keycloak.login({
|
|
|
|
|
redirectUri: `${window.location.protocol}//${window.location.host}${to.path}`,
|
|
|
|
|
locale: 'th',
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
// keycloak.updateToken(60);
|
|
|
|
|
// const role = keycloak.tokenParsed?.role
|
|
|
|
|
// if (role.includes(to.meta.Role)) {
|
|
|
|
|
next()
|
|
|
|
|
// } else {
|
|
|
|
|
// next({ path: '' })
|
|
|
|
|
// // next();
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
next()
|
|
|
|
|
}
|
|
|
|
|
// next();
|
|
|
|
|
})
|
|
|
|
|
|
2023-11-14 17:47:43 +07:00
|
|
|
export default router
|