hrms-checkin/src/router/index.ts

152 lines
4.2 KiB
TypeScript
Raw Normal View History

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-07-16 22:29:09 +07:00
import MainView from '@/views/MainView.vue'
2025-02-20 10:41:36 +07:00
2024-07-23 14:46:40 +07:00
const loginView = () => import('@/views/login.vue')
2025-02-20 10:41:36 +07:00
const resetPasswordView = () => import('@/views/ResetPassword.vue')
const noPositionView = () => import('@/views/NoPositionView.vue')
2023-11-07 11:17:13 +07:00
2024-12-20 22:48:33 +07:00
import { authenticated, logout } from '@/plugins/auth'
2023-11-15 09:51:52 +07:00
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-07-16 21:27:39 +07:00
path: '/',
name: 'main',
2024-07-16 22:29:09 +07:00
component: MainView,
2024-01-19 15:34:09 +07:00
children: [
{
path: '/',
name: 'home',
component: HomeView,
meta: {
Auth: true,
},
},
2026-04-27 19:21:23 +07:00
// {
// path: '/map',
// name: 'map',
// component: MapView,
// meta: {
// Auth: true,
// },
// },
2024-01-19 15:34:09 +07:00
{
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: {
2024-07-16 22:29:09 +07:00
Auth: false,
2024-01-19 15:34:09 +07:00
},
},
/**
2024-07-16 21:27:39 +07:00
* 404 Not Found
* ref: https://router.vuejs.org/guide/essentials/dynamic-matching.html#catch-all-404-not-found-route
*/
2024-01-19 15:34:09 +07:00
{
path: '/:pathMatch(.*)*',
name: 'NotFound',
component: () => import('@/views/ErrorNotFoundPage.vue'),
meta: {
Auth: true,
},
},
2024-07-16 21:27:39 +07:00
],
2023-11-15 09:51:52 +07:00
},
2024-07-23 14:46:40 +07:00
// authen with keycloak client
{
path: '/login',
name: 'loginMain',
component: loginView,
meta: {
Auth: false,
},
},
2024-07-26 14:17:03 +07:00
{
path: '/auth',
name: 'auth',
component: () => import('@/views/auth.vue'),
},
2025-02-20 10:41:36 +07:00
{
path: '/reset-password',
name: 'reset-password',
component: resetPasswordView,
meta: {
Auth: false,
},
},
{
path: '/no-position',
name: 'no-position',
component: noPositionView,
meta: {
Auth: false,
},
},
2023-11-14 17:47:43 +07:00
],
})
2023-11-07 11:17:13 +07:00
2024-07-23 14:46:40 +07:00
// authen with keycloak client
2024-08-28 16:37:46 +07:00
router.beforeEach(async (to, from, next) => {
// ตรวจสอบเส้นทางพิเศษที่ไม่ต้องตรวจสอบสิทธิ์
const publicPaths = ['/login', '/auth', '/reset-password', '/no-position']
if (publicPaths.includes(to.path)) {
next()
return
}
// ตรวจสอบการ authenticate
2023-11-15 09:51:52 +07:00
if (to.meta.Auth) {
2024-08-28 16:37:46 +07:00
const checkAuthen = await authenticated()
if (!checkAuthen && to.meta.Auth) {
2024-12-20 22:48:33 +07:00
logout()
return
2024-07-16 22:29:09 +07:00
}
2023-11-15 09:51:52 +07:00
}
// ตรวจสอบว่าผู้ใช้มีข้อมูลสังกัดหรือไม่
// ต้องทำการ dynamic import เนื่องจากเป็นการใช้งาน Pinia store ใน router
if (to.path !== '/no-position') {
try {
const { usePositionKeycloakStore } = await import('@/stores/positionKeycloak')
const positionKeycloakStore = usePositionKeycloakStore()
const dataPositionKeycloak = positionKeycloakStore.dataPositionKeycloak
// ถ้ามีข้อมูล positionKeycloak แล้ว ให้ตรวจสอบว่ามี organization หรือไม่
if (dataPositionKeycloak) {
const hasOrganization =
dataPositionKeycloak.organization &&
(dataPositionKeycloak.organization.root ||
dataPositionKeycloak.organization.child1 ||
dataPositionKeycloak.organization.child2 ||
dataPositionKeycloak.organization.child3 ||
dataPositionKeycloak.organization.child4)
if (!hasOrganization) {
next('/no-position')
return
}
}
} catch (error) {
console.error('Error checking position:', error)
}
}
2024-07-16 21:27:39 +07:00
next()
2023-11-15 09:51:52 +07:00
})
2023-11-14 17:47:43 +07:00
export default router