summaryrefslogtreecommitdiff
path: root/src/TopTalentsBox.vue
blob: e0e7cfbf065d504f705e9a67cbfb1dedddc65b7f (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
49
50
51
52
53
54
55
56
57
58
59
60
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>