X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FGame.vue;h=1cb9af5883864476620659da0676d2545067d15c;hb=afd3240d89a2f6191fe9426960dc0c1667b40c77;hp=e417e5e434506fb7adf826616edc9b4d0b5e772f;hpb=e69f159dfdeb8dbe5eee89c6e6f78fd9e7323640;p=vchess.git diff --git a/client/src/views/Game.vue b/client/src/views/Game.vue index e417e5e4..1cb9af58 100644 --- a/client/src/views/Game.vue +++ b/client/src/views/Game.vue @@ -11,23 +11,19 @@ button(@click="abortGame") {{ st.tr["Game is too boring"] }} BaseGame(:game="game" :vr="vr" ref="basegame" @newmove="processMove" @gameover="gameOver") - textarea#mvMessage(v-if="game.type=='corr'" v-model="corrMsg") div Names: {{ game.players[0].name }} - {{ game.players[1].name }} - div Time: {{ virtualClocks[0] }} - {{ virtualClocks[1] }} + div(v-if="game.score=='*'") Time: {{ virtualClocks[0] }} - {{ virtualClocks[1] }} .button-group(v-if="game.mode!='analyze' && game.score=='*'") button(@click="offerDraw") Draw button(@click="() => abortGame()") Abort button(@click="resign") Resign - div(v-if="game.type=='corr'") - textarea(v-show="score=='*' && vr.turn==game.mycolor" v-model="corrMsg") - div(v-show="cursor>=0") {{ moves[cursor].message }} + textarea(v-if="game.score=='*'" v-model="corrMsg") @@ -114,6 +110,8 @@ export default { this.gameRef.rid = this.$route.query["rid"]; this.loadGame(); } + // TODO: mode analyse (/analyze/Atomic/rn + // ... fen = query[], vname=params[] ... // 0.1] Ask server for room composition: const funcPollClients = () => { this.st.conn.send(JSON.stringify({code:"pollclients"}));