blob: b7cb78c8a1642d0c7f4843d0b8042571735e33bb (
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
|
<template>
<div v-if="rarity !== 'unknown' && rarity"
class="talent-image"
:style="`background-image: url('dist/assets/talent-icons-small/${hero}/${hero}_${rarity}.png'); width: ${size}px; height: ${size}px`">
</div>
</template>
<style scoped>
.talent-image {
background-size: 230%;
border-radius: 50%;
background-position: center center;
}
</style>
<script>
import Vue from 'vue';
import * as maps from './maps/maps';
export default Vue.component('talent-image', {
props: [ 'entry', 'size' ],
data: function() {
return {
hero: maps.getHero(this.entry.Actor),
rarity: maps.getTalentRarity(this.entry.Talent),
};
},
watch: {
entry: function(newEntry, oldEntry) {
// This is needed so component will recalculate whenever there is a change on entry
this.hero = maps.getHero(this.entry.Actor);
this.rarity = maps.getTalentRarity(this.entry.Talent);
}
}
});
</script>
|