X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FUpsertUser.vue;h=2b72ac27583651e6ad4c5e0667f19df5f6f59416;hb=98f485791e915563996de4f37430b285ffc773ae;hp=7b92cf9a304f4c14d34ea6d217478e860a13c63c;hpb=1aeed627be63a298d3a093797c3728e3de30b464;p=vchess.git diff --git a/client/src/components/UpsertUser.vue b/client/src/components/UpsertUser.vue index 7b92cf9a..2b72ac27 100644 --- a/client/src/components/UpsertUser.vue +++ b/client/src/components/UpsertUser.vue @@ -1,4 +1,3 @@ -// Logic to login, or create / update a user (and also logout) @@ -42,7 +41,7 @@ export default { return { user: store.state.user, nameOrEmail: "", //for login - stage: (store.state.user.id > 0 ? "Update" : "Login"), //TODO? + logStage: "Login", //or Register infoMsg: "", enterTime: Number.MAX_SAFE_INTEGER, //for a basic anti-bot strategy }; @@ -62,6 +61,9 @@ export default { displayInfo: function() { return (this.infoMsg.length > 0 ? "block" : "none"); }, + stage: function() { + return this.user.id > 0 ? "Update" : this.logStage; + }, }, methods: { trySetEnterTime: function(event) { @@ -70,7 +72,7 @@ export default { }, toggleStage: function() { // Loop login <--> register (update is for logged-in users) - this.stage = (this.stage == "Login" ? "Register" : "Login"); + this.logStage = (this.logStage == "Login" ? "Register" : "Login"); }, ajaxUrl: function() { switch (this.stage) @@ -126,20 +128,9 @@ export default { res => { this.infoMsg = this.infoMessage(); if (this.stage != "Update") - { this.nameOrEmail = ""; - this.user["email"] = ""; - // Update global object - this.user["name"] = res.name; - this.user["id"] = res.id; - // Store our identifiers in local storage (by little anticipation...) - localStorage["myid"] = res.id; - localStorage["myname"] = res.name; - } setTimeout(() => { this.infoMsg = ""; - if (this.stage == "Register") - this.stage = "Login"; document.getElementById("modalUser").checked = false; }, 2000); }, @@ -149,6 +140,20 @@ export default { } ); }, + doLogout: function() { + ajax( + "/logout", + "GET", + () => { + this.user.id = 0; + this.user.name = ""; + this.user.email = ""; + this.user.notify = false; + delete localStorage["myid"]; + delete localStorage["myname"]; + } + ); + }, }, };