diff options
Diffstat (limited to 'src/TalentImage.vue')
| -rw-r--r-- | src/TalentImage.vue | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/src/TalentImage.vue b/src/TalentImage.vue index ccf3147..b52887e 100644 --- a/src/TalentImage.vue +++ b/src/TalentImage.vue @@ -1,20 +1,37 @@ <template> - <figure class="image is-64x64"> - <img :src="'dist/assets/talent-icons-small/' + hero + '/' + hero + '_' + rarity + '.png'" :alt="hero + ' ' + rarity"> - </figure> + <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-color: red; */ + background-size: 150px; + 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' ], + 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> |
