blob: 5d711a20588097c7ebd413d62a898de6ff678071 (
plain)
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
|
<template>
<div>
<div class="tile is-ancestor">
<div class="tile is-parent">
<talent-box class="tile is-child is-warning notification"
title="Overpowered!"
:entry="topWin">
{{ Math.round(100 * topWin.Winner) }}% Win Rate
</talent-box>
</div>
<div class="tile is-parent">
<talent-box class="tile is-child is-success notification"
title="Trending"
:entry="topPick">
{{ (100 * 6 * topPick.Count / totalPicks).toFixed(2) }}% Pick Rate
</talent-box>
</div>
</div>
<h2 class="title is-2">Blitz Hero Statistics</h2>
<report-table :report="report" :totalPicks="totalPicks"></report-table>
</div>
</template>
<script>
import Vue from 'vue';
import ReportTable from './ReportTable.vue';
import TalentBox from './TalentBox.vue';
export default Vue.component('blitz-tab', {
props: [ 'reportService' ],
data: function() {
return {
report: this.reportService.getReport('blitz_pvp_ranked'),
topWin: this.reportService.getTopWin('blitz_pvp_ranked'),
topPick: this.reportService.getTopPick('blitz_pvp_ranked'),
totalPicks: this.reportService.getTotalPicks('blitz_pvp_ranked'),
};
},
computed: {
},
components: {
ReportTable,
TalentBox,
},
});
</script>
|