Ready to translate old client code (start with index)
authorBenjamin Auder <benjamin.auder@somewhere>
Tue, 22 Jan 2019 18:40:27 +0000 (19:40 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Tue, 22 Jan 2019 18:40:27 +0000 (19:40 +0100)
client/client_OLD/javascripts/app.js [deleted file]
client/src/components/TestComp.vue
client/src/main.js
client/src/parameters.js [new file with mode: 0644]
client/src/parameters.js.dist [new file with mode: 0644]
client/src/socket_url.js.dist [deleted file]
client/src/utils/ajax.js

diff --git a/client/client_OLD/javascripts/app.js b/client/client_OLD/javascripts/app.js
deleted file mode 100644 (file)
index 28c086b..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-// TODO:
-//à l'arrivée sur le site : set peerID (un identifiant unique en tout cas...) si pas trouvé
-//
-//TODO: si une partie en cours dans storage, rediriger vers cette partie
-//(à condition que l'URL n'y corresponde pas déjà !)
-
-
-       created
-       script.
-               const variant = !{JSON.stringify(variant)};
-               // Just 'V' because this variable is often used:
-               const V = eval(variant.name + "Rules");
-
-
-mounted: function() {
-       feather.replace();
-}
index 5f29c3f..71793bf 100644 (file)
@@ -22,6 +22,10 @@ export default {
                //      .then((V) => {
                //              console.log(V);
                //      });
+               //console.log(this.$variants);
+
+               // TODO: components which need to access user.name and user.id should
+               // import a module with a function to get this from localStorage (or anonymous)
        },
        methods: {
                //...
index 0b9b402..e68447e 100644 (file)
@@ -1,6 +1,7 @@
 import Vue from "vue";
 import App from "./App.vue";
 import router from "./router";
+import params from "./parameters"; //for socket connection
 import { ajax } from "./utils/ajax";
 
 Vue.config.productionTip = false;
@@ -12,11 +13,24 @@ new Vue({
   },
        created: function() {
                //alert("test");
-               ajax("http://localhost:3000/variants", "GET", variantArray => {
-                       console.log("Got variants:");
-                       console.log(variantArray);
+               ajax("/variants", "GET", res => {
+                       Vue.prototype.$variants = res.variantArray;
                });
+               Vue.prototype.$conn = null; //TODO
+               const myid = localStorage["myid"] || util.getRandString();
+               // NOTE: in this version, we don't say on which page we are, yet
+               // ==> we'll say "enter/leave" page XY (in fact juste "enter", seemingly)
+               Vue.prototype.$conn = new WebSocket(params.socketUrl + "/?sid=" + myid);
+               //TODO: si une partie en cours dans storage, rediriger vers cette partie
+               //(à condition que l'URL n'y corresponde pas déjà !)
+               // TODO: à l'arrivée sur le site : set peerID (un identifiant unique
+               // en tout cas...) si pas trouvé dans localStorage "myid"
+               // (l'identifiant de l'utilisateur si connecté)
        },
+       // Later, for icons (if using feather):
+//     mounted: function() {
+//             feather.replace();
+//     },
 }).$mount("#app");
 
 // TODO: get rules, dynamic import
@@ -25,3 +39,15 @@ new Vue({
 //     const lang = selectLanguage(req, res);
 //     res.render("rules/" + req.params["vname"] + "/" + lang);
 // });
+//
+// board2, 3, 4 automatiquement, mais rules separement (les 3 pour une)
+// game : aussi systématique
+// problems: on-demand
+//
+// It works (to watch for route change), in a component:
+//watch: {
+//  $route: function(newRoute) {
+//    console.log(this.$route.params);
+//  },
+//},
+// See https://router.vuejs.org/guide/essentials/dynamic-matching.html#reacting-to-params-changes
diff --git a/client/src/parameters.js b/client/src/parameters.js
new file mode 100644 (file)
index 0000000..f44a7d9
--- /dev/null
@@ -0,0 +1,8 @@
+const Parameters =
+{
+       socketUrl: "ws://localhost:3000",
+
+       serverUrl: "http://localhost:3000",
+};
+
+export default Parameters;
diff --git a/client/src/parameters.js.dist b/client/src/parameters.js.dist
new file mode 100644 (file)
index 0000000..34b57e6
--- /dev/null
@@ -0,0 +1,10 @@
+const Parameters =
+{
+       // URL of your socket server
+       socketUrl: "ws://localhost:3000",
+
+       // URL of the server (leave blank for 1-server case)
+       serverUrl: "http://localhost:3000",
+};
+
+export default Parameters;
diff --git a/client/src/socket_url.js.dist b/client/src/socket_url.js.dist
deleted file mode 100644 (file)
index e3c0971..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-// URL of your socket server (rename into socket_url.js)
-export default socketUrl = "ws://localhost:3000";
index 065f382..46edca0 100644 (file)
@@ -1,3 +1,5 @@
+import params from "../parameters"; //for server URL
+
 // From JSON (encoded string values!) to "arg1=...&arg2=..."
 function toQueryString(data)
 {
@@ -42,7 +44,7 @@ export function ajax(url, method, data, success, error)
                // Append query params to URL
                url += "/?" + toQueryString(data);
        }
-       xhr.open(method, url, true);
+       xhr.open(method, params.serverUrl + url, true);
        xhr.setRequestHeader('X-Requested-With', "XMLHttpRequest");
        if (["POST","PUT"].includes(method))
        {