Some graphical improvements (first attempt)
[vchess.git] / client / src / components / ChallengeList.vue
index 8500515..07aa326 100644 (file)
@@ -1,23 +1,43 @@
 <template lang="pug">
-table
-  tr
-    th Variant
-    th From
-    th To
-    th Cadence
-  tr(v-for="c in challenges" @click="$emit('click-challenge',c)")
-    td {{ c.vname }}
-    td {{ c.from.name }}
-    td(v-if="!!c.to[0]")
-      span(v-for="pname in c.to") {{ pname }}
-    td(v-else) {{ c.to.length - 1 }} player{{ c.to.length >= 3 ? 's' : '' }}
-    td {{ c.timeControl }}
+div
+  table
+    tr
+      th Variant
+      th From
+      th To
+      th Cadence
+    tr(v-for="c in sortedChallenges" @click="$emit('click-challenge',c)")
+      td {{ c.vname }}
+      td {{ c.from.name }}
+      td {{ c.to }}
+      td {{ c.timeControl }}
 </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>