210 lines
6.7 KiB
Vue
210 lines
6.7 KiB
Vue
<script setup lang="ts">
|
||
import { useQuery } from '@vue/apollo-composable';
|
||
import {
|
||
ManagerBonusBalancesDocument,
|
||
ManagerReferralLinksDocument,
|
||
ManagerWithdrawalRequestsDocument,
|
||
type ManagerBonusBalancesQuery,
|
||
type ManagerReferralLinksQuery,
|
||
type ManagerWithdrawalRequestsQuery,
|
||
} from '~/composables/graphql/generated';
|
||
|
||
definePageMeta({
|
||
middleware: ['manager-only'],
|
||
});
|
||
|
||
type BalanceItem = ManagerBonusBalancesQuery['managerBonusBalances'][number];
|
||
type ReferralLinkItem = ManagerReferralLinksQuery['managerReferralLinks'][number];
|
||
type WithdrawalItem = ManagerWithdrawalRequestsQuery['managerWithdrawalRequests'][number];
|
||
|
||
const route = useRoute();
|
||
const router = useRouter();
|
||
const search = ref('');
|
||
const balancesQuery = useQuery(ManagerBonusBalancesDocument);
|
||
const referralLinksQuery = useQuery(ManagerReferralLinksDocument);
|
||
const withdrawalsQuery = useQuery(ManagerWithdrawalRequestsDocument, {
|
||
status: 'PENDING',
|
||
});
|
||
|
||
const activeTab = computed<'balances' | 'withdrawals'>(() => (
|
||
route.query.tab === 'withdrawals' ? 'withdrawals' : 'balances'
|
||
));
|
||
|
||
function setTab(tab: 'balances' | 'withdrawals') {
|
||
void router.replace({
|
||
query: {
|
||
...route.query,
|
||
tab,
|
||
},
|
||
});
|
||
}
|
||
|
||
const balances = computed<BalanceItem[]>(() => balancesQuery.result.value?.managerBonusBalances ?? []);
|
||
const referralLinks = computed<ReferralLinkItem[]>(() => referralLinksQuery.result.value?.managerReferralLinks ?? []);
|
||
const withdrawals = computed<WithdrawalItem[]>(() => withdrawalsQuery.result.value?.managerWithdrawalRequests ?? []);
|
||
|
||
const referralLinksByReferrer = computed(() => {
|
||
const grouped = new Map<string, ReferralLinkItem[]>();
|
||
|
||
for (const link of referralLinks.value) {
|
||
const existing = grouped.get(link.referrerId) ?? [];
|
||
existing.push(link);
|
||
grouped.set(link.referrerId, existing);
|
||
}
|
||
|
||
return grouped;
|
||
});
|
||
|
||
const filteredBalances = computed(() => {
|
||
const query = search.value.trim().toLowerCase();
|
||
|
||
return balances.value.filter((item) => {
|
||
const links = referralLinksByReferrer.value.get(item.userId);
|
||
|
||
if (!links?.length) {
|
||
return false;
|
||
}
|
||
|
||
if (!query) {
|
||
return true;
|
||
}
|
||
|
||
return [
|
||
item.fullName,
|
||
item.email,
|
||
item.companyName || '',
|
||
String(item.balance),
|
||
...links.flatMap((link) => [
|
||
link.refereeName,
|
||
link.refereeEmail,
|
||
link.refereeCompanyName || '',
|
||
String(link.bonusPercent),
|
||
]),
|
||
]
|
||
.join(' ')
|
||
.toLowerCase()
|
||
.includes(query);
|
||
});
|
||
});
|
||
|
||
const filteredWithdrawals = computed(() => {
|
||
const query = search.value.trim().toLowerCase();
|
||
|
||
return withdrawals.value.filter((item) => {
|
||
if (!query) {
|
||
return true;
|
||
}
|
||
|
||
return [
|
||
item.requesterFullName,
|
||
item.requesterEmail,
|
||
item.companyName || '',
|
||
String(item.amount),
|
||
item.status,
|
||
item.reviewComment || '',
|
||
]
|
||
.join(' ')
|
||
.toLowerCase()
|
||
.includes(query);
|
||
});
|
||
});
|
||
|
||
function formatAmount(value: number) {
|
||
return new Intl.NumberFormat('ru-RU', {
|
||
minimumFractionDigits: 0,
|
||
maximumFractionDigits: 2,
|
||
}).format(value);
|
||
}
|
||
</script>
|
||
|
||
<template>
|
||
<section class="space-y-6">
|
||
<UiSectionSearchHero
|
||
v-model="search"
|
||
title="Бонусы"
|
||
:search-placeholder="activeTab === 'balances' ? 'Клиент, связанный клиент, email или процент' : 'Пользователь, сумма или статус'"
|
||
>
|
||
<template #controls>
|
||
<NuxtLink to="/bonus-system/referrals/new" class="btn btn-primary border-0">
|
||
Добавить связь
|
||
</NuxtLink>
|
||
</template>
|
||
|
||
<template #tabs>
|
||
<div class="tabs tabs-boxed w-fit bg-white">
|
||
<button
|
||
class="tab"
|
||
:class="{ 'tab-active': activeTab === 'balances' }"
|
||
@click="setTab('balances')"
|
||
>
|
||
Балансы
|
||
</button>
|
||
<button
|
||
class="tab"
|
||
:class="{ 'tab-active': activeTab === 'withdrawals' }"
|
||
@click="setTab('withdrawals')"
|
||
>
|
||
Заявки на выплату
|
||
</button>
|
||
</div>
|
||
</template>
|
||
</UiSectionSearchHero>
|
||
|
||
<template v-if="activeTab === 'balances'">
|
||
<div v-if="balancesQuery.loading.value || referralLinksQuery.loading.value" class="manager-empty-state">
|
||
Загружаем балансы...
|
||
</div>
|
||
<div v-else-if="filteredBalances.length === 0" class="manager-empty-state">
|
||
Бонусных связок пока нет.
|
||
</div>
|
||
<div v-else class="grid gap-4 lg:grid-cols-2 xl:grid-cols-3">
|
||
<BonusAccountCard
|
||
v-for="item in filteredBalances"
|
||
:key="item.userId"
|
||
:full-name="item.fullName"
|
||
:email="item.email"
|
||
:company-name="item.companyName"
|
||
:balance="item.balance"
|
||
:stats="[
|
||
{ label: 'Транзакций', value: String(item.transactionsCount) },
|
||
{ label: 'Активных связок', value: String(referralLinksByReferrer.get(item.userId)?.length ?? 0) },
|
||
{ label: 'На выводе', value: formatAmount(item.pendingWithdrawalAmount) },
|
||
]"
|
||
:source-links="referralLinksByReferrer.get(item.userId) ?? []"
|
||
:detail-to="`/bonus-system/${item.userId}`"
|
||
detail-label="Открыть"
|
||
/>
|
||
</div>
|
||
</template>
|
||
|
||
<template v-else>
|
||
<div v-if="withdrawalsQuery.loading.value" class="manager-empty-state">
|
||
Загружаем заявки...
|
||
</div>
|
||
<div v-else-if="filteredWithdrawals.length === 0" class="manager-empty-state">
|
||
Активных заявок на выплату сейчас нет.
|
||
</div>
|
||
<div v-else class="space-y-4">
|
||
<article
|
||
v-for="withdrawal in filteredWithdrawals"
|
||
:key="withdrawal.id"
|
||
class="surface-card rounded-3xl px-5 py-5"
|
||
>
|
||
<div class="flex flex-col gap-3 md:flex-row md:items-start md:justify-between">
|
||
<div class="space-y-1">
|
||
<p class="text-sm font-semibold text-[#123824]">{{ withdrawal.requesterFullName }}</p>
|
||
<p class="text-sm text-[#355947]">{{ withdrawal.requesterEmail }}</p>
|
||
<p v-if="withdrawal.companyName" class="text-sm text-[#355947]">{{ withdrawal.companyName }}</p>
|
||
<p class="text-sm text-[#355947]">Сумма: {{ withdrawal.amount }}</p>
|
||
<p class="text-xs text-[#5c7b69]">{{ new Date(withdrawal.createdAt).toLocaleString() }}</p>
|
||
</div>
|
||
<NuxtLink :to="`/bonus-system/withdrawals/${withdrawal.id}`" class="btn btn-accent btn-sm border-0">
|
||
Проверить выплату
|
||
</NuxtLink>
|
||
</div>
|
||
</article>
|
||
</div>
|
||
</template>
|
||
</section>
|
||
</template>
|