Experimental in-page analyze + show rules from Game page
[vchess.git] / client / src / views / Analyse.vue
index 1605b58..39022e8 100644 (file)
@@ -19,6 +19,8 @@ import BaseGame from "@/components/BaseGame.vue";
 import { store } from "@/store";
 export default {
   name: "my-analyse",
+  // TODO: game import ==> require some adjustments, like
+  // the ability to analyse from a list of moves...
   components: {
     BaseGame
   },
@@ -27,7 +29,6 @@ export default {
     return {
       st: store.state,
       gameRef: {
-        //given in URL (rid = remote ID)
         vname: "",
         fen: ""
       },
@@ -63,7 +64,9 @@ export default {
       if (!routeFen) this.alertAndQuit("Missing FEN");
       else {
         this.gameRef.fen = routeFen.replace(/_/g, " ");
-        // orientation is optional: taken from FEN if missing
+        // orientation is optional: taken from FEN if missing.
+        // NOTE: currently no internal usage of 'side', but could be used by
+        // manually settings the URL (TODO?).
         const orientation = this.$route.query["side"];
         this.initialize(orientation);
       }