Update npm packages
[vchess.git] / client / src / views / Rules.vue
index d02901a..2871f3f 100644 (file)
@@ -83,12 +83,12 @@ export default {
           "raw-loader!@/translations/rules/" +
           this.gameInfo.vname + "/" +
           this.st.lang + ".pug"
-        )
+          ).default
+        .replace('export default "', "")
+        .replace(/";$/, "")
         // Next two lines fix a weird issue after last update (2019-11)
         .replace(/\\n/g, " ")
         .replace(/\\"/g, '"')
-        .replace('module.exports = "', "")
-        .replace(/"$/, "")
         .replace(/(fen:)([^:]*):/g, replaceByDiag)
       );
     }
@@ -99,6 +99,10 @@ export default {
       else if (this.gameInProgress) this.display = "computer";
     },
     re_setVariant: async function(vname) {
+      const key = "rr_" + vname;
+      if (!localStorage.getItem(key))
+        // Mark rules as "read"
+        localStorage.setItem(key, '1');
       await import("@/variants/" + vname + ".js")
       .then((vModule) => {
         this.V = window.V = vModule[vname + "Rules"];
@@ -128,7 +132,7 @@ export default {
         this.$refs["compgame"].launchGame();
       }
     },
-    // user wants to stop the game:
+    // The user wants to stop the game:
     stopGame: function() {
       this.$refs["compgame"].gameOver("?", "Undetermined result");
     },