mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-19 15:48:04 +01:00
78 lines
1.4 KiB
Vue
78 lines
1.4 KiB
Vue
<template>
|
|
<div>
|
|
<div
|
|
:id="itemId"
|
|
class="item-wrapper"
|
|
@click="click()"
|
|
>
|
|
<div
|
|
class="item pet-slot"
|
|
:class="{'item-empty': !isOwned()}"
|
|
>
|
|
<slot
|
|
name="itemBadge"
|
|
:item="item"
|
|
></slot>
|
|
<span
|
|
class="item-content"
|
|
:class="itemClass()"
|
|
></span>
|
|
</div>
|
|
</div>
|
|
<b-popover
|
|
v-if="showPopover"
|
|
:target="itemId"
|
|
triggers="hover"
|
|
:placement="popoverPosition"
|
|
>
|
|
<slot
|
|
name="popoverContent"
|
|
:item="item"
|
|
></slot>
|
|
</b-popover>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { v4 as uuid } from 'uuid';
|
|
import { mapState } from '@/libs/store';
|
|
import { isOwned } from '../../../libs/createAnimal';
|
|
|
|
export default {
|
|
props: {
|
|
item: {
|
|
type: Object,
|
|
},
|
|
popoverPosition: {
|
|
type: String,
|
|
default: 'bottom',
|
|
},
|
|
showPopover: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
},
|
|
data () {
|
|
return Object.freeze({
|
|
itemId: uuid(),
|
|
});
|
|
},
|
|
computed: {
|
|
...mapState({
|
|
userItems: 'user.data.items',
|
|
}),
|
|
},
|
|
methods: {
|
|
click () {
|
|
this.$emit('click', {});
|
|
},
|
|
isOwned () {
|
|
return isOwned('mount', this.item, this.userItems);
|
|
},
|
|
itemClass () {
|
|
return this.isOwned() ? `Mount_Icon_${this.item.key}` : 'PixelPaw GreyedOut';
|
|
},
|
|
},
|
|
};
|
|
</script>
|