summaryrefslogtreecommitdiff
path: root/src/TopTalentsBox.vue
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2018-05-21 13:09:05 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2018-12-13 16:59:33 +0100
commitaea0fa999fd09951835b2d74c53137624f46929e (patch)
tree3d806b7b5c5dd8b95fd07d6f3402d2231cf981d4 /src/TopTalentsBox.vue
parent73e2c234f2f52357b21fd9fe9b956eeabb8ddc62 (diff)
downloadbrokentalents-aea0fa999fd09951835b2d74c53137624f46929e.tar.gz
brokentalents-aea0fa999fd09951835b2d74c53137624f46929e.zip
major redesign
Diffstat (limited to 'src/TopTalentsBox.vue')
-rw-r--r--src/TopTalentsBox.vue61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/TopTalentsBox.vue b/src/TopTalentsBox.vue
new file mode 100644
index 0000000..e0e7cfb
--- /dev/null
+++ b/src/TopTalentsBox.vue
@@ -0,0 +1,61 @@
+<template>
+ <div class="box">
+ <b-table :data="top10Talents"
+ :default-sort="['Count', 'desc']"
+ :default-sort-directon="'desc'"
+ :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">
+ <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="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 HeroImage from './HeroImage.vue';
+import * as maps from './maps/maps';
+
+export default Vue.component('hero-search-box', {
+ props: [ 'reportService' ],
+ data: function() {
+ return {
+ getHero: maps.getHero,
+ getTalentName: maps.getTalentName,
+ };
+ },
+ computed: {
+ selectedMode: {
+ get: function() {
+ return this.$route.query.mode;
+ },
+ },
+ top10Talents: function() {
+ return this.reportService.getTop10Picks(this.selectedMode);
+ },
+ totalPicks: function() {
+ return this.reportService.getTotalPicks(this.selectedMode);
+ },
+ },
+ components: {
+ TalentImage,
+ HeroImage,
+ },
+});
+</script>