mirror of
https://github.com/OliveTin/OliveTin
synced 2025-11-24 16:46:10 +00:00
136 lines
3.2 KiB
JavaScript
136 lines
3.2 KiB
JavaScript
import { createRouter, createWebHistory } from 'vue-router'
|
|
|
|
import { Wrench01Icon } from '@hugeicons/core-free-icons'
|
|
import { LeftToRightListDashIcon } from '@hugeicons/core-free-icons'
|
|
import { CellsIcon } from '@hugeicons/core-free-icons'
|
|
import { DashboardSquare01Icon } from '@hugeicons/core-free-icons'
|
|
|
|
const routes = [
|
|
{
|
|
path: '/',
|
|
name: 'Actions',
|
|
component: () => import('./Dashboard.vue'),
|
|
meta: { title: 'Actions', icon: DashboardSquare01Icon }
|
|
},
|
|
{
|
|
path: '/dashboards/:title',
|
|
name: 'Dashboard',
|
|
component: () => import('./Dashboard.vue'),
|
|
props: true,
|
|
meta: { title: 'Dashboard' }
|
|
},
|
|
{
|
|
path: '/actionBinding/:bindingId/argumentForm',
|
|
name: 'ActionBinding',
|
|
component: () => import('./views/ArgumentForm.vue'),
|
|
props: true,
|
|
meta: { title: 'Action Binding' }
|
|
},
|
|
{
|
|
path: '/logs',
|
|
name: 'Logs',
|
|
component: () => import('./views/LogsListView.vue'),
|
|
meta: {
|
|
title: 'Logs',
|
|
icon: LeftToRightListDashIcon
|
|
}
|
|
},
|
|
{
|
|
path: '/entities',
|
|
name: 'Entities',
|
|
component: () => import('./views/EntitiesView.vue'),
|
|
meta: {
|
|
title: 'Entities',
|
|
icon: CellsIcon
|
|
}
|
|
},
|
|
{
|
|
path: '/entity-details/:entityType/:entityKey',
|
|
name: 'EntityDetails',
|
|
component: () => import('./views/EntityDetailsView.vue'),
|
|
props: true,
|
|
meta: {
|
|
title: 'OliveTin - Entity Details',
|
|
breadcrumb: [
|
|
{ name: "Entities", href: "/entities" },
|
|
{ name: "Entity Details" }
|
|
]
|
|
}
|
|
},
|
|
{
|
|
path: '/logs/:executionTrackingId',
|
|
name: 'Execution',
|
|
component: () => import('./views/ExecutionView.vue'),
|
|
props: true,
|
|
meta: {
|
|
title: 'Execution',
|
|
breadcrumb: [
|
|
{ name: "Logs", href: "/logs" },
|
|
{ name: "Execution" },
|
|
]
|
|
}
|
|
},
|
|
{
|
|
path: '/diagnostics',
|
|
name: 'Diagnostics',
|
|
component: () => import('./views/DiagnosticsView.vue'),
|
|
meta: {
|
|
title: 'Diagnostics',
|
|
icon: Wrench01Icon
|
|
}
|
|
},
|
|
{
|
|
path: '/login',
|
|
name: 'Login',
|
|
component: () => import('./views/LoginView.vue'),
|
|
meta: { title: 'Login' }
|
|
},
|
|
{
|
|
path: '/user',
|
|
name: 'UserInformation',
|
|
component: () => import('./views/UserControlPanel.vue'),
|
|
meta: { title: 'User Information' }
|
|
},
|
|
{
|
|
path: '/:pathMatch(.*)*',
|
|
name: 'NotFound',
|
|
component: () => import('./views/NotFoundView.vue'),
|
|
meta: { title: 'Page Not Found' }
|
|
}
|
|
]
|
|
|
|
// Create router instance
|
|
const router = createRouter({
|
|
history: createWebHistory(),
|
|
routes,
|
|
scrollBehavior(to, from, savedPosition) {
|
|
if (savedPosition) {
|
|
return savedPosition
|
|
} else {
|
|
return { top: 0 }
|
|
}
|
|
}
|
|
})
|
|
|
|
// Navigation guard to update page title
|
|
router.beforeEach((to, from, next) => {
|
|
if (to.meta && to.meta.title) {
|
|
document.title = to.meta.title + " - OliveTin"
|
|
}
|
|
next()
|
|
})
|
|
|
|
// Navigation guard for authentication (if needed)
|
|
router.beforeEach((to, from, next) => {
|
|
// Check if user is authenticated for protected routes
|
|
const isAuthenticated = window.isAuthenticated || true // Default to true for now
|
|
|
|
if (to.meta.requiresAuth && !isAuthenticated) {
|
|
next('/login')
|
|
} else {
|
|
next()
|
|
}
|
|
})
|
|
|
|
export default router
|