X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FGameList.vue;h=60d4fedeb0a4016b20b4a3b44c813e68b904d8d1;hb=0b0dc040acd01ff1855b159c2933cb2eff73b26d;hp=bb97a74278eebcf69f21a54cac5acd2a66c7a38f;hpb=9d58ef95e3affd799571838164f7c5bbfda11f64;p=vchess.git diff --git a/client/src/components/GameList.vue b/client/src/components/GameList.vue index bb97a742..60d4fede 100644 --- a/client/src/components/GameList.vue +++ b/client/src/components/GameList.vue @@ -2,27 +2,61 @@ table tr th Variant - th Players names - th Cadence + th White + th Black + th Time control th(v-if="showResult") Result - th(v-else) Moves count - tr(v-for="g in games" @click="$emit('show-game',g)") + tr(v-for="g in sortedGames" @click="$emit('show-game',g)" + :class="{'my-turn': g.myTurn}") td {{ g.vname }} - td - span(v-for="p in g.players") {{ p.name }} - td {{ g.mainTime }} + {{ g.increment }} + td {{ g.players[0].name || "@nonymous" }} + td {{ g.players[1].name || "@nonymous" }} + td {{ g.timeControl }} td(v-if="showResult") {{ g.score }} - td(v-else) {{ g.movesCount }} + +