Saving state (unfinished styling on variant page)
[vchess.git] / public / javascripts / variant.js
index f9d23d8..f9fb0c6 100644 (file)
@@ -1,7 +1,17 @@
 new Vue({
        el: "#variantPage",
-       data: { display: "" }, //do not show anything...
-       // TODO: listen event "show problem", avec le probleme stringifié en arg
-       // Alors: display=game, mode=friend, newGame(fen, turn, ...),
-       //   et set Instructions+Soluce
+       data: {
+               display: "game", //default: play!
+               problem: undefined, //current problem in view
+       },
+       methods: {
+               showProblem: function(problemTxt) {
+                       this.problem = JSON.parse(problemTxt);
+                       this.display = "game";
+               },
+               setDisplay: function(elt) {
+                       this.display = elt;
+                       document.getElementById("drawer-control").checked = false;
+               },
+       },
 });