3b280d942ce39e82e3306596b87cb492ed83e879
1 import { ajax
} from "./utils/ajax";
2 import { getRandString
} from "./utils/alea";
3 import params
from "./parameters"; //for socket connection
5 // Global store: see https://medium.com/fullstackio/managing-state-in-vue-js-23a0352b1c87
16 socketCloseListener: null,
18 ajax("/variants", "GET", res
=> { this.state
.variants
= res
.variantArray
; });
19 let mysid
= localStorage
["mysid"];
22 mysid
= getRandString();
23 localStorage
["mysid"] = mysid
; //done only once (unless user clear browser data)
26 id: localStorage
["myid"] || 0,
27 name: localStorage
["myname"] || "", //"" for "anonymous"
28 email: "", //unknown yet
29 notify: false, //email notifications
32 if (this.state
.user
.id
> 0)
34 ajax("/whoami", "GET", res
=> {
35 this.state
.user
.email
= res
.email
;
36 this.state
.user
.notify
= res
.notify
;
39 this.state
.conn
= new WebSocket(
40 params
.socketUrl
+ "/?sid=" + mysid
+ "&page=" + page
);
41 // Settings initialized with values from localStorage
42 this.state
.settings
= {
43 bcolor: localStorage
["bcolor"] || "lichess",
44 sound: parseInt(localStorage
["sound"]) || 2,
45 hints: parseInt(localStorage
["hints"]) || 1,
46 coords: !!eval(localStorage
["coords"]),
47 highlight: !!eval(localStorage
["highlight"]),
48 sqSize: parseInt(localStorage
["sqSize"]),
50 this.socketCloseListener
= () => {
51 // Next line may fail at first, but should retry and eventually success (TODO?)
52 this.state
.conn
= new WebSocket(params
.socketUrl
+ "/?sid=" + mysid
);
54 this.state
.conn
.onclose
= this.socketCloseListener
;
55 const supportedLangs
= ["en","es","fr"];
56 this.state
.lang
= localStorage
["lang"] ||
57 supportedLangs
.includes(navigator
.language
)
60 this.setTranslations();
62 setTranslations: async
function() {
63 // Import translations from "./translations/$lang.js"
64 const tModule
= await
import("@/translations/" + this.state
.lang
+ ".js");
65 this.state
.tr
= tModule
.translations
;
68 this.state
.lang
= lang
;
69 this.setTranslations();