Prepare some more variants (unfinished)
[vchess.git] / public / javascripts / variant.js
index 03dbbdd..819bf90 100644 (file)
@@ -1,16 +1,28 @@
 new Vue({
        el: "#variantPage",
        data: {
-               display: "game", //default: play!
+               display: "play", //default: play!
                problem: undefined, //current problem in view
        },
+       created: function() {
+               const url = window.location.href;
+               const hashPos = url.indexOf("#");
+               if (hashPos >= 0)
+                       this.setDisplay(url.substr(hashPos+1));
+       },
        methods: {
-               toggleDisplay: function(elt) {
-                       this.display = elt; //show
-               },
                showProblem: function(problemTxt) {
                        this.problem = JSON.parse(problemTxt);
-                       this.display = "game";
+                       this.display = "play";
+               },
+               setDisplay: function(elt) {
+                       this.display = elt;
+                       let menuToggle = document.getElementById("drawer-control");
+                       if (!!menuToggle)
+                               menuToggle.checked = false;
+               },
+               notDark: function() {
+                       return variant != "Dark";
                },
        },
 });