3 table(v-if="challenges.length > 0")
6 th {{ st.tr["Variant"] }}
8 th {{ st.tr["Cadence"] }}
9 th {{ st.tr["Random?"] }}
12 v-for="c in sortedChallenges"
13 :class="{toyou:c.priority==1,fromyou:c.priority==2}"
14 @click="$emit('click-challenge',c)"
19 td(:class="getRandomnessClass(c)")
21 | {{ st.tr["No challenges found :( Click on 'New game'!"] }}
25 import { store } from "@/store";
27 name: "my-challenge-list",
28 props: ["challenges"],
35 sortedChallenges: function() {
37 // challenges I sent, challenges I received, other challenges
38 let minAdded = Number.MAX_SAFE_INTEGER;
40 let augmentedChalls = this.challenges.map(c => {
42 if (!!c.to && c.to == this.st.user.name) priority = 1;
44 c.from.sid == this.st.user.sid ||
45 (c.from.id > 0 && c.from.id == this.st.user.id)
49 if (c.added < minAdded) minAdded = c.added;
50 if (c.added > maxAdded) maxAdded = c.added;
51 return Object.assign({}, c, { priority: priority });
53 const deltaAdded = maxAdded - minAdded;
54 return augmentedChalls.sort((c1, c2) => {
55 return c2.priority - c1.priority + (c2.added - c1.added) / deltaAdded;
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";
65 getRandomnessClass: function(c) {
67 ["random-" + c.randomness]: true
74 <style lang="sass" scoped>
79 // NOTE: the style applied to <tr> element doesn't work
83 background-color: #fcd785
87 background-color: #FF5733
89 background-color: #2B63B4
91 background-color: #33B42B