X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FBaseGame.vue;h=0e0f37208858c87f933b209be4a963dc5e167da7;hb=677fe285f1137d1d3e672dcf2dae3ac6e943be37;hp=2bf1fbdb3b9bbd0d3389c6d54b2a3756b3b50e3d;hpb=dcd68c4108412f45b8ce119ae80ce8f6e296800b;p=vchess.git diff --git a/client/src/components/BaseGame.vue b/client/src/components/BaseGame.vue index 2bf1fbdb..0e0f3720 100644 --- a/client/src/components/BaseGame.vue +++ b/client/src/components/BaseGame.vue @@ -2,15 +2,24 @@ div#baseGame(tabindex=-1 @click="() => focusBg()" @keydown="handleKeys" @wheel="handleScroll") input#modalEog.modal(type="checkbox") - div(role="dialog" data-checkbox="modalEog" aria-labelledby="eogMessage") + div#eogDiv(role="dialog" data-checkbox="modalEog" aria-labelledby="eogMessage") .card.smallpad.small-modal.text-center label.modal-close(for="modalEog") h3#eogMessage.section {{ endgameMessage }} + input#modalAdjust.modal(type="checkbox") + div#adjuster(role="dialog" data-checkbox="modalAdjust" aria-labelledby="labelAdjust") + .card.smallpad.small-modal.text-center + label.modal-close(for="modalAdjust") + label#labelAdjust(for="boardSize") {{ st.tr["Board size"] }} + input#boardSize.slider(type="range" min="0" max="100" value="50" + @input="adjustBoard") #gameContainer #boardContainer - Board(:vr="vr" :last-move="lastMove" :analyze="game.mode=='analyze'" + Board(:vr="vr" :last-move="lastMove" :analyze="analyze" :user-color="game.mycolor" :orientation="orientation" - :vname="game.vname" @play-move="play") + :vname="game.vname" :incheck="incheck" @play-move="play") + #turnIndicator(v-if="game.vname=='Dark' && game.score=='*'") + | {{ turn }} #controls button(@click="gotoBegin") << button(@click="() => undo()") < @@ -18,16 +27,21 @@ div#baseGame(tabindex=-1 @click="() => focusBg()" button(@click="() => play()") > button(@click="gotoEnd") >> #pgnDiv - a#download(href="#") - button(@click="download") {{ st.tr["Download PGN"] }} - button(v-if="game.mode!='analyze'" @click="analyzePosition") - | {{ st.tr["Analyze"] }} + #downloadDiv(v-if="game.vname!='Dark' || game.score!='*'") + a#download(href="#") + button(@click="download") {{ st.tr["Download"] }} PGN + button(onClick="doClick('modalAdjust')") ⤢ + button(v-if="game.vname!='Dark' && game.mode!='analyze'" + @click="analyzePosition") + | {{ st.tr["Analyse"] }} + // NOTE: rather ugly hack to avoid showing twice "rules" link... + button(v-if="!$route.path.match('/variants/')" @click="showRules") + | {{ st.tr["Rules"] }} #movesList MoveList(v-if="showMoves" :score="game.score" :message="game.scoreMsg" :firstNum="firstMoveNumber" :moves="moves" :cursor="cursor" @goto-move="gotoMove") - // TODO: clearer required ?! - .clearer + .clearer -