X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FAnalyse.vue;fp=client%2Fsrc%2Fviews%2FAnalyse.vue;h=eb36422d0f7541c4d900da6a38124572e1226ab9;hb=70c9745d34b705eb8a4dc72b6e4655739d31347c;hp=175cc15714b6e3aa88994f2b950fca156ac2863d;hpb=b0d55a053a319e1972c52a3c851dff787f52e015;p=vchess.git diff --git a/client/src/views/Analyse.vue b/client/src/views/Analyse.vue index 175cc157..eb36422d 100644 --- a/client/src/views/Analyse.vue +++ b/client/src/views/Analyse.vue @@ -29,6 +29,7 @@ import BaseGame from "@/components/BaseGame.vue"; import { processModalClick } from "@/utils/modalClick"; import { replaceByDiag } from "@/utils/printDiagram"; import { store } from "@/store"; +import afterRawLoad from "@/utils/afterRawLoad"; export default { name: "my-analyse", // TODO: game import ==> require some adjustments, like @@ -100,17 +101,12 @@ export default { }) .catch((err) => { this.alertAndQuit("Mispelled variant name", true); }); this.rulesContent = - require( - "raw-loader!@/translations/rules/" + - this.gameRef.vname + "/" + - this.st.lang + ".pug" + afterRawLoad( + require( + "raw-loader!@/translations/rules/" + + this.gameRef.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(/(fen:)([^:]*):/g, replaceByDiag); + ).replace(/(fen:)([^:]*):/g, replaceByDiag); }, loadGame: function(orientation) { this.game.vname = this.gameRef.vname;