82 lines
1.9 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div :class="b({ disabled })">
<div :class="b('content')">
<div :class="b('head')">
<h2 v-html="faceAmount" />
<p v-text="conditionMessage" />
</div>
<div :class="b('body')">
<h2 v-text="data.name" />
<p v-text="validPeriod" />
<checkbox
v-if="chosen"
:value="true"
:class="b('corner')"
/>
</div>
</div>
<p
v-if="disabled && data.reason"
v-text="data.reason"
:class="b('reason')"
/>
</div>
</template>
<script>
import create from '../utils/create';
import Checkbox from '../checkbox';
function padZero(num) {
return (num < 10 ? '0' : '') + num;
}
function getDate(timeStamp) {
const date = new Date(timeStamp * 1000);
return `${date.getFullYear()}.${padZero(date.getMonth() + 1)}.${padZero(date.getDate())}`;
}
function formatDiscount(discount) {
return (discount / 10).toFixed(discount % 10 === 0 ? 0 : 1);
}
function formatAmount(amount) {
return (amount / 100).toFixed(amount % 100 === 0 ? 0 : amount % 10 === 0 ? 1 : 2);
}
export default create({
name: 'coupon-item',
props: {
data: Object,
chosen: Boolean,
disabled: Boolean,
currency: String
},
components: {
Checkbox
},
computed: {
validPeriod() {
return `${this.$t('valid')}${getDate(this.data.startAt)} - ${getDate(this.data.endAt)}`;
},
faceAmount() {
return this.data.denominations !== 0
? `<span>${this.currency}</span> ${formatAmount(this.data.denominations)}`
: this.data.discount !== 0
? this.$t('discount', formatDiscount(this.data.discount))
: '';
},
conditionMessage() {
let condition = this.data.originCondition;
condition = condition % 100 === 0 ? Math.round(condition / 100) : (condition / 100).toFixed(2);
return this.data.originCondition === 0 ? this.$t('unlimited') : this.$t('condition', condition);
}
}
});
</script>