X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Frouter.js;h=599cfcb3dce5672dd2fd74207f491bedcfe7bca3;hb=dac395887d96e2d642b209c6db6aaacc3ffacb34;hp=1507c8e7b5d8c26551df3d6945a1f0d3b01f8019;hpb=625022fdcf750f0aff8fcd699f7e9b89730e1d10;p=vchess.git diff --git a/client/src/router.js b/client/src/router.js index 1507c8e7..599cfcb3 100644 --- a/client/src/router.js +++ b/client/src/router.js @@ -1,35 +1,91 @@ import Vue from "vue"; import Router from "vue-router"; -import Home from "./views/Home.vue"; +import Hall from "./views/Hall.vue"; Vue.use(Router); function loadView(view) { - return () => import(/* webpackChunkName: "view-[request]" */ `@/views/${view}.vue`) + return () => import(/* webpackChunkName: "view-[request]" */ `@/views/${view}.vue`) } -export default new Router({ +import { ajax } from "@/utils/ajax"; +import { store } from "@/store"; + +const router = new Router({ routes: [ { path: "/", - name: "home", - component: Home, + name: "hall", + component: Hall, + }, + { + path: "/variants", + name: "variants", + component: loadView("Variants"), + }, + { + path: "/variants/:vname([a-zA-Z0-9]+)", + name: "rules", + component: loadView("Rules"), + }, + { + path: "/authenticate/:token", + name: "authenticate", + beforeEnter: (to, from, next) => { + ajax( + "/authenticate", + "GET", + {token: to.params["token"]}, + (res) => { + if (!res.errmsg) //if not already logged in + { + store.state.user.id = res.id; + store.state.user.name = res.name; + store.state.user.email = res.email; + store.state.user.notify = res.notify; + localStorage["myname"] = res.name; + localStorage["myid"] = res.id; + } + // TODO: I don't like these 2 lines, "next('/')" should be enough + window.location = "/"; + next(); + } + ); + }, + component: Hall, + //redirect: "/", //problem: redirection before end of AJAX request + }, + { + path: "/mygames", + name: "mygames", + component: loadView("MyGames"), + }, + { + path: "/game/:id", + name: "game", + component: loadView("Game"), + }, + { + path: "/analyze/:vname([a-zA-Z0-9]+)", + name: "analyze", + component: loadView("Analyze"), }, { 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: loadView('About'), - //function() { - // return import(/* webpackChunkName: "about" */ "./views/About.vue"); - //} - }, - { - path: "/test", - name: "test", - component: loadView("Test"), - }, + component: loadView("About"), + }, ] }); + +router.beforeEach((to, from, next) => { + window.scrollTo(0, 0); + if (!!store.state.conn) //uninitialized at first page + { + // Notify WebSockets server (TODO: path or fullPath?) + store.state.conn.send(JSON.stringify({code: "pagechange", page: to.path})); + } + next(); +}); + +export default router;