habitica-self-host/website/client/src/components/shops/shopItem.vue
2020-04-10 15:15:23 -05:00

323 lines
6.4 KiB
Vue

<template>
<div>
<div
:id="itemId"
class="item-wrapper"
@click="click()"
>
<div
class="item"
:class="getItemClasses()"
>
<slot
name="itemBadge"
:item="item"
:emptyItem="emptyItem"
></slot>
<span
v-if="item.event && item.owned == null && showEventBadge"
class="badge badge-pill badge-item badge-clock"
>
<span
class="svg-icon inline clock"
v-html="icons.clock"
></span>
</span>
<div class="shop-content">
<span
v-if="item.locked"
class="svg-icon inline lock"
v-html="icons.lock"
></span>
<span
v-if="item.isSuggested"
class="suggestedDot"
></span>
<div class="image">
<div
v-once
:class="item.class"
></div>
<slot
name="itemImage"
:item="item"
></slot>
</div>
<div class="price">
<span
v-once
class="svg-icon inline icon-16"
v-html="icons[currencyClass]"
></span>
<span
v-once
class="price-label"
:class="currencyClass"
>{{ getPrice() }}</span>
</div>
</div>
</div>
</div>
<b-popover
v-if="showPopover"
:target="itemId"
triggers="hover"
:placement="popoverPosition"
>
<slot
name="popoverContent"
:item="item"
>
<equipmentAttributesPopover
v-if="item.purchaseType === 'gear'"
:item="item"
/>
<div
v-else-if="item.purchaseType === 'quests'"
class="questPopover"
>
<h4 class="popover-content-title">
{{ item.text }}
</h4>
<questInfo :quest="item" />
</div>
<div v-else>
<h4
v-once
class="popover-content-title"
>
{{ item.text }}
</h4>
<div
v-if="showNotes && item.key !== 'armoire'"
v-once
class="popover-content-text"
>
{{ item.notes }}
</div>
<div
v-if="showNotes && item.key === 'armoire'"
class="popover-content-text"
>
{{ item.notes }}
</div>
</div>
<div
v-if="item.event"
:class="item.purchaseType === 'gear' ? 'mt-4' : 'mt-2'"
>
{{ limitedString }}
</div>
</slot>
</b-popover>
</div>
</template>
<style lang="scss" scoped>
@import '~@/assets/scss/colors.scss';
.item-wrapper {
z-index: 10;
}
.item {
min-height: 106px;
}
.item:not(.locked) {
cursor: pointer;
}
.item.item-empty {
border-radius: 2px;
background-color: #f9f9f9;
box-shadow: 0 2px 2px 0 rgba($black, 0.16), 0 1px 4px 0 rgba($black, 0.12);
}
.shop-content {
display: flex;
flex-direction: column;
align-items: center;
& > * {
margin-top : 12px;
}
}
.image {
height: 50px;
}
.price {
.svg-icon {
padding-top: 2px;
margin-right: 4px;
}
margin-top: 1.25em;
}
.price-label {
height: 16px;
font-family: Roboto;
font-size: 16px;
font-weight: bold;
line-height: 1.33;
&.gems {
color: $green-10;
}
&.gold {
color: $yellow-10
}
&.hourglasses {
color: $blue-10;
}
}
span.svg-icon.inline.lock {
height: 12px;
width: 10px;
position: absolute;
right: 8px;
top: 8px;
margin-top: 0;
}
span.badge.badge-pill.badge-item.badge-clock {
height: 24px;
width: 24px;
background-color: $purple-300;
position: absolute;
left: -8px;
top: -12px;
margin-top: 0;
padding: 4px;
}
span.svg-icon.inline.clock {
height: 16px;
width: 16px;
}
.suggestedDot {
width: 6px;
height: 6px;
background-color: $suggested-item-color;
border-radius: 4px;
position: absolute;
right: 8px;
top: 8px;
margin-top: 0;
}
.icon-48 {
width: 48px;
height: 48px;
}
</style>
<script>
import uuid from 'uuid';
import moment from 'moment';
import svgGem from '@/assets/svg/gem.svg';
import svgGold from '@/assets/svg/gold.svg';
import svgHourglasses from '@/assets/svg/hourglass.svg';
import svgLock from '@/assets/svg/lock.svg';
import svgClock from '@/assets/svg/clock.svg';
import EquipmentAttributesPopover from '@/components/inventory/equipment/attributesPopover';
import QuestInfo from './quests/questInfo.vue';
import seasonalShopConfig from '@/../../common/script/libs/shops-seasonal.config';
export default {
components: {
EquipmentAttributesPopover,
QuestInfo,
},
props: {
item: {
type: Object,
},
price: {
type: Number,
default: -1,
},
emptyItem: {
type: Boolean,
default: false,
},
highlightBorder: {
type: Boolean,
default: false,
},
popoverPosition: {
type: String,
default: 'bottom',
},
showPopover: {
type: Boolean,
default: true,
},
showEventBadge: {
type: Boolean,
default: true,
},
},
data () {
return Object.freeze({
itemId: uuid.v4(),
icons: {
gems: svgGem,
gold: svgGold,
lock: svgLock,
hourglasses: svgHourglasses,
clock: svgClock,
},
});
},
computed: {
showNotes () {
if (['armoire', 'potion'].indexOf(this.item.path) > -1) return true;
return false;
},
currencyClass () {
if (this.item.currency && this.icons[this.item.currency]) {
return this.item.currency;
}
return 'gold';
},
limitedString () {
return this.item.owned === false ? ''
: this.$t('limitedOffer', { date: moment(seasonalShopConfig.dateRange.end).format('LL') });
},
},
methods: {
click () {
this.$emit('click', {});
},
getPrice () {
if (this.price === -1) {
return this.item.value;
}
return this.price;
},
getItemClasses () {
return {
'item-empty': this.emptyItem,
'highlight-border': this.highlightBorder,
suggested: this.item.isSuggested,
locked: this.item.locked,
};
},
},
};
</script>