X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FBaseGame.vue;h=f10420d7a8a7b9ef6168f9931466d3d3c5620383;hb=41cb9b940084d6f56351a772f0340ebf0bc8d1bc;hp=aa19b47771a4a80cd92e10322170dc201856ae29;hpb=4494c17cdf17159badd2313549d01f2e562b991f;p=vchess.git diff --git a/client/src/components/BaseGame.vue b/client/src/components/BaseGame.vue index aa19b477..f10420d7 100644 --- a/client/src/components/BaseGame.vue +++ b/client/src/components/BaseGame.vue @@ -6,39 +6,42 @@ .card.smallpad.small-modal.text-center label.modal-close(for="modalEog") h3#eogMessage.section {{ endgameMessage }} - Board(:vr="vr" :last-move="lastMove" :analyze="analyze" :user-color="mycolor" - :orientation="orientation" :vname="vname" @play-move="play") + // TODO: or "BoardHex" if this.game.vname in "Hexagonal..." + Board(:vr="vr" :last-move="lastMove" :analyze="analyze" + :user-color="game.mycolor" :orientation="orientation" + :vname="game.vname" @play-move="play") .button-group button(@click="() => play()") Play button(@click="() => undo()") Undo button(@click="flip") Flip button(@click="gotoBegin") GotoBegin button(@click="gotoEnd") GotoEnd + #messageDiv.section-content(v-if="game.type=='corr'") {{ curMoveMessage() }} #fenDiv.section-content(v-if="showFen && !!vr") p#fenString.text-center {{ vr.getFen() }} #pgnDiv.section-content a#download(href="#") - .button-group - button#downloadBtn(@click="download") {{ st.tr["Download PGN"] }} - button Import game - //MoveList(v-if="showMoves" - :moves="moves" :cursor="cursor" @goto-move="gotoMove") + button#downloadBtn(@click="download") {{ st.tr["Download PGN"] }} + div#movesList + MoveList(v-if="showMoves" + :moves="moves" :cursor="cursor" @goto-move="gotoMove")