Finished problems implementation. TODO: specify state for Crazyhouse,Grand. Improve...
[vchess.git] / public / javascripts / variant.js
index 2174c50..3aa2f68 100644 (file)
@@ -1,9 +1,9 @@
 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: "", //do not show anything...
+               problem: undefined, //current problem in view
+       },
        methods: {
                toggleDisplay: function(elt) {
                        if (this.display == elt)
@@ -11,5 +11,9 @@ new Vue({
                        else
                                this.display = elt; //show
                },
+               showProblem: function(problemTxt) {
+                       this.problem = JSON.parse(problemTxt);
+                       this.display = "game";
+               },
        },
 });