Fix games list display + challenges display
[vchess.git] / client / src / views / MyGames.vue
index 5f183da..6079254 100644 (file)
@@ -1,45 +1,63 @@
-<template>
-  <div class="about">
-    <h1>This is an about page</h1>
-  </div>
+<template lang="pug">
+main
+  .row
+    .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
+      .button-group
+        button(@click="display='live'") Live games
+        button(@click="display='corr'") Correspondance games
+      GameList(v-show="display=='live'" :games="filterGames('live')"
+        @show-game="showGame")
+      GameList(v-show="display=='corr'" :games="filterGames('corr')"
+        @show-game="showGame")
 </template>
-// "My" games: tabs my archived local games, my correspondance games
-// + my imported games (of any type).
-// TODO: later, also add possibility to upload a game (parse PGN).
-Vue.component("my-tab-games", {
-       props: ["settings"],
-       data: function() {
-               return {
-                       display: "",
-                       imported: [],
-                       local: [],
-                       corr: []
-               };
-       },
-       template: `
-               <div>
-                       <div class="button-group">
-                               <button @click="display='local'">Local games</button>
-                               <button @click="display='corr'">Correspondance games</button>
-                               <button @click="display='imported'">Imported games</button>
-                       </div>
-                       <my-game-list v-show="display=='local'" :games="local">
-                       </my-game-list>
-                       <my-game-list v-show="display=='corr'" :games="corr">
-                       </my-game-list>
-                       <my-game-list v-show="display=='imported'" :games="imported">
-                       </my-game-list>
-                       <button @click="update">Refresh</button>
-               </div>
-       `,
-       created: function() {
-               // TODO: fetch corr games, local and corr
-               // if any corr game where it's my turn, set display = "corr",
-               // else set display = "local" (if any) or imported (if any and no local)
-       },
-       methods: {
-               update: function() {
-                       // TODO: scan local + imported games, if any new then add it
-               },
-       },
-});
+
+<script>
+import { store } from "@/store";
+import { GameStorage } from "@/utils/gameStorage";
+import { ajax } from "@/utils/ajax";
+import GameList from "@/components/GameList.vue";
+
+export default {
+  name: "my-games",
+  components: {
+    GameList,
+  },
+  data: function() {
+    return {
+      st: store.state,
+                       display: "live",
+      games: [],
+    };
+  },
+  created: function() {
+    GameStorage.getAll((localGames) => {
+      localGames.forEach((g) => g.type = this.classifyObject(g));
+      Array.prototype.push.apply(this.games, localGames);
+    });
+    if (this.st.user.id > 0)
+    {
+      ajax("/games", "GET", {uid: this.st.user.id}, (res) => {
+        res.games.forEach((g) => g.type = this.classifyObject(g));
+        //Array.prototype.push.apply(this.games, res.games); //TODO: Vue 3
+        this.games = this.games.concat(res.games);
+      });
+    }
+  },
+  methods: {
+    // TODO: classifyObject and filterGames are redundant (see Hall.vue)
+    classifyObject: function(o) {
+      return (o.timeControl.indexOf('d') === -1 ? "live" : "corr");
+    },
+    filterGames: function(type) {
+      return this.games.filter(g => g.type == type);
+    },
+    showGame: function(g) {
+      this.$router.push("/game/" + g.id);
+    },
+  },
+};
+</script>
+
+<style scoped lang="sass">
+/* TODO */
+</style>