schon/storefront/app/pages/profile/promocodes.vue
2026-02-27 21:59:51 +03:00

150 lines
No EOL
3.3 KiB
Vue

<template>
<div class="promocodes">
<h2 class="promocodes__title">{{ t('profile.promocodes.title') }}</h2>
<div class="promocodes__list" v-if="promocodes?.length">
<div
class="promocodes__item"
v-for="promocode in promocodes"
:key="promocode.node.uuid"
>
<div class="promocodes__item-left">
<icon
name="material-symbols:content-copy"
size="20"
class="promocodes__item-button"
@click="copyCode(promocode.node.code)"
/>
<p>{{ promocode.node.code }}</p>
</div>
<div class="promocodes__item-right">
<p class="promocodes__item-text">{{ promocode.node.discount }} {{ promocode.node.discountType === 'percent' ? '%' : '$' }}</p>
<div class="promocodes__item-expire">
{{ t('profile.promocodes.until') }}
{{
useDate(promocode.node.endTime, locale, {
year: 'numeric',
month: 'long',
day: '2-digit',
hour: '2-digit',
minute: '2-digit',
second: '2-digit'
})
}}
</div>
</div>
</div>
</div>
<p class="promocodes__empty" v-else>{{ t('profile.promocodes.empty') }}</p>
</div>
</template>
<script setup lang="ts">
import {usePageTitle} from '@composables/utils';
import {useNotification} from '@composables/notification';
import {useDate} from '@composables/date';
const {t, locale} = useI18n();
const promocodeStore = usePromocodeStore();
const promocodes = computed(() => promocodeStore.promocodes);
const copyCode = (code: string) => {
navigator.clipboard.writeText(code)
.then(() => {
useNotification({
message: t('popup.success.promocodeCopy'),
type: 'success'
});
})
.catch(err => {
console.error(err);
});
};
const { setPageTitle } = usePageTitle();
setPageTitle(t('breadcrumbs.promocodes'));
</script>
<style lang="scss" scoped>
.promocodes {
background-color: $white;
width: 100%;
border: 1px solid #e5e7eb;
border-radius: 8px;
height: fit-content;
padding: 24px 32px;
&__title {
color: #111827;
font-family: "Playfair Display", sans-serif;
font-size: 24px;
font-weight: 700;
}
&__list {
margin-top: 50px;
display: flex;
flex-direction: column;
gap: 20px;
}
&__item {
border-radius: $default_border_radius;
border: 1px solid #e5e7eb;
display: flex;
align-items: stretch;
justify-content: space-between;
&-left {
display: flex;
align-items: center;
gap: 20px;
padding: 7px 15px;
& p {
color: #4b5563;
font-size: 16px;
font-weight: 400;
}
}
&-button {
cursor: pointer;
transition: 0.2s;
color: #4b5563;
@include hover {
color: #2f353f;
}
}
&-right {
display: flex;
align-items: center;
gap: 20px;
}
&-text {
color: #4b5563;
font-size: 16px;
font-weight: 700;
}
&-expire {
height: 100%;
background-color: #e5e7eb;
padding-inline: 15px;
display: grid;
place-items: center;
color: #4b5563;
}
}
&__empty {
margin-top: 50px;
font-weight: 600;
}
}
</style>