X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FGameList.vue;h=60d4fedeb0a4016b20b4a3b44c813e68b904d8d1;hb=0b0dc040acd01ff1855b159c2933cb2eff73b26d;hp=bf9c8ffc3125169b31436479c6139795703cef71;hpb=41cb9b940084d6f56351a772f0340ebf0bc8d1bc;p=vchess.git diff --git a/client/src/components/GameList.vue b/client/src/components/GameList.vue index bf9c8ffc..60d4fede 100644 --- a/client/src/components/GameList.vue +++ b/client/src/components/GameList.vue @@ -6,8 +6,8 @@ table th Black th Time control th(v-if="showResult") Result - // TODO: show my games first (st.user.id or sid) - 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 {{ g.players[0].name || "@nonymous" }} td {{ g.players[1].name || "@nonymous" }} @@ -16,13 +16,47 @@ table + +