X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FBaseGame.vue;h=f49004350d6c317d76cb080a74d4b98997db468a;hb=d36ca1989daec86e5ad4b2e65c8a045af171fafd;hp=e02462e578396744d76b069545c84fa39810e892;hpb=9ca1e26b79ec1873aa6ac914013160f8593d52cf;p=vchess.git diff --git a/client/src/components/BaseGame.vue b/client/src/components/BaseGame.vue index e02462e5..f4900435 100644 --- a/client/src/components/BaseGame.vue +++ b/client/src/components/BaseGame.vue @@ -5,25 +5,28 @@ div#baseGame(tabindex=-1 @click="() => focusBg()" @keydown="handleKeys") .card.smallpad.small-modal.text-center label.modal-close(for="modalEog") h3#eogMessage.section {{ endgameMessage }} - .row - .col-sm-12.col-md-9.col-lg-8 - Board(:vr="vr" :last-move="lastMove" :analyze="analyze" + #gameContainer + #boardContainer + Board(:vr="vr" :last-move="lastMove" :analyze="game.mode=='analyze'" :user-color="game.mycolor" :orientation="orientation" :vname="game.vname" @play-move="play") - .button-group + #controls button(@click="gotoBegin") << button(@click="() => undo()") < button(@click="flip") ⇅ button(@click="() => play()") > button(@click="gotoEnd") >> - #fenDiv(v-if="showFen && !!vr") - p(@click="gotoFenContent") {{ vr.getFen() }} #pgnDiv a#download(href="#") button(@click="download") {{ st.tr["Download PGN"] }} - .col-sm-12.col-md-3.col-lg-4 - MoveList(v-if="showMoves" - :moves="moves" :cursor="cursor" @goto-move="gotoMove") + button(v-if="game.mode!='analyze'" @click="analyzePosition") + | {{ st.tr["Analyze"] }} + #movesList + MoveList(v-if="showMoves" :score="game.score" :message="game.scoreMsg" + :firstNum="firstMoveNumber" :moves="moves" :cursor="cursor" + @goto-move="gotoMove") + // TODO: clearer required ?! + .clearer + +