2017-06-23 11:24:10 +00:00
|
|
|
<template lang="pug">
|
|
|
|
|
b-popover(
|
|
|
|
|
:triggers="[showPopover?'hover':'']",
|
|
|
|
|
:placement="popoverPosition",
|
|
|
|
|
)
|
|
|
|
|
span(slot="content")
|
|
|
|
|
slot(name="popoverContent", :item="item")
|
|
|
|
|
|
2017-07-10 08:07:23 +00:00
|
|
|
.item-wrapper(@click="click()")
|
2017-06-23 11:24:10 +00:00
|
|
|
.item(
|
2017-07-10 08:07:23 +00:00
|
|
|
:class="{'item-empty': emptyItem, 'highlight': highlightBorder}",
|
2017-06-23 11:24:10 +00:00
|
|
|
)
|
|
|
|
|
slot(name="itemBadge", :item="item")
|
|
|
|
|
span.item-content(:class="itemContentClass")
|
2017-07-01 15:46:24 +00:00
|
|
|
span.pet-progress-background(v-if="item.isAllowedToFeed() && progress > 0")
|
2017-06-23 11:24:10 +00:00
|
|
|
div.pet-progress-bar(v-bind:style="{width: 100 * progress/50 + '%' }")
|
|
|
|
|
span.item-label(v-if="label") {{ label }}
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
.pet-progress-background {
|
|
|
|
|
width: 62px;
|
|
|
|
|
height: 4px;
|
|
|
|
|
background-color: #e1e0e3;
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 4px;
|
|
|
|
|
left: calc((100% - 62px) / 2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pet-progress-bar {
|
|
|
|
|
height: 4px;
|
|
|
|
|
background-color: #24cc8f;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import bPopover from 'bootstrap-vue/lib/components/popover';
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
bPopover,
|
|
|
|
|
},
|
|
|
|
|
props: {
|
|
|
|
|
item: {
|
|
|
|
|
type: Object,
|
|
|
|
|
},
|
|
|
|
|
itemContentClass: {
|
|
|
|
|
type: String,
|
|
|
|
|
},
|
|
|
|
|
label: {
|
|
|
|
|
type: String,
|
|
|
|
|
},
|
|
|
|
|
progress: {
|
|
|
|
|
type: Number,
|
|
|
|
|
default: -1,
|
|
|
|
|
},
|
|
|
|
|
emptyItem: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
2017-07-10 08:07:23 +00:00
|
|
|
highlightBorder: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
2017-06-23 11:24:10 +00:00
|
|
|
popoverPosition: {
|
|
|
|
|
type: String,
|
|
|
|
|
default: 'bottom',
|
|
|
|
|
},
|
|
|
|
|
showPopover: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
2017-07-10 08:07:23 +00:00
|
|
|
click () {
|
|
|
|
|
this.$emit('click', {});
|
2017-06-23 11:24:10 +00:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|