1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
<template>
<div class="box">
<b-field label="Hero">
<b-input v-model="hero"></b-input>
</b-field>
<b-table :data="heroReport"
:default-sort="['Count', 'desc']"
:default-sort-directon="'desc'"
:mobile-cards="false">
<template slot-scope="props">
<b-table-column field="Actor" label="Hero" sortable>
{{ getHero(props.row.Actor) }}
</b-table-column>
<b-table-column field="Talent" label="Talent">
<talent-image :entry="props.row"></talent-image>
</b-table-column>
<b-table-column field="Winner" label="Win Rate" sortable numeric>
<template v-if="!!props.row.Winner">
{{ Math.round(100 * props.row.Winner) }}%
</template>
</b-table-column>
</template>
</b-table>
</div>
</template>
<script>
import Vue from 'vue';
import TalentImage from './TalentImage.vue';
import * as maps from './maps/maps';
export default Vue.component('hero-search-box', {
props: [ 'reportService' ],
data: function() {
return {
hero: maps.getHero(this.reportService.getTopPick('casual_aral').Actor),
totalPicks: this.reportService.getTotalPicks('casual_aral'),
getHero: maps.getHero,
};
},
computed: {
heroReport: function() {
return this.reportService.getReport('casual_aral')
.filter((entry) => maps.getHero(entry.Actor).includes(this.hero));
},
totalHeroPicks: function() {
return this.heroReport
.map((entry) => entry.Count)
.reduce((agg, cur) => agg + cur, 0);
},
},
components: {
TalentImage,
},
});
</script>
|