All checks were successful
Build Quasar SPA and Go Backend for memberApp / build-spa (push) Successful in 2m20s
Build Quasar SPA and Go Backend for memberApp / build-backend (amd64, .exe, windows) (push) Successful in 5m27s
Build Quasar SPA and Go Backend for memberApp / build-backend (amd64, , linux) (push) Successful in 5m32s
Build Quasar SPA and Go Backend for memberApp / build-backend (arm, 6, , linux) (push) Successful in 5m28s
Build Quasar SPA and Go Backend for memberApp / build-backend (arm64, , linux) (push) Successful in 5m29s
54 lines
1.4 KiB
TypeScript
54 lines
1.4 KiB
TypeScript
import { defineRouter } from '#q-app/wrappers';
|
|
import {
|
|
createMemoryHistory,
|
|
createRouter,
|
|
createWebHashHistory,
|
|
createWebHistory,
|
|
} from 'vue-router';
|
|
import routes from './routes';
|
|
import { useUserStore } from 'src/vueLib/login/userStore';
|
|
|
|
/*
|
|
* If not building with SSR mode, you can
|
|
* directly export the Router instantiation;
|
|
*
|
|
* The function below can be async too; either use
|
|
* async/await or return a Promise which resolves
|
|
* with the Router instance.
|
|
*/
|
|
|
|
export default defineRouter(function (/* { store, ssrContext } */) {
|
|
const createHistory = process.env.SERVER
|
|
? createMemoryHistory
|
|
: process.env.VUE_ROUTER_MODE === 'history'
|
|
? createWebHistory
|
|
: createWebHashHistory;
|
|
|
|
const Router = createRouter({
|
|
scrollBehavior: () => ({ left: 0, top: 0 }),
|
|
routes,
|
|
|
|
// Leave this as is and make changes in quasar.conf.js instead!
|
|
// quasar.conf.js -> build -> vueRouterMode
|
|
// quasar.conf.js -> build -> publicPath
|
|
history: createHistory(process.env.VUE_ROUTER_BASE),
|
|
});
|
|
|
|
Router.beforeEach((to, from, next) => {
|
|
const userStore = useUserStore();
|
|
const isLoggedIn = userStore.isAuthenticated;
|
|
if (to.meta.requiresAuth && !isLoggedIn) {
|
|
next('/login');
|
|
} else if (
|
|
to.meta.requiresAdmin &&
|
|
!userStore.isPermittedTo(to.path.replace('/', ''), 'read')
|
|
) {
|
|
next('/');
|
|
} else {
|
|
next();
|
|
}
|
|
});
|
|
|
|
return Router;
|
|
});
|