Files
DiceCloud/app/imports/client/ui/properties/treeNodeViews/DamageTreeNode.vue
ThaumRystra b90cc2e467 Removed damage effects from tree views
The totals of those effects are already accounted for in the displayed number
2024-10-29 16:06:46 +02:00

43 lines
1.1 KiB
Vue

<template lang="html">
<div>
<div
class="layout align-center justify-start"
style="height:40px;"
>
<v-icon
v-if="!hideIcon"
class="mr-2"
:color="model.color"
:class="selected && 'primary--text'"
>
{{ icon }}
</v-icon>
<div class="text-no-wrap text-truncate">
{{ model.amount && model.amount.value }}
{{ model.damageType }}<span v-if="model.damageType !== 'healing'">&nbsp;damage</span>
<span v-if="model.target === 'self'">to self</span>
</div>
</div>
</div>
</template>
<script lang="js">
import treeNodeViewMixin from '/imports/client/ui/properties/treeNodeViews/treeNodeViewMixin';
import { getPropertyIcon } from '/imports/constants/PROPERTIES';
import InlineEffect from '../components/effects/InlineEffect.vue';
export default {
components: {InlineEffect},
mixins: [treeNodeViewMixin],
computed: {
icon() {
if (this.model.damageType === 'healing') {
return 'mdi-hospital-box-outline'
} else {
return getPropertyIcon('damage');
}
},
},
}
</script>