X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fstore.js;h=373aa288e85fc51af391bc086fd74f05e09ec08e;hb=6808d7a16ec1e761c6a2dffec2281c96953e4d89;hp=1cfb7c5a2ba3934efae21113a47c2a98ae49a07a;hpb=80ee5d5a70f17f78900a8a3ae2d803ed1f2f14c9;p=vchess.git diff --git a/client/src/store.js b/client/src/store.js index 1cfb7c5a..373aa288 100644 --- a/client/src/store.js +++ b/client/src/store.js @@ -1,65 +1,72 @@ import { ajax } from "./utils/ajax"; import { getRandString } from "./utils/alea"; -import params from "./parameters"; //for socket connection // Global store: see https://medium.com/fullstackio/managing-state-in-vue-js-23a0352b1c87 -export const store = -{ +export const store = { state: { variants: [], tr: {}, user: {}, - conn: null, settings: {}, - lang: "", + lang: "" }, socketCloseListener: null, - initialize(page) { - ajax("/variants", "GET", res => { this.state.variants = res.variantArray; }); - let mysid = localStorage["mysid"]; - if (!mysid) - { + initialize() { + ajax("/variants", "GET", res => { + this.state.variants = res.variantArray; + }); + let mysid = localStorage.getItem("mysid"); + if (!mysid) { mysid = getRandString(); - localStorage["mysid"] = mysid; //done only once (unless user clear browser data) + localStorage.setItem("mysid", mysid); //done only once (unless user clear browser data) } + // Quick user setup using local storage: this.state.user = { - id: localStorage["myid"] || 0, - name: localStorage["myname"] || "", //"" for "anonymous" + id: localStorage.getItem("myid") || 0, + name: localStorage.getItem("myname") || "", //"" for "anonymous" email: "", //unknown yet notify: false, //email notifications - sid: mysid, + sid: mysid }; - if (this.state.user.id > 0) - { - ajax("/whoami", "GET", res => { - this.state.user.email = res.email; - this.state.user.notify = res.notify; - }); - } - this.state.conn = new WebSocket(params.socketUrl + "/?sid=" + mysid + - "&page=" + encodeURIComponent(page)); + // Slow verification through the server: + // NOTE: still superficial identity usurpation possible, but difficult. + ajax("/whoami", "GET", res => { + this.state.user.id = res.id; + const storedId = localStorage.getItem("myid"); + if (res.id > 0 && !storedId) + //user cleared localStorage + localStorage.setItem("myid", res.id); + else if (res.id == 0 && !!storedId) + //user cleared cookie + localStorage.removeItem("myid"); + this.state.user.name = res.name; + const storedName = localStorage.getItem("myname"); + if (!!res.name && !storedName) + //user cleared localStorage + localStorage.setItem("myname", res.name); + else if (!res.name && !!storedName) + //user cleared cookie + localStorage.removeItem("myname"); + this.state.user.email = res.email; + this.state.user.notify = res.notify; + }); // Settings initialized with values from localStorage this.state.settings = { - bcolor: localStorage["bcolor"] || "lichess", - sound: parseInt(localStorage["sound"]) || 2, - hints: parseInt(localStorage["hints"]) || 1, - coords: !!eval(localStorage["coords"]), - highlight: !!eval(localStorage["highlight"]), - sqSize: parseInt(localStorage["sqSize"]), - }; - this.socketCloseListener = () => { - // Next line may fail at first, but should retry and eventually success (TODO?) - this.state.conn = new WebSocket(params.socketUrl + "/?sid=" + mysid + - "&page=" + encodeURIComponent(page)); + bcolor: localStorage.getItem("bcolor") || "lichess", + sound: parseInt(localStorage.getItem("sound")) || 1, + hints: localStorage.getItem("hints") == "true", + highlight: localStorage.getItem("highlight") == "true" }; - this.state.conn.onclose = this.socketCloseListener; - const supportedLangs = ["en","es","fr"]; - this.state.lang = localStorage["lang"] || - supportedLangs.includes(navigator.language) - ? navigator.language - : "en"; + const supportedLangs = ["en", "es", "fr"]; + this.state.lang = + localStorage["lang"] || + (supportedLangs.includes(navigator.language) ? navigator.language : "en"); this.setTranslations(); }, + updateSetting: function(propName, value) { + this.state.settings[propName] = value; + localStorage.setItem(propName, value); + }, setTranslations: async function() { // Import translations from "./translations/$lang.js" const tModule = await import("@/translations/" + this.state.lang + ".js"); @@ -68,5 +75,5 @@ export const store = setLanguage(lang) { this.state.lang = lang; this.setTranslations(); - }, + } };