first commit

This commit is contained in:
2026-05-03 16:55:22 +05:30
commit d3bb4199e1
12081 changed files with 662460 additions and 0 deletions

View File

@@ -0,0 +1,72 @@
import { createRouter, createWebHistory } from 'vue-router';
import BoothLogin from '../views/BoothLogin.vue';
import VotingFlow from '../views/VotingFlow.vue';
import AdminDashboard from '../views/AdminDashboard.vue';
import Setup from '../views/Setup.vue';
import { authService } from '../services/api';
const routes = [
{
path: '/setup',
name: 'Setup',
component: Setup
},
{
path: '/',
name: 'Login',
component: BoothLogin
},
{
path: '/vote',
name: 'Vote',
component: VotingFlow,
meta: { requiresAuth: true, role: 'booth' }
},
{
path: '/admin',
name: 'Admin',
component: AdminDashboard,
meta: { requiresAuth: true, role: 'admin' }
}
];
const router = createRouter({
history: createWebHistory(),
routes
});
let isConfigured = null;
router.beforeEach(async (to, from, next) => {
// 1. Check if system is configured
if (isConfigured === null) {
try {
const { data } = await authService.checkStatus();
isConfigured = data.configured;
} catch (err) {
console.error('Failed to check configuration status');
}
}
if (!isConfigured && to.name !== 'Setup') {
return next('/setup');
}
if (isConfigured && to.name === 'Setup') {
return next('/');
}
// 2. Auth checks
const token = localStorage.getItem('token');
const role = localStorage.getItem('role');
if (to.meta.requiresAuth && !token) {
next('/');
} else if (to.meta.role && to.meta.role !== role) {
next('/');
} else {
next();
}
});
export default router;