10 th(v-if="showResult") Result
12 tr(v-for="g in sortedGames" @click="$emit('show-game',g)"
13 :class="{'my-turn': g.myTurn}")
14 td(data-label="Variant") {{ g.vname }}
15 td(data-label="White") {{ g.players[0].name || "@nonymous" }}
16 td(data-label="Black") {{ g.players[1].name || "@nonymous" }}
17 td(data-label="Time control") {{ g.timeControl }}
18 td(v-if="showResult" data-label="Result") {{ g.score }}
22 import { store } from "@/store";
34 sortedGames: function() {
35 // Show in order: games where it's my turn, my running games, my games, other games
36 this.showResult = this.games.some(g => g.score != "*");
37 let augmentedGames = this.games.map(g => {
39 if (g.players.some(p => p.uid == this.st.user.id || p.sid == this.st.user.sid))
45 const myColor = g.players[0].uid == this.st.user.id
46 || g.players[0].sid == this.st.user.sid
49 if (!!g.fen.match(" " + myColor + " "))
53 return Object.assign({}, g, {priority: priority, myTurn: priority==2});
55 return augmentedGames.sort((g1,g2) => { return g2.priority - g1.priority; });
61 <style scoped lang="sass">
63 // TODO: the style doesn't work... why?
64 background-color: orange