Move some comments, and remove some of them
[vchess.git] / client / src / router.js
index 6814895..184fede 100644 (file)
@@ -53,6 +53,11 @@ const router = new Router({
       component: Hall,
       //redirect: "/", //problem: redirection before end of AJAX request
     },
+    {
+      path: "/game/:id",
+      name: "game",
+      component: loadView("Game"),
+    },
 //    {
 //      path: "/about",
 //      name: "about",
@@ -72,6 +77,11 @@ router.beforeEach((to, from, next) => {
   window.scrollTo(0, 0); //TODO: check if a live game is running; if yes, call next('/game')
   //https://router.vuejs.org/guide/advanced/navigation-guards.html#global-before-guards
   next();
+    //TODO: si une partie en cours dans storage, rediriger vers cette partie
+    //(à condition que l'URL n'y corresponde pas déjà !)
+    // (l'identifiant de l'utilisateur si connecté)
+//    if (!!localStorage["variant"])
+//      location.hash = "#game?id=" + localStorage["gameId"];
 });
 
 export default router;