Will remove Welcome div, finally
[vchess.git] / client / src / components / GameList.vue
index c1557a2..1e31e73 100644 (file)
@@ -6,34 +6,34 @@ div
         th {{ st.tr["Variant"] }}
         th {{ st.tr["White"] }}
         th {{ st.tr["Black"] }}
-        th {{ st.tr["Time control"] }}
-        th(v-if="showResult") Result
+        th {{ st.tr["Cadence"] }}
+        th {{ st.tr["Result"] }}
     tbody
       tr(v-for="g in sortedGames" @click="$emit('show-game',g)"
           :class="{'my-turn': g.myTurn}")
         td(data-label="Variant") {{ g.vname }}
         td(data-label="White") {{ g.players[0].name || "@nonymous" }}
         td(data-label="Black") {{ g.players[1].name || "@nonymous" }}
-        td(data-label="Time control") {{ g.timeControl }}
-        td(v-if="showResult" data-label="Result") {{ g.score }}
+        td(data-label="Time control") {{ g.cadence }}
+        td(data-label="Result" :class="{finished: g.score!='*'}" @click="deleteGame(g,$event)")
+          | {{ g.score }}
 </template>
 
 <script>
 import { store } from "@/store";
-
+import { GameStorage } from "@/utils/gameStorage";
 export default {
   name: "my-game-list",
   props: ["games"],
   data: function() {
     return {
       st: store.state,
-      showResult: false,
     };
   },
   computed: {
+    // TODO: also sort by g.created
     sortedGames: function() {
       // Show in order: games where it's my turn, my running games, my games, other games
-      this.showResult = this.games.some(g => g.score != "*");
       let augmentedGames = this.games.map(g => {
         let priority = 0;
         if (g.players.some(p => p.uid == this.st.user.id || p.sid == this.st.user.sid))
@@ -46,6 +46,7 @@ export default {
                 || g.players[0].sid == this.st.user.sid
               ? "w"
               : "b";
+            // I play in this game, so g.fen will be defined
             if (!!g.fen.match(" " + myColor + " "))
               priority++;
           }
@@ -55,6 +56,16 @@ export default {
       return augmentedGames.sort((g1,g2) => { return g2.priority - g1.priority; });
     },
   },
+  methods: {
+    deleteGame: function(game, e) {
+      if (game.score != "*")
+      {
+        if (confirm(this.st.tr["Remove game?"]))
+          GameStorage.remove(game.id);
+        e.stopPropagation();
+      }
+    },
+  },
 };
 </script>
 
@@ -62,4 +73,6 @@ export default {
 // TODO: understand why the style applied to <tr> element doesn't work
 tr.my-turn > td
   background-color: #fcd785
+tr td.finished
+  background-color: #f5b7b1
 </style>