X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=public%2Fjavascripts%2Fvariant.js;h=819bf90fd10b6d8e9c4df595fe2fa09ee404346f;hb=375ecdd1387e729f85ed114e82253469e4849869;hp=2174c50918498f1cfe0e73daa7b4c65dfed03cab;hpb=4ecf423bce243e8e10b5b777a95f67ecc9f8d8d3;p=vchess.git diff --git a/public/javascripts/variant.js b/public/javascripts/variant.js index 2174c509..819bf90f 100644 --- a/public/javascripts/variant.js +++ b/public/javascripts/variant.js @@ -1,15 +1,28 @@ 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: "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) { - if (this.display == elt) - this.display = ""; //hide - else - this.display = elt; //show + showProblem: function(problemTxt) { + this.problem = JSON.parse(problemTxt); + 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"; }, }, });