Convert all remaining tabs by 2spaces
[vchess.git] / client / src / components / ChallengeList.vue
CommitLineData
85e5b5c1 1<template lang="pug">
7aa548e7
BA
2div
3 table
4f887105
BA
4 thead
5 tr
6 th Variant
7 th From
8 th To
9 th Cadence
10 tbody
11 tr(v-for="c in sortedChallenges" @click="$emit('click-challenge',c)")
12 td(data-label="Variant") {{ c.vname }}
13 td(data-label="From") {{ c.from.name }}
14 td(data-label="To") {{ c.to }}
15 td(data-label="Cadence") {{ c.timeControl }}
85e5b5c1
BA
16</template>
17
18<script>
0b0dc040
BA
19import { store } from "@/store";
20
85e5b5c1
BA
21export default {
22 name: "my-challenge-list",
dac39588 23 props: ["challenges"],
0b0dc040
BA
24 data: function() {
25 return {
26 st: store.state,
27 };
28 },
29 computed: {
30 sortedChallenges: function() {
31 // Show in order: challenges I sent, challenges I received, other challenges
32 let augmentedChalls = this.challenges.map(c => {
33 let priority = 0;
34 if (c.to == this.st.user.name)
35 priority = 1;
36 else if (c.from.id == this.st.user.id || c.from.sid == this.st.user.sid)
37 priority = 2;
38 return Object.assign({}, c, {priority: priority});
39 });
40 return augmentedChalls.sort((c1,c2) => { return c2.priority - c1.priority; });
41 },
42 },
85e5b5c1 43};
85e5b5c1 44</script>