Small fix + attempt to improve socket messages reliability...
[vchess.git] / client / src / views / Auth.vue
index a750b3e..b28ac1e 100644 (file)
@@ -2,48 +2,39 @@
 main
   .row
     .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
-      p(:class="{warn:!!this.errmsg}")
-        | {{ errmsg || st.tr["Authentication successful!"] }}
+      div(v-if="authOk")
+        p {{ st.tr["Authentication successful!"] }}
 </template>
 
 <script>
 import { store } from "@/store";
 import { ajax } from "@/utils/ajax";
 export default {
-  name: 'my-auth',
+  name: "my-auth",
   data: function() {
     return {
       st: store.state,
-      errmsg: "",
+      authOk: false
     };
   },
   created: function() {
-               ajax(
-                       "/authenticate",
-                       "GET",
-                       {token: this.$route.params["token"]},
-                       (res) => {
-                               if (!res.errmsg) //if not already logged in
-                               {
-                                       this.st.user.id = res.id;
-                                       this.st.user.name = res.name;
-                                       this.st.user.email = res.email;
-                                       this.st.user.notify = res.notify;
-                                       localStorage["myname"] = res.name;
-                                       localStorage["myid"] = res.id;
-                               }
-                               else
-          this.errmsg = res.errmsg;
-                       }
+    ajax(
+      "/authenticate",
+      "GET",
+      {
+        credentials: true,
+        data: { token: this.$route.params["token"] },
+        success: (res) => {
+          this.authOk = true;
+          this.st.user.id = res.id;
+          this.st.user.name = res.name;
+          this.st.user.email = res.email;
+          this.st.user.notify = res.notify;
+          localStorage["myname"] = res.name;
+          localStorage["myid"] = res.id;
+        }
+      }
     );
-  },
+  }
 };
 </script>
-
-<style lang="sass" scoped>
-.warn
-  padding: 3px
-  color: red
-  background-color: lightgrey
-  font-weight: bold
-</style>