5c582631b07d4f622a72b2a82852fc1fc620ce76
[vchess.git] / client / src / components / ChallengeList.vue
1 <template lang="pug">
2 div
3 table(v-if="challenges.length > 0")
4 thead
5 tr
6 th {{ st.tr["Variant"] }}
7 th {{ st.tr["With"] }}
8 th {{ st.tr["Cadence"] }}
9 th {{ st.tr["Random?"] }}
10 tbody
11 tr(
12 v-for="c in sortedChallenges"
13 :class="{toyou:c.priority==1,fromyou:c.priority==2}"
14 @click="$emit('click-challenge',c)"
15 )
16 td {{ c.vname }}
17 td {{ withWho(c) }}
18 td(:class="getCadenceClass(c)") {{ c.cadence }}
19 td(:class="getRandomnessClass(c)")
20 p(v-else)
21 | {{ st.tr["No challenges found :( Click on 'New game'!"] }}
22 </template>
23
24 <script>
25 import { store } from "@/store";
26 export default {
27 name: "my-challenge-list",
28 props: ["challenges"],
29 data: function() {
30 return {
31 st: store.state
32 };
33 },
34 computed: {
35 sortedChallenges: function() {
36 // Show in order:
37 // challenges I sent, challenges I received, other challenges
38 let minAdded = Number.MAX_SAFE_INTEGER;
39 let maxAdded = 0;
40 let augmentedChalls = this.challenges.map(c => {
41 let priority = 0;
42 if (!!c.to && c.to == this.st.user.name) priority = 1;
43 else if (
44 c.from.sid == this.st.user.sid ||
45 (c.from.id > 0 && c.from.id == this.st.user.id)
46 ) {
47 priority = 2;
48 }
49 if (c.added < minAdded) minAdded = c.added;
50 if (c.added > maxAdded) maxAdded = c.added;
51 return Object.assign({}, c, { priority: priority });
52 });
53 const deltaAdded = maxAdded - minAdded;
54 return augmentedChalls.sort((c1, c2) => {
55 return c2.priority - c1.priority + (c2.added - c1.added) / deltaAdded;
56 });
57 }
58 },
59 methods: {
60 withWho: function(c) {
61 if (c.from.sid == this.st.user.sid || c.from.id == this.st.user.id)
62 return c.to || this.st.tr["Any player"];
63 return c.from.name || "@nonymous";
64 },
65 getRandomnessClass: function(c) {
66 return {
67 ["random-" + c.randomness]: true
68 };
69 },
70 getCadenceClass: function(c) {
71 return {
72 "simultaneous": c.cadence.indexOf("/") >= 0
73 };
74 }
75 }
76 };
77 </script>
78
79 <style lang="sass" scoped>
80 p
81 text-align: center
82 font-weight: bold
83
84 // NOTE: the style applied to <tr> element doesn't work
85 tr.fromyou > td
86 font-style: italic
87 tr.toyou > td
88 background-color: #fcd785
89
90 td.simultaneous
91 background-color: purple
92
93 tr > td:last-child
94 &.random-0
95 background-color: #FF5733
96 &.random-1
97 background-color: #2B63B4
98 &.random-2
99 background-color: #33B42B
100 </style>