Fix games list display + challenges display
[vchess.git] / client / src / components / ChallengeList.vue
index bee328f..0b7581b 100644 (file)
@@ -5,7 +5,7 @@ table
     th From
     th To
     th Cadence
-  tr(v-for="c in challenges" @click="$emit('click-challenge',c)")
+  tr(v-for="c in sortedChallenges" @click="$emit('click-challenge',c)")
     td {{ c.vname }}
     td {{ c.from.name }}
     td {{ c.to }}
@@ -13,9 +13,30 @@ table
 </template>
 
 <script>
+import { store } from "@/store";
+
 export default {
   name: "my-challenge-list",
        props: ["challenges"],
+  data: function() {
+    return {
+      st: store.state,
+    };
+  },
+  computed: {
+    sortedChallenges: function() {
+      // Show in order: challenges I sent, challenges I received, other challenges
+      let augmentedChalls = this.challenges.map(c => {
+        let priority = 0;
+        if (c.to == this.st.user.name)
+          priority = 1;
+        else if (c.from.id == this.st.user.id || c.from.sid == this.st.user.sid)
+          priority = 2;
+        return Object.assign({}, c, {priority: priority});
+      });
+      return augmentedChalls.sort((c1,c2) => { return c2.priority - c1.priority; });
+    },
+  },
 };
 </script>