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
60
61
62
63
64
|
<template>
<div class="box">
<b-table :data="top10Talents"
:mobile-cards="false">
<template slot-scope="props">
<b-table-column field="Actor" label="Hero">
<hero-image :actor="props.row.Actor" class="is-square"></hero-image>
</b-table-column>
<b-table-column field="Talent" label="Talent" :visible="hasTalents">
<div style="display: flex; align-items: center; justify-content: space-between;">
<span>{{ getTalentName(props.row.Talent) }}</span>
<talent-image :entry="props.row" :size="48"></talent-image>
</div>
</b-table-column>
<b-table-column field="Count" label="Pick Rate" :visible="!hasTalents" sortable numeric>
<span>{{ Math.round(100 * playersPerMatch * props.row.Count / totalPicks) }}%</span>
</b-table-column>
<b-table-column field="TotalWinner" label="Win Rate" sortable numeric>
<span>{{ Math.round(100 * props.row.TotalWinner) }}%</span>
</b-table-column>
</template>
</b-table>
</div>
</template>
<script>
import Vue from 'vue';
import TalentImage from './TalentImage.vue';
import HeroImage from './HeroImage.vue';
import RouterParamMixin from './RouterParamMixin';
import ReportService from './ReportService';
import * as maps from './maps/maps';
export default Vue.component('top-talents-box', {
mixins: [ RouterParamMixin ],
data() {
return {
getHero: maps.getHero,
getTalentName: maps.getTalentName,
};
},
computed: {
top10Talents() {
return ReportService.getTop10Picks(this.selectedMode);
},
hasTalents() {
return maps.hasTalents(this.selectedMode);
},
totalPicks() {
return ReportService.getTotalPicks(this.selectedMode);
},
playersPerMatch() {
return maps.playersPerMatch(this.selectedMode);
},
},
components: {
TalentImage,
HeroImage,
},
});
</script>
|