Fix clocks update + abort games from MyGames page
authorBenjamin Auder <benjamin.auder@somewhere>
Sat, 7 Mar 2020 20:00:52 +0000 (21:00 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Sat, 7 Mar 2020 20:00:52 +0000 (21:00 +0100)
client/src/components/GameList.vue
client/src/translations/rules/Suction/en.pug
client/src/translations/rules/Suction/es.pug
client/src/translations/rules/Suction/fr.pug
client/src/utils/gameStorage.js
client/src/views/Game.vue
client/src/views/MyGames.vue
server/sockets.js

index 0a8bd8c..098efd0 100644 (file)
@@ -150,7 +150,7 @@ export default {
             : "Abort and remove game?";
         if (confirm(this.st.tr[message])) {
           const afterDelete = () => {
-            if (game.score == "*") this.$emit("abort", game);
+            if (game.score == "*") this.$emit("abortgame", game);
             this.$set(this.deleted, game.id, true);
           };
           if (game.type == "live")
index 05144e1..b2b3b74 100644 (file)
@@ -27,7 +27,7 @@ p.
 
 h3 End of the game
 
-p The goal is to "suck" the opponent's king to your own first rank.
+p The goal is to attract the opponent's king to your own first rank.
 
 figure.diagram-container
   .diagram
index 51db2d1..351c67d 100644 (file)
@@ -28,7 +28,7 @@ p.
 
 h3 Fin de la partida
 
-p El objetivo es "absorber" al rey contrario a tu primera fila.
+p El objetivo es atraer al rey contrario a tu primera fila.
 
 figure.diagram-container
   .diagram
index 265cd74..b3c5403 100644 (file)
@@ -28,7 +28,7 @@ p.
 
 h3 Fin de la partie
 
-p Le but est d'"aspirer" le roi adverse jusqu'à votre première rangée.
+p Le but est d'attirer le roi adverse jusqu'à votre première rangée.
 
 figure.diagram-container
   .diagram
index 5c094dc..92db299 100644 (file)
@@ -122,7 +122,7 @@ export const GameStorage = {
       if (!err) {
         let transaction = db.transaction(["games"], "readwrite");
         transaction.oncomplete = function() {
-          callback({}); //everything's fine
+          callback(); //everything's fine
         };
         transaction.objectStore("games").delete(gameId);
       }
index 55b3688..b941e37 100644 (file)
@@ -895,6 +895,7 @@ export default {
         this.virtualClocks = this.game.clocks.map(s => ppt(s).split(':'));
         return;
       }
+      clearInterval(this.clockUpdate);
       const currentTurn = this.vr.turn;
       const currentMovesCount = this.game.moves.length;
       const colorIdx = ["w", "b"].indexOf(currentTurn);
index 4b5e33c..2701e9e 100644 (file)
@@ -11,12 +11,13 @@ main
         v-show="display=='live'"
         :games="liveGames"
         @show-game="showGame"
+        @abortgame="abortGame"
       )
       GameList(
         v-show="display=='corr'"
         :games="corrGames"
         @show-game="showGame"
-        @abort="abortGame"
+        @abortgame="abortGame"
       )
 </template>
 
index ea95dc5..e420b8c 100644 (file)
@@ -241,7 +241,7 @@ module.exports = function(wss) {
         case "mabort": {
           const gamePg = "/game/" + obj.gid;
           if (!!clients[gamePg] && !!clients[gamePg][obj.target]) {
-            Object.keys(clients[gamePg][target]).forEach(x => {
+            Object.keys(clients[gamePg][obj.target]).forEach(x => {
               send(
                 clients[gamePg][obj.target][x],
                 { code: "abort" }