First commit
This commit is contained in:
76
components/BoxSummonPortrait.vue
Normal file
76
components/BoxSummonPortrait.vue
Normal file
@@ -0,0 +1,76 @@
|
||||
<template>
|
||||
<span class="relative tooltip-parent">
|
||||
<img
|
||||
class="w-full"
|
||||
:class="party_mode !== $MODE.ReadOnly ? 'cursor-pointer' : ''"
|
||||
style="min-height: 83px; max-height: 83px;"
|
||||
:draggable="! objectIsEmpty"
|
||||
:src="getImage"
|
||||
@click="tryToEmit('click-portrait')"
|
||||
@dragstart="tryToEmit('drag-portrait', $event)"
|
||||
@dragover.prevent
|
||||
@drop.prevent="tryToEmit('drop-portrait', $event)"
|
||||
>
|
||||
|
||||
<stars-line
|
||||
v-if="! objectIsEmpty"
|
||||
class="absolute bottom-0 right-0 w-4/5 bg-black/50"
|
||||
:base="object.starsbase"
|
||||
:extra="object.starsmax"
|
||||
:current="object.stars"
|
||||
@update:current="$emit('stars-changed', $event)"
|
||||
:max="5"
|
||||
:transcendance="true"
|
||||
:readOnly="party_mode === $MODE.ReadOnly"
|
||||
></stars-line>
|
||||
|
||||
<span class="tooltip" v-if="object.current_data !== undefined">
|
||||
<span class="font-mono text-xs" v-for="(data, index) in object.data[object.current_data]" :key="index">
|
||||
<span class="capitalize">{{ data.aura_type }}</span> {{ data.stat }} {{ data.percent }}% <span v-if="data.slot">({{ data.slot }})</span><br>
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { objectIsEmpty } from "@/js/mixins"
|
||||
import { mapState } from 'vuex'
|
||||
|
||||
import StarsLine from '@/components/StarsLine.vue'
|
||||
|
||||
export default {
|
||||
components: {
|
||||
StarsLine,
|
||||
},
|
||||
mixins: [
|
||||
objectIsEmpty
|
||||
],
|
||||
props: {
|
||||
object: {
|
||||
type: Object,
|
||||
required: true
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
tryToEmit(name, event) {
|
||||
if (this.party_mode !== this.$MODE.ReadOnly) {
|
||||
this.$emit(name, event);
|
||||
}
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
...mapState({
|
||||
party_mode: state => state.party_builder.party_mode
|
||||
}),
|
||||
getImage() {
|
||||
if (this.objectIsEmpty) {
|
||||
if (this.party_mode === this.$MODE.Edit) {
|
||||
return '/img/empty_summon.jpg';
|
||||
}
|
||||
return '/img/empty_summon_ro.jpg';
|
||||
}
|
||||
return "/img/unit/" + this.object.summonid + "000.jpg";
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user