X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FBaseGame.vue;h=dc1ec676192edec94cc108ff436875d677030a4b;hp=07f6bba62bbb6681e5dc123047b5321be007c026;hb=a13cbc0f2c8cf46c0584118a11af9e3cd6bbdcb9;hpb=b91392511d5df54b0e3cd5fcf439471cc6767804 diff --git a/client/src/components/BaseGame.vue b/client/src/components/BaseGame.vue index 07f6bba6..dc1ec676 100644 --- a/client/src/components/BaseGame.vue +++ b/client/src/components/BaseGame.vue @@ -104,35 +104,32 @@ export default { cursor: -1, //index of the move just played lastMove: null, firstMoveNumber: 0, //for printing - incheck: [], //for Board - V: null // TODO: need "local" V to trigger re-computation of computed properties ? - // --> le passer depuis CompGame ou Game comme une property ?! + incheck: [] //for Board }; }, watch: { // game initial FEN changes when a new game starts - - // TODO: this watcher is obsolete ? - "game.fenStart": function() { this.re_setVariables(); }, }, computed: { showMoves: function() { - return this.game.score != "*" || (window.V && V.ShowMoves == "all"); + return this.game.score != "*" || (this.vr && this.vr.ShowMoves == "all"); }, showTurn: function() { - return this.game.score == '*' && window.V && V.ShowMoves != "all"; + return this.game.score == '*' && this.vr && this.vr.ShowMoves != "all"; }, turn: function() { - return this.st.tr[(this.vr.turn == 'w' ? "White" : "Black") + " to move"]; + return this.vr + ? this.st.tr[(this.vr.turn == 'w' ? "White" : "Black") + " to move"] + : ""; }, canAnalyze: function() { - return this.game.mode != "analyze" && window.V && V.CanAnalyze; + return this.game.mode != "analyze" && this.vr && this.vr.CanAnalyze; }, allowDownloadPGN: function() { - return this.game.score != "*" || (window.V && V.ShowMoves == "all"); + return this.game.score != "*" || (this.vr && this.vr.ShowMoves == "all"); } }, created: function() {