mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-30 02:23:47 +00:00
- Replace all hardcoded Russian strings with t() calls across 30+ files - Add ~500 new translation keys to all 4 locales (ru, en, zh, fa) - Convert module-level config objects to labelKey pattern - Remove Russian fallbacks from t() calls (fallbackLng handles it) - Replace DeepLinkRedirect custom i18n with standard t() calls - Fix subscription.servers key collision (string vs object)
1481 lines
60 KiB
TypeScript
1481 lines
60 KiB
TypeScript
import { useState } from 'react';
|
|
import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { Link } from 'react-router-dom';
|
|
import i18n from '../i18n';
|
|
import {
|
|
promocodesApi,
|
|
PromoCode,
|
|
PromoCodeDetail,
|
|
PromoCodeType,
|
|
PromoCodeCreateRequest,
|
|
PromoCodeUpdateRequest,
|
|
PromoGroup,
|
|
PromoGroupCreateRequest,
|
|
PromoGroupUpdateRequest,
|
|
} from '../api/promocodes';
|
|
|
|
// Icons
|
|
const BackIcon = () => (
|
|
<svg
|
|
className="h-5 w-5 text-dark-400"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
strokeWidth={2}
|
|
>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M15.75 19.5L8.25 12l7.5-7.5" />
|
|
</svg>
|
|
);
|
|
|
|
const PlusIcon = () => (
|
|
<svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M12 4.5v15m7.5-7.5h-15" />
|
|
</svg>
|
|
);
|
|
|
|
const EditIcon = () => (
|
|
<svg className="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
d="M16.862 4.487l1.687-1.688a1.875 1.875 0 112.652 2.652L10.582 16.07a4.5 4.5 0 01-1.897 1.13L6 18l.8-2.685a4.5 4.5 0 011.13-1.897l8.932-8.931zm0 0L19.5 7.125M18 14v4.75A2.25 2.25 0 0115.75 21H5.25A2.25 2.25 0 013 18.75V8.25A2.25 2.25 0 015.25 6H10"
|
|
/>
|
|
</svg>
|
|
);
|
|
|
|
const TrashIcon = () => (
|
|
<svg className="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
d="M14.74 9l-.346 9m-4.788 0L9.26 9m9.968-3.21c.342.052.682.107 1.022.166m-1.022-.165L18.16 19.673a2.25 2.25 0 01-2.244 2.077H8.084a2.25 2.25 0 01-2.244-2.077L4.772 5.79m14.456 0a48.108 48.108 0 00-3.478-.397m-12 .562c.34-.059.68-.114 1.022-.165m0 0a48.11 48.11 0 013.478-.397m7.5 0v-.916c0-1.18-.91-2.164-2.09-2.201a51.964 51.964 0 00-3.32 0c-1.18.037-2.09 1.022-2.09 2.201v.916m7.5 0a48.667 48.667 0 00-7.5 0"
|
|
/>
|
|
</svg>
|
|
);
|
|
|
|
const CheckIcon = () => (
|
|
<svg className="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M4.5 12.75l6 6 9-13.5" />
|
|
</svg>
|
|
);
|
|
|
|
const XIcon = () => (
|
|
<svg className="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M6 18L18 6M6 6l12 12" />
|
|
</svg>
|
|
);
|
|
|
|
const CopyIcon = () => (
|
|
<svg className="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
d="M15.666 3.888A2.25 2.25 0 0013.5 2.25h-3c-1.03 0-1.9.693-2.166 1.638m7.332 0c.055.194.084.4.084.612v0a.75.75 0 01-.75.75H9a.75.75 0 01-.75-.75v0c0-.212.03-.418.084-.612m7.332 0c.646.049 1.288.11 1.927.184 1.1.128 1.907 1.077 1.907 2.185V19.5a2.25 2.25 0 01-2.25 2.25H6.75A2.25 2.25 0 014.5 19.5V6.257c0-1.108.806-2.057 1.907-2.185a48.208 48.208 0 011.927-.184"
|
|
/>
|
|
</svg>
|
|
);
|
|
|
|
const UsersIcon = () => (
|
|
<svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
d="M15 19.128a9.38 9.38 0 002.625.372 9.337 9.337 0 004.121-.952 4.125 4.125 0 00-7.533-2.493M15 19.128v-.003c0-1.113-.285-2.16-.786-3.07M15 19.128v.106A12.318 12.318 0 018.624 21c-2.331 0-4.512-.645-6.374-1.766l-.001-.109a6.375 6.375 0 0111.964-3.07M12 6.375a3.375 3.375 0 11-6.75 0 3.375 3.375 0 016.75 0zm8.25 2.25a2.625 2.625 0 11-5.25 0 2.625 2.625 0 015.25 0z"
|
|
/>
|
|
</svg>
|
|
);
|
|
|
|
const ChartIcon = () => (
|
|
<svg className="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
d="M3 13.125C3 12.504 3.504 12 4.125 12h2.25c.621 0 1.125.504 1.125 1.125v6.75C7.5 20.496 6.996 21 6.375 21h-2.25A1.125 1.125 0 013 19.875v-6.75zM9.75 8.625c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125v11.25c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 01-1.125-1.125V8.625zM16.5 4.125c0-.621.504-1.125 1.125-1.125h2.25C20.496 3 21 3.504 21 4.125v15.75c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 01-1.125-1.125V4.125z"
|
|
/>
|
|
</svg>
|
|
);
|
|
|
|
const ClockIcon = () => (
|
|
<svg className="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
d="M12 6v6h4.5m4.5 0a9 9 0 11-18 0 9 9 0 0118 0z"
|
|
/>
|
|
</svg>
|
|
);
|
|
|
|
const UserIcon = () => (
|
|
<svg className="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
d="M15.75 6a3.75 3.75 0 11-7.5 0 3.75 3.75 0 017.5 0zM4.501 20.118a7.5 7.5 0 0114.998 0A17.933 17.933 0 0112 21.75c-2.676 0-5.216-.584-7.499-1.632z"
|
|
/>
|
|
</svg>
|
|
);
|
|
|
|
// Helper functions
|
|
const getTypeLabel = (type: PromoCodeType): string => {
|
|
const labels: Record<PromoCodeType, string> = {
|
|
balance: i18n.t('admin.promocodes.type.balance'),
|
|
subscription_days: i18n.t('admin.promocodes.type.subscriptionDays'),
|
|
trial_subscription: i18n.t('admin.promocodes.type.trialSubscription'),
|
|
promo_group: i18n.t('admin.promocodes.type.promoGroup'),
|
|
discount: i18n.t('admin.promocodes.type.discount'),
|
|
};
|
|
return labels[type] || type;
|
|
};
|
|
|
|
const getTypeColor = (type: PromoCodeType): string => {
|
|
const colors: Record<PromoCodeType, string> = {
|
|
balance: 'bg-emerald-500/20 text-emerald-400',
|
|
subscription_days: 'bg-blue-500/20 text-blue-400',
|
|
trial_subscription: 'bg-purple-500/20 text-purple-400',
|
|
promo_group: 'bg-amber-500/20 text-amber-400',
|
|
discount: 'bg-pink-500/20 text-pink-400',
|
|
};
|
|
return colors[type] || 'bg-dark-600 text-dark-300';
|
|
};
|
|
|
|
const formatDate = (date: string | null): string => {
|
|
if (!date) return '-';
|
|
const localeMap: Record<string, string> = { ru: 'ru-RU', en: 'en-US', zh: 'zh-CN', fa: 'fa-IR' };
|
|
const locale = localeMap[i18n.language] || 'ru-RU';
|
|
return new Date(date).toLocaleDateString(locale, {
|
|
day: '2-digit',
|
|
month: '2-digit',
|
|
year: 'numeric',
|
|
});
|
|
};
|
|
|
|
const formatDateTime = (date: string | null): string => {
|
|
if (!date) return '-';
|
|
const localeMap: Record<string, string> = { ru: 'ru-RU', en: 'en-US', zh: 'zh-CN', fa: 'fa-IR' };
|
|
const locale = localeMap[i18n.language] || 'ru-RU';
|
|
return new Date(date).toLocaleString(locale, {
|
|
day: '2-digit',
|
|
month: '2-digit',
|
|
year: 'numeric',
|
|
hour: '2-digit',
|
|
minute: '2-digit',
|
|
});
|
|
};
|
|
|
|
// Promocode Modal
|
|
interface PromocodeModalProps {
|
|
promocode?: PromoCodeDetail | null;
|
|
promoGroups: PromoGroup[];
|
|
onSave: (data: PromoCodeCreateRequest | PromoCodeUpdateRequest) => void;
|
|
onClose: () => void;
|
|
isLoading?: boolean;
|
|
}
|
|
|
|
function PromocodeModal({
|
|
promocode,
|
|
promoGroups,
|
|
onSave,
|
|
onClose,
|
|
isLoading,
|
|
}: PromocodeModalProps) {
|
|
const { t } = useTranslation();
|
|
const isEdit = !!promocode;
|
|
|
|
const [code, setCode] = useState(promocode?.code || '');
|
|
const [type, setType] = useState<PromoCodeType>(promocode?.type || 'balance');
|
|
const [balanceBonusRubles, setBalanceBonusRubles] = useState(
|
|
promocode?.balance_bonus_rubles || 0,
|
|
);
|
|
const [subscriptionDays, setSubscriptionDays] = useState(promocode?.subscription_days || 0);
|
|
const [maxUses, setMaxUses] = useState(promocode?.max_uses || 1);
|
|
const [isActive, setIsActive] = useState(promocode?.is_active ?? true);
|
|
const [firstPurchaseOnly, setFirstPurchaseOnly] = useState(
|
|
promocode?.first_purchase_only || false,
|
|
);
|
|
const [validUntil, setValidUntil] = useState(
|
|
promocode?.valid_until ? promocode.valid_until.split('T')[0] : '',
|
|
);
|
|
const [promoGroupId, setPromoGroupId] = useState<number | null>(
|
|
promocode?.promo_group_id || null,
|
|
);
|
|
|
|
const handleSubmit = () => {
|
|
// Для discount: balance_bonus_kopeks = процент (целое число), subscription_days = часы
|
|
// Для balance: balance_bonus_kopeks = рубли * 100
|
|
const data: PromoCodeCreateRequest | PromoCodeUpdateRequest = {
|
|
code: code.trim().toUpperCase(),
|
|
type,
|
|
balance_bonus_kopeks:
|
|
type === 'discount'
|
|
? Math.round(balanceBonusRubles) // процент как целое число
|
|
: Math.round(balanceBonusRubles * 100), // рубли в копейки
|
|
subscription_days: subscriptionDays,
|
|
max_uses: maxUses,
|
|
is_active: isActive,
|
|
first_purchase_only: firstPurchaseOnly,
|
|
valid_until: validUntil ? new Date(validUntil).toISOString() : null,
|
|
promo_group_id: type === 'promo_group' ? promoGroupId : null,
|
|
};
|
|
onSave(data);
|
|
};
|
|
|
|
const isValid = () => {
|
|
if (!code.trim()) return false;
|
|
if (type === 'balance' && balanceBonusRubles <= 0) return false;
|
|
if ((type === 'subscription_days' || type === 'trial_subscription') && subscriptionDays <= 0)
|
|
return false;
|
|
if (type === 'promo_group' && !promoGroupId) return false;
|
|
if (
|
|
type === 'discount' &&
|
|
(balanceBonusRubles <= 0 || balanceBonusRubles > 100 || subscriptionDays <= 0)
|
|
)
|
|
return false;
|
|
return true;
|
|
};
|
|
|
|
return (
|
|
<div className="fixed inset-0 z-50 flex items-center justify-center p-4">
|
|
<div className="flex max-h-[90vh] w-full max-w-lg flex-col overflow-hidden rounded-xl bg-dark-800">
|
|
{/* Header */}
|
|
<div className="flex items-center justify-between border-b border-dark-700 p-4">
|
|
<h2 className="text-lg font-semibold text-dark-100">
|
|
{isEdit
|
|
? t('admin.promocodes.modal.editPromocode')
|
|
: t('admin.promocodes.modal.newPromocode')}
|
|
</h2>
|
|
<button onClick={onClose} className="rounded-lg p-1 transition-colors hover:bg-dark-700">
|
|
<XIcon />
|
|
</button>
|
|
</div>
|
|
|
|
{/* Content */}
|
|
<div className="flex-1 space-y-4 overflow-y-auto p-4">
|
|
{/* Code */}
|
|
<div>
|
|
<label className="mb-1 block text-sm text-dark-300">
|
|
{t('admin.promocodes.form.code')}
|
|
</label>
|
|
<input
|
|
type="text"
|
|
value={code}
|
|
onChange={(e) => setCode(e.target.value.toUpperCase())}
|
|
className="w-full rounded-lg border border-dark-600 bg-dark-700 px-3 py-2 uppercase text-dark-100 focus:border-accent-500 focus:outline-none"
|
|
placeholder="SUMMER2025"
|
|
/>
|
|
</div>
|
|
|
|
{/* Type */}
|
|
<div>
|
|
<label className="mb-1 block text-sm text-dark-300">
|
|
{t('admin.promocodes.form.type')}
|
|
</label>
|
|
<select
|
|
value={type}
|
|
onChange={(e) => setType(e.target.value as PromoCodeType)}
|
|
className="w-full rounded-lg border border-dark-600 bg-dark-700 px-3 py-2 text-dark-100 focus:border-accent-500 focus:outline-none"
|
|
>
|
|
<option value="balance">{t('admin.promocodes.form.typeBalance')}</option>
|
|
<option value="subscription_days">
|
|
{t('admin.promocodes.form.typeSubscriptionDays')}
|
|
</option>
|
|
<option value="trial_subscription">
|
|
{t('admin.promocodes.form.typeTrialSubscription')}
|
|
</option>
|
|
<option value="promo_group">{t('admin.promocodes.form.typePromoGroup')}</option>
|
|
<option value="discount">{t('admin.promocodes.form.typeDiscount')}</option>
|
|
</select>
|
|
</div>
|
|
|
|
{/* Type-specific fields */}
|
|
{type === 'balance' && (
|
|
<div>
|
|
<label className="mb-1 block text-sm text-dark-300">
|
|
{t('admin.promocodes.form.bonusAmount')}
|
|
</label>
|
|
<div className="flex items-center gap-2">
|
|
<input
|
|
type="number"
|
|
value={balanceBonusRubles}
|
|
onChange={(e) =>
|
|
setBalanceBonusRubles(Math.max(0, parseFloat(e.target.value) || 0))
|
|
}
|
|
className="w-32 rounded-lg border border-dark-600 bg-dark-700 px-3 py-2 text-dark-100 focus:border-accent-500 focus:outline-none"
|
|
min={0}
|
|
step={1}
|
|
/>
|
|
<span className="text-dark-400">{t('admin.promocodes.form.rub')}</span>
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{(type === 'subscription_days' || type === 'trial_subscription') && (
|
|
<div>
|
|
<label className="mb-1 block text-sm text-dark-300">
|
|
{t('admin.promocodes.form.daysCount')}
|
|
</label>
|
|
<div className="flex items-center gap-2">
|
|
<input
|
|
type="number"
|
|
value={subscriptionDays}
|
|
onChange={(e) => setSubscriptionDays(Math.max(0, parseInt(e.target.value) || 0))}
|
|
className="w-32 rounded-lg border border-dark-600 bg-dark-700 px-3 py-2 text-dark-100 focus:border-accent-500 focus:outline-none"
|
|
min={1}
|
|
/>
|
|
<span className="text-dark-400">{t('admin.promocodes.form.days')}</span>
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{type === 'promo_group' && (
|
|
<div>
|
|
<label className="mb-1 block text-sm text-dark-300">
|
|
{t('admin.promocodes.form.discountGroup')}
|
|
</label>
|
|
<select
|
|
value={promoGroupId || ''}
|
|
onChange={(e) => setPromoGroupId(e.target.value ? parseInt(e.target.value) : null)}
|
|
className="w-full rounded-lg border border-dark-600 bg-dark-700 px-3 py-2 text-dark-100 focus:border-accent-500 focus:outline-none"
|
|
>
|
|
<option value="">{t('admin.promocodes.form.selectGroup')}</option>
|
|
{promoGroups.map((group) => (
|
|
<option key={group.id} value={group.id}>
|
|
{group.name}
|
|
</option>
|
|
))}
|
|
</select>
|
|
</div>
|
|
)}
|
|
|
|
{type === 'discount' && (
|
|
<>
|
|
<div>
|
|
<label className="mb-1 block text-sm text-dark-300">
|
|
{t('admin.promocodes.form.discountPercent')}
|
|
</label>
|
|
<div className="flex items-center gap-2">
|
|
<input
|
|
type="number"
|
|
value={balanceBonusRubles}
|
|
onChange={(e) =>
|
|
setBalanceBonusRubles(
|
|
Math.min(100, Math.max(0, parseFloat(e.target.value) || 0)),
|
|
)
|
|
}
|
|
className="w-32 rounded-lg border border-dark-600 bg-dark-700 px-3 py-2 text-dark-100 focus:border-accent-500 focus:outline-none"
|
|
min={1}
|
|
max={100}
|
|
/>
|
|
<span className="text-dark-400">%</span>
|
|
</div>
|
|
<p className="mt-1 text-xs text-dark-500">
|
|
{t('admin.promocodes.form.discountHint')}
|
|
</p>
|
|
</div>
|
|
<div>
|
|
<label className="mb-1 block text-sm text-dark-300">
|
|
{t('admin.promocodes.form.validityPeriod')}
|
|
</label>
|
|
<div className="flex items-center gap-2">
|
|
<input
|
|
type="number"
|
|
value={subscriptionDays}
|
|
onChange={(e) =>
|
|
setSubscriptionDays(Math.max(0, parseInt(e.target.value) || 0))
|
|
}
|
|
className="w-32 rounded-lg border border-dark-600 bg-dark-700 px-3 py-2 text-dark-100 focus:border-accent-500 focus:outline-none"
|
|
min={1}
|
|
/>
|
|
<span className="text-dark-400">{t('admin.promocodes.form.hours')}</span>
|
|
</div>
|
|
<p className="mt-1 text-xs text-dark-500">
|
|
{t('admin.promocodes.form.validityHint')}
|
|
</p>
|
|
</div>
|
|
</>
|
|
)}
|
|
|
|
{/* Max Uses */}
|
|
<div>
|
|
<label className="mb-1 block text-sm text-dark-300">
|
|
{t('admin.promocodes.form.maxUses')}
|
|
</label>
|
|
<div className="flex items-center gap-2">
|
|
<input
|
|
type="number"
|
|
value={maxUses}
|
|
onChange={(e) => setMaxUses(Math.max(0, parseInt(e.target.value) || 0))}
|
|
className="w-32 rounded-lg border border-dark-600 bg-dark-700 px-3 py-2 text-dark-100 focus:border-accent-500 focus:outline-none"
|
|
min={0}
|
|
/>
|
|
<span className="text-xs text-dark-500">
|
|
{t('admin.promocodes.form.unlimitedHint')}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Valid Until */}
|
|
<div>
|
|
<label className="mb-1 block text-sm text-dark-300">
|
|
{t('admin.promocodes.form.validUntil')}
|
|
</label>
|
|
<input
|
|
type="date"
|
|
value={validUntil}
|
|
onChange={(e) => setValidUntil(e.target.value)}
|
|
className="w-full rounded-lg border border-dark-600 bg-dark-700 px-3 py-2 text-dark-100 focus:border-accent-500 focus:outline-none"
|
|
/>
|
|
<p className="mt-1 text-xs text-dark-500">
|
|
{t('admin.promocodes.form.validUntilHint')}
|
|
</p>
|
|
</div>
|
|
|
|
{/* Options */}
|
|
<div className="space-y-3">
|
|
<label className="flex cursor-pointer items-center gap-3">
|
|
<button
|
|
type="button"
|
|
onClick={() => setIsActive(!isActive)}
|
|
className={`relative h-6 w-10 rounded-full transition-colors ${
|
|
isActive ? 'bg-accent-500' : 'bg-dark-600'
|
|
}`}
|
|
>
|
|
<span
|
|
className={`absolute top-1 h-4 w-4 rounded-full bg-white transition-transform ${
|
|
isActive ? 'left-5' : 'left-1'
|
|
}`}
|
|
/>
|
|
</button>
|
|
<span className="text-sm text-dark-200">{t('admin.promocodes.form.active')}</span>
|
|
</label>
|
|
|
|
<label className="flex cursor-pointer items-center gap-3">
|
|
<button
|
|
type="button"
|
|
onClick={() => setFirstPurchaseOnly(!firstPurchaseOnly)}
|
|
className={`relative h-6 w-10 rounded-full transition-colors ${
|
|
firstPurchaseOnly ? 'bg-accent-500' : 'bg-dark-600'
|
|
}`}
|
|
>
|
|
<span
|
|
className={`absolute top-1 h-4 w-4 rounded-full bg-white transition-transform ${
|
|
firstPurchaseOnly ? 'left-5' : 'left-1'
|
|
}`}
|
|
/>
|
|
</button>
|
|
<span className="text-sm text-dark-200">
|
|
{t('admin.promocodes.form.firstPurchaseOnly')}
|
|
</span>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Footer */}
|
|
<div className="flex justify-end gap-3 border-t border-dark-700 p-4">
|
|
<button
|
|
onClick={onClose}
|
|
className="px-4 py-2 text-dark-300 transition-colors hover:text-dark-100"
|
|
>
|
|
{t('admin.promocodes.form.cancel')}
|
|
</button>
|
|
<button
|
|
onClick={handleSubmit}
|
|
disabled={!isValid() || isLoading}
|
|
className="rounded-lg bg-accent-500 px-4 py-2 text-white transition-colors hover:bg-accent-600 disabled:cursor-not-allowed disabled:opacity-50"
|
|
>
|
|
{isLoading ? t('admin.promocodes.form.saving') : t('admin.promocodes.form.save')}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// PromoGroup Modal
|
|
interface PromoGroupModalProps {
|
|
group?: PromoGroup | null;
|
|
onSave: (data: PromoGroupCreateRequest | PromoGroupUpdateRequest) => void;
|
|
onClose: () => void;
|
|
isLoading?: boolean;
|
|
}
|
|
|
|
interface PeriodDiscount {
|
|
days: number;
|
|
percent: number;
|
|
}
|
|
|
|
function PromoGroupModal({ group, onSave, onClose, isLoading }: PromoGroupModalProps) {
|
|
const { t } = useTranslation();
|
|
const isEdit = !!group;
|
|
|
|
const [name, setName] = useState(group?.name || '');
|
|
const [serverDiscount, setServerDiscount] = useState(group?.server_discount_percent || 0);
|
|
const [trafficDiscount, setTrafficDiscount] = useState(group?.traffic_discount_percent || 0);
|
|
const [deviceDiscount, setDeviceDiscount] = useState(group?.device_discount_percent || 0);
|
|
const [applyToAddons, setApplyToAddons] = useState(group?.apply_discounts_to_addons ?? true);
|
|
const [autoAssignSpent, setAutoAssignSpent] = useState(
|
|
group?.auto_assign_total_spent_kopeks ? group.auto_assign_total_spent_kopeks / 100 : 0,
|
|
);
|
|
|
|
// Period discounts state
|
|
const [periodDiscounts, setPeriodDiscounts] = useState<PeriodDiscount[]>(() => {
|
|
if (group?.period_discounts && typeof group.period_discounts === 'object') {
|
|
return Object.entries(group.period_discounts).map(([days, percent]) => ({
|
|
days: parseInt(days),
|
|
percent: typeof percent === 'number' ? percent : 0,
|
|
}));
|
|
}
|
|
return [];
|
|
});
|
|
|
|
const addPeriodDiscount = () => {
|
|
setPeriodDiscounts([...periodDiscounts, { days: 30, percent: 0 }]);
|
|
};
|
|
|
|
const removePeriodDiscount = (index: number) => {
|
|
setPeriodDiscounts(periodDiscounts.filter((_, i) => i !== index));
|
|
};
|
|
|
|
const updatePeriodDiscount = (index: number, field: 'days' | 'percent', value: number) => {
|
|
const updated = [...periodDiscounts];
|
|
updated[index][field] = value;
|
|
setPeriodDiscounts(updated);
|
|
};
|
|
|
|
const handleSubmit = () => {
|
|
// Convert periodDiscounts array to Record<number, number>
|
|
const periodDiscountsRecord: Record<number, number> = {};
|
|
periodDiscounts.forEach((pd) => {
|
|
if (pd.days > 0 && pd.percent > 0) {
|
|
periodDiscountsRecord[pd.days] = pd.percent;
|
|
}
|
|
});
|
|
|
|
const data: PromoGroupCreateRequest | PromoGroupUpdateRequest = {
|
|
name,
|
|
server_discount_percent: serverDiscount,
|
|
traffic_discount_percent: trafficDiscount,
|
|
device_discount_percent: deviceDiscount,
|
|
period_discounts:
|
|
Object.keys(periodDiscountsRecord).length > 0 ? periodDiscountsRecord : undefined,
|
|
apply_discounts_to_addons: applyToAddons,
|
|
auto_assign_total_spent_kopeks:
|
|
autoAssignSpent > 0 ? Math.round(autoAssignSpent * 100) : null,
|
|
};
|
|
onSave(data);
|
|
};
|
|
|
|
return (
|
|
<div className="fixed inset-0 z-50 flex items-center justify-center p-4">
|
|
<div className="flex max-h-[90vh] w-full max-w-lg flex-col overflow-hidden rounded-xl bg-dark-800">
|
|
{/* Header */}
|
|
<div className="flex items-center justify-between border-b border-dark-700 p-4">
|
|
<h2 className="text-lg font-semibold text-dark-100">
|
|
{isEdit ? t('admin.promocodes.modal.editGroup') : t('admin.promocodes.modal.newGroup')}
|
|
</h2>
|
|
<button onClick={onClose} className="rounded-lg p-1 transition-colors hover:bg-dark-700">
|
|
<XIcon />
|
|
</button>
|
|
</div>
|
|
|
|
{/* Content */}
|
|
<div className="flex-1 space-y-4 overflow-y-auto p-4">
|
|
{/* Name */}
|
|
<div>
|
|
<label className="mb-1 block text-sm text-dark-300">
|
|
{t('admin.promocodes.groups.name')}
|
|
</label>
|
|
<input
|
|
type="text"
|
|
value={name}
|
|
onChange={(e) => setName(e.target.value)}
|
|
className="w-full rounded-lg border border-dark-600 bg-dark-700 px-3 py-2 text-dark-100 focus:border-accent-500 focus:outline-none"
|
|
placeholder={t('admin.promocodes.groups.namePlaceholder')}
|
|
/>
|
|
</div>
|
|
|
|
{/* Category Discounts */}
|
|
<div className="space-y-3 rounded-lg bg-dark-700/50 p-4">
|
|
<h4 className="mb-3 text-sm font-medium text-dark-200">
|
|
{t('admin.promocodes.groups.categoryDiscounts')}
|
|
</h4>
|
|
|
|
<div className="flex items-center gap-3">
|
|
<span className="w-32 text-sm text-dark-400">
|
|
{t('admin.promocodes.groups.servers')}:
|
|
</span>
|
|
<input
|
|
type="number"
|
|
value={serverDiscount}
|
|
onChange={(e) =>
|
|
setServerDiscount(Math.min(100, Math.max(0, parseInt(e.target.value) || 0)))
|
|
}
|
|
className="w-20 rounded border border-dark-500 bg-dark-600 px-2 py-1 text-dark-100 focus:border-accent-500 focus:outline-none"
|
|
min={0}
|
|
max={100}
|
|
/>
|
|
<span className="text-dark-400">%</span>
|
|
</div>
|
|
|
|
<div className="flex items-center gap-3">
|
|
<span className="w-32 text-sm text-dark-400">
|
|
{t('admin.promocodes.groups.traffic')}:
|
|
</span>
|
|
<input
|
|
type="number"
|
|
value={trafficDiscount}
|
|
onChange={(e) =>
|
|
setTrafficDiscount(Math.min(100, Math.max(0, parseInt(e.target.value) || 0)))
|
|
}
|
|
className="w-20 rounded border border-dark-500 bg-dark-600 px-2 py-1 text-dark-100 focus:border-accent-500 focus:outline-none"
|
|
min={0}
|
|
max={100}
|
|
/>
|
|
<span className="text-dark-400">%</span>
|
|
</div>
|
|
|
|
<div className="flex items-center gap-3">
|
|
<span className="w-32 text-sm text-dark-400">
|
|
{t('admin.promocodes.groups.devices')}:
|
|
</span>
|
|
<input
|
|
type="number"
|
|
value={deviceDiscount}
|
|
onChange={(e) =>
|
|
setDeviceDiscount(Math.min(100, Math.max(0, parseInt(e.target.value) || 0)))
|
|
}
|
|
className="w-20 rounded border border-dark-500 bg-dark-600 px-2 py-1 text-dark-100 focus:border-accent-500 focus:outline-none"
|
|
min={0}
|
|
max={100}
|
|
/>
|
|
<span className="text-dark-400">%</span>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Period Discounts */}
|
|
<div className="space-y-3 rounded-lg bg-dark-700/50 p-4">
|
|
<div className="mb-2 flex items-center justify-between">
|
|
<h4 className="text-sm font-medium text-dark-200">
|
|
{t('admin.promocodes.groups.periodDiscounts')}
|
|
</h4>
|
|
<button
|
|
type="button"
|
|
onClick={addPeriodDiscount}
|
|
className="flex items-center gap-1 rounded bg-accent-500/20 px-2 py-1 text-xs text-accent-400 transition-colors hover:bg-accent-500/30"
|
|
>
|
|
<PlusIcon />
|
|
{t('admin.promocodes.groups.add')}
|
|
</button>
|
|
</div>
|
|
<p className="mb-3 text-xs text-dark-500">
|
|
{t('admin.promocodes.groups.periodDiscountsHint')}
|
|
</p>
|
|
|
|
{periodDiscounts.length === 0 ? (
|
|
<p className="py-2 text-center text-sm text-dark-500">
|
|
{t('admin.promocodes.groups.noPeriodDiscounts')}
|
|
</p>
|
|
) : (
|
|
<div className="space-y-2">
|
|
{periodDiscounts.map((pd, index) => (
|
|
<div key={index} className="flex items-center gap-2">
|
|
<input
|
|
type="number"
|
|
value={pd.days}
|
|
onChange={(e) =>
|
|
updatePeriodDiscount(
|
|
index,
|
|
'days',
|
|
Math.max(1, parseInt(e.target.value) || 1),
|
|
)
|
|
}
|
|
className="w-20 rounded border border-dark-500 bg-dark-600 px-2 py-1 text-dark-100 focus:border-accent-500 focus:outline-none"
|
|
min={1}
|
|
placeholder={t('admin.promocodes.groups.daysPlaceholder')}
|
|
/>
|
|
<span className="text-xs text-dark-400">
|
|
{t('admin.promocodes.groups.daysArrow')}
|
|
</span>
|
|
<input
|
|
type="number"
|
|
value={pd.percent}
|
|
onChange={(e) =>
|
|
updatePeriodDiscount(
|
|
index,
|
|
'percent',
|
|
Math.min(100, Math.max(0, parseInt(e.target.value) || 0)),
|
|
)
|
|
}
|
|
className="w-20 rounded border border-dark-500 bg-dark-600 px-2 py-1 text-dark-100 focus:border-accent-500 focus:outline-none"
|
|
min={0}
|
|
max={100}
|
|
placeholder="%"
|
|
/>
|
|
<span className="text-dark-400">%</span>
|
|
<button
|
|
type="button"
|
|
onClick={() => removePeriodDiscount(index)}
|
|
className="p-1 text-dark-400 transition-colors hover:text-error-400"
|
|
>
|
|
<TrashIcon />
|
|
</button>
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
{/* Auto-assign */}
|
|
<div>
|
|
<label className="mb-1 block text-sm text-dark-300">
|
|
{t('admin.promocodes.groups.autoAssign')}
|
|
</label>
|
|
<div className="flex items-center gap-2">
|
|
<input
|
|
type="number"
|
|
value={autoAssignSpent}
|
|
onChange={(e) => setAutoAssignSpent(Math.max(0, parseFloat(e.target.value) || 0))}
|
|
className="w-32 rounded-lg border border-dark-600 bg-dark-700 px-3 py-2 text-dark-100 focus:border-accent-500 focus:outline-none"
|
|
min={0}
|
|
/>
|
|
<span className="text-dark-400">{t('admin.promocodes.form.rub')}</span>
|
|
</div>
|
|
<p className="mt-1 text-xs text-dark-500">
|
|
{t('admin.promocodes.groups.autoAssignHint')}
|
|
</p>
|
|
</div>
|
|
|
|
{/* Apply to addons */}
|
|
<label className="flex cursor-pointer items-center gap-3">
|
|
<button
|
|
type="button"
|
|
onClick={() => setApplyToAddons(!applyToAddons)}
|
|
className={`relative h-6 w-10 rounded-full transition-colors ${
|
|
applyToAddons ? 'bg-accent-500' : 'bg-dark-600'
|
|
}`}
|
|
>
|
|
<span
|
|
className={`absolute top-1 h-4 w-4 rounded-full bg-white transition-transform ${
|
|
applyToAddons ? 'left-5' : 'left-1'
|
|
}`}
|
|
/>
|
|
</button>
|
|
<span className="text-sm text-dark-200">
|
|
{t('admin.promocodes.groups.applyToAddons')}
|
|
</span>
|
|
</label>
|
|
</div>
|
|
|
|
{/* Footer */}
|
|
<div className="flex justify-end gap-3 border-t border-dark-700 p-4">
|
|
<button
|
|
onClick={onClose}
|
|
className="px-4 py-2 text-dark-300 transition-colors hover:text-dark-100"
|
|
>
|
|
{t('admin.promocodes.form.cancel')}
|
|
</button>
|
|
<button
|
|
onClick={handleSubmit}
|
|
disabled={!name.trim() || isLoading}
|
|
className="rounded-lg bg-accent-500 px-4 py-2 text-white transition-colors hover:bg-accent-600 disabled:cursor-not-allowed disabled:opacity-50"
|
|
>
|
|
{isLoading ? t('admin.promocodes.form.saving') : t('admin.promocodes.form.save')}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// Promocode Stats Modal
|
|
interface PromocodeStatsModalProps {
|
|
promocode: PromoCodeDetail;
|
|
onClose: () => void;
|
|
onEdit: () => void;
|
|
}
|
|
|
|
function PromocodeStatsModal({ promocode, onClose, onEdit }: PromocodeStatsModalProps) {
|
|
const { t } = useTranslation();
|
|
return (
|
|
<div className="fixed inset-0 z-50 flex items-center justify-center p-4">
|
|
<div className="flex max-h-[90vh] w-full max-w-2xl flex-col overflow-hidden rounded-xl bg-dark-800">
|
|
{/* Header */}
|
|
<div className="flex items-center justify-between border-b border-dark-700 p-4">
|
|
<div className="flex items-center gap-3">
|
|
<div
|
|
className={`rounded-lg px-3 py-1.5 font-mono text-lg font-bold ${getTypeColor(promocode.type)}`}
|
|
>
|
|
{promocode.code}
|
|
</div>
|
|
<span className={`rounded px-2 py-0.5 text-xs ${getTypeColor(promocode.type)}`}>
|
|
{getTypeLabel(promocode.type)}
|
|
</span>
|
|
{!promocode.is_active && (
|
|
<span className="rounded bg-dark-600 px-2 py-0.5 text-xs text-dark-400">
|
|
{t('admin.promocodes.stats.inactive')}
|
|
</span>
|
|
)}
|
|
</div>
|
|
<button onClick={onClose} className="rounded-lg p-1 transition-colors hover:bg-dark-700">
|
|
<XIcon />
|
|
</button>
|
|
</div>
|
|
|
|
{/* Content */}
|
|
<div className="flex-1 space-y-6 overflow-y-auto p-4">
|
|
{/* Stats Cards */}
|
|
<div className="grid grid-cols-3 gap-4">
|
|
<div className="rounded-xl bg-dark-700/50 p-4 text-center">
|
|
<div className="mb-1 text-3xl font-bold text-dark-100">{promocode.total_uses}</div>
|
|
<div className="text-sm text-dark-400">{t('admin.promocodes.stats.totalUses')}</div>
|
|
</div>
|
|
<div className="rounded-xl bg-dark-700/50 p-4 text-center">
|
|
<div className="mb-1 text-3xl font-bold text-emerald-400">{promocode.today_uses}</div>
|
|
<div className="text-sm text-dark-400">{t('admin.promocodes.stats.today')}</div>
|
|
</div>
|
|
<div className="rounded-xl bg-dark-700/50 p-4 text-center">
|
|
<div className="mb-1 text-3xl font-bold text-accent-400">
|
|
{promocode.max_uses === 0 ? '∞' : promocode.uses_left}
|
|
</div>
|
|
<div className="text-sm text-dark-400">{t('admin.promocodes.stats.remaining')}</div>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Details */}
|
|
<div className="space-y-3 rounded-xl bg-dark-700/50 p-4">
|
|
<h4 className="mb-3 font-medium text-dark-200">
|
|
{t('admin.promocodes.stats.details')}
|
|
</h4>
|
|
<div className="grid grid-cols-2 gap-3 text-sm">
|
|
<div className="flex justify-between">
|
|
<span className="text-dark-400">{t('admin.promocodes.stats.type')}:</span>
|
|
<span className="text-dark-200">{getTypeLabel(promocode.type)}</span>
|
|
</div>
|
|
{promocode.type === 'balance' && (
|
|
<div className="flex justify-between">
|
|
<span className="text-dark-400">{t('admin.promocodes.stats.bonus')}:</span>
|
|
<span className="text-emerald-400">
|
|
+{promocode.balance_bonus_rubles} {t('admin.promocodes.form.rub')}
|
|
</span>
|
|
</div>
|
|
)}
|
|
{(promocode.type === 'subscription_days' ||
|
|
promocode.type === 'trial_subscription') && (
|
|
<div className="flex justify-between">
|
|
<span className="text-dark-400">{t('admin.promocodes.stats.daysLabel')}:</span>
|
|
<span className="text-blue-400">+{promocode.subscription_days}</span>
|
|
</div>
|
|
)}
|
|
{promocode.type === 'discount' && (
|
|
<>
|
|
<div className="flex justify-between">
|
|
<span className="text-dark-400">
|
|
{t('admin.promocodes.stats.discountLabel')}:
|
|
</span>
|
|
<span className="text-pink-400">-{promocode.balance_bonus_kopeks}%</span>
|
|
</div>
|
|
<div className="flex justify-between">
|
|
<span className="text-dark-400">{t('admin.promocodes.stats.validFor')}:</span>
|
|
<span className="text-pink-400">
|
|
{t('admin.promocodes.stats.hoursValue', {
|
|
count: promocode.subscription_days,
|
|
})}
|
|
</span>
|
|
</div>
|
|
</>
|
|
)}
|
|
<div className="flex justify-between">
|
|
<span className="text-dark-400">{t('admin.promocodes.stats.limit')}:</span>
|
|
<span className="text-dark-200">
|
|
{promocode.current_uses}/{promocode.max_uses === 0 ? '∞' : promocode.max_uses}
|
|
</span>
|
|
</div>
|
|
<div className="flex justify-between">
|
|
<span className="text-dark-400">{t('admin.promocodes.stats.status')}:</span>
|
|
<span className={promocode.is_valid ? 'text-emerald-400' : 'text-error-400'}>
|
|
{promocode.is_valid
|
|
? t('admin.promocodes.stats.active')
|
|
: t('admin.promocodes.stats.inactive')}
|
|
</span>
|
|
</div>
|
|
<div className="flex justify-between">
|
|
<span className="text-dark-400">{t('admin.promocodes.stats.created')}:</span>
|
|
<span className="text-dark-200">{formatDateTime(promocode.created_at)}</span>
|
|
</div>
|
|
<div className="flex justify-between">
|
|
<span className="text-dark-400">{t('admin.promocodes.stats.validUntil')}:</span>
|
|
<span className="text-dark-200">
|
|
{promocode.valid_until
|
|
? formatDate(promocode.valid_until)
|
|
: t('admin.promocodes.stats.unlimited')}
|
|
</span>
|
|
</div>
|
|
{promocode.first_purchase_only && (
|
|
<div className="col-span-2 flex justify-between">
|
|
<span className="text-dark-400">{t('admin.promocodes.stats.restriction')}:</span>
|
|
<span className="text-amber-400">
|
|
{t('admin.promocodes.stats.firstPurchaseOnly')}
|
|
</span>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
{/* Usage History */}
|
|
<div className="rounded-xl bg-dark-700/50 p-4">
|
|
<h4 className="mb-3 flex items-center gap-2 font-medium text-dark-200">
|
|
<ClockIcon />
|
|
{t('admin.promocodes.stats.usageHistory')}
|
|
</h4>
|
|
{promocode.recent_uses.length === 0 ? (
|
|
<p className="py-4 text-center text-sm text-dark-500">
|
|
{t('admin.promocodes.stats.noUsages')}
|
|
</p>
|
|
) : (
|
|
<div className="max-h-64 space-y-2 overflow-y-auto">
|
|
{promocode.recent_uses.map((use) => (
|
|
<div
|
|
key={use.id}
|
|
className="flex items-center justify-between rounded-lg bg-dark-600/50 p-3"
|
|
>
|
|
<div className="flex items-center gap-3">
|
|
<div className="flex h-8 w-8 items-center justify-center rounded-full bg-dark-500">
|
|
<UserIcon />
|
|
</div>
|
|
<div>
|
|
<div className="text-sm font-medium text-dark-200">
|
|
{use.user_full_name || use.user_username || `User #${use.user_id}`}
|
|
</div>
|
|
{use.user_username && (
|
|
<div className="text-xs text-dark-500">@{use.user_username}</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
<div className="text-xs text-dark-400">{formatDateTime(use.used_at)}</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
{/* Footer */}
|
|
<div className="flex justify-end gap-3 border-t border-dark-700 p-4">
|
|
<button
|
|
onClick={onClose}
|
|
className="px-4 py-2 text-dark-300 transition-colors hover:text-dark-100"
|
|
>
|
|
{t('admin.promocodes.modal.close')}
|
|
</button>
|
|
<button
|
|
onClick={onEdit}
|
|
className="flex items-center gap-2 rounded-lg bg-accent-500 px-4 py-2 text-white transition-colors hover:bg-accent-600"
|
|
>
|
|
<EditIcon />
|
|
{t('admin.promocodes.modal.edit')}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default function AdminPromocodes() {
|
|
const { t } = useTranslation();
|
|
const queryClient = useQueryClient();
|
|
|
|
const [activeTab, setActiveTab] = useState<'promocodes' | 'groups'>('promocodes');
|
|
const [viewingPromocode, setViewingPromocode] = useState<PromoCodeDetail | null>(null);
|
|
const [showPromocodeModal, setShowPromocodeModal] = useState(false);
|
|
const [showGroupModal, setShowGroupModal] = useState(false);
|
|
const [editingPromocode, setEditingPromocode] = useState<PromoCodeDetail | null>(null);
|
|
const [editingGroup, setEditingGroup] = useState<PromoGroup | null>(null);
|
|
const [deleteConfirm, setDeleteConfirm] = useState<{
|
|
type: 'promocode' | 'group';
|
|
id: number;
|
|
} | null>(null);
|
|
const [copiedCode, setCopiedCode] = useState<string | null>(null);
|
|
|
|
// Queries
|
|
const { data: promocodesData, isLoading: promocodesLoading } = useQuery({
|
|
queryKey: ['admin-promocodes'],
|
|
queryFn: () => promocodesApi.getPromocodes({ limit: 100 }),
|
|
});
|
|
|
|
const { data: groupsData, isLoading: groupsLoading } = useQuery({
|
|
queryKey: ['admin-promo-groups'],
|
|
queryFn: () => promocodesApi.getPromoGroups({ limit: 100 }),
|
|
});
|
|
|
|
// Promocode Mutations
|
|
const createPromocodeMutation = useMutation({
|
|
mutationFn: promocodesApi.createPromocode,
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: ['admin-promocodes'] });
|
|
setShowPromocodeModal(false);
|
|
},
|
|
});
|
|
|
|
const updatePromocodeMutation = useMutation({
|
|
mutationFn: ({ id, data }: { id: number; data: PromoCodeUpdateRequest }) =>
|
|
promocodesApi.updatePromocode(id, data),
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: ['admin-promocodes'] });
|
|
setShowPromocodeModal(false);
|
|
setEditingPromocode(null);
|
|
},
|
|
});
|
|
|
|
const deletePromocodeMutation = useMutation({
|
|
mutationFn: promocodesApi.deletePromocode,
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: ['admin-promocodes'] });
|
|
setDeleteConfirm(null);
|
|
},
|
|
});
|
|
|
|
// PromoGroup Mutations
|
|
const createGroupMutation = useMutation({
|
|
mutationFn: promocodesApi.createPromoGroup,
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: ['admin-promo-groups'] });
|
|
setShowGroupModal(false);
|
|
},
|
|
});
|
|
|
|
const updateGroupMutation = useMutation({
|
|
mutationFn: ({ id, data }: { id: number; data: PromoGroupUpdateRequest }) =>
|
|
promocodesApi.updatePromoGroup(id, data),
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: ['admin-promo-groups'] });
|
|
setShowGroupModal(false);
|
|
setEditingGroup(null);
|
|
},
|
|
});
|
|
|
|
const deleteGroupMutation = useMutation({
|
|
mutationFn: promocodesApi.deletePromoGroup,
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: ['admin-promo-groups'] });
|
|
setDeleteConfirm(null);
|
|
},
|
|
});
|
|
|
|
const handleEditPromocode = async (id: number) => {
|
|
try {
|
|
const detail = await promocodesApi.getPromocode(id);
|
|
setEditingPromocode(detail);
|
|
setShowPromocodeModal(true);
|
|
} catch (error) {
|
|
console.error('Failed to load promocode:', error);
|
|
}
|
|
};
|
|
|
|
const handleViewStats = async (id: number) => {
|
|
try {
|
|
const detail = await promocodesApi.getPromocode(id);
|
|
setViewingPromocode(detail);
|
|
} catch (error) {
|
|
console.error('Failed to load promocode stats:', error);
|
|
}
|
|
};
|
|
|
|
const handleSavePromocode = (data: PromoCodeCreateRequest | PromoCodeUpdateRequest) => {
|
|
if (editingPromocode) {
|
|
updatePromocodeMutation.mutate({ id: editingPromocode.id, data });
|
|
} else {
|
|
createPromocodeMutation.mutate(data as PromoCodeCreateRequest);
|
|
}
|
|
};
|
|
|
|
const handleSaveGroup = (data: PromoGroupCreateRequest | PromoGroupUpdateRequest) => {
|
|
if (editingGroup) {
|
|
updateGroupMutation.mutate({ id: editingGroup.id, data });
|
|
} else {
|
|
createGroupMutation.mutate(data as PromoGroupCreateRequest);
|
|
}
|
|
};
|
|
|
|
const handleCopyCode = (code: string) => {
|
|
navigator.clipboard.writeText(code);
|
|
setCopiedCode(code);
|
|
setTimeout(() => setCopiedCode(null), 2000);
|
|
};
|
|
|
|
const handleDelete = () => {
|
|
if (!deleteConfirm) return;
|
|
if (deleteConfirm.type === 'promocode') {
|
|
deletePromocodeMutation.mutate(deleteConfirm.id);
|
|
} else {
|
|
deleteGroupMutation.mutate(deleteConfirm.id);
|
|
}
|
|
};
|
|
|
|
const promocodes = promocodesData?.items || [];
|
|
const groups = groupsData?.items || [];
|
|
|
|
return (
|
|
<div className="animate-fade-in">
|
|
{/* Header */}
|
|
<div className="mb-6 flex items-center justify-between">
|
|
<div className="flex items-center gap-3">
|
|
<Link
|
|
to="/admin"
|
|
className="flex h-10 w-10 items-center justify-center rounded-xl border border-dark-700 bg-dark-800 transition-colors hover:border-dark-600"
|
|
>
|
|
<BackIcon />
|
|
</Link>
|
|
<div>
|
|
<h1 className="text-xl font-semibold text-dark-100">{t('admin.promocodes.title')}</h1>
|
|
<p className="text-sm text-dark-400">{t('admin.promocodes.subtitle')}</p>
|
|
</div>
|
|
</div>
|
|
<button
|
|
onClick={() => {
|
|
if (activeTab === 'promocodes') {
|
|
setEditingPromocode(null);
|
|
setShowPromocodeModal(true);
|
|
} else {
|
|
setEditingGroup(null);
|
|
setShowGroupModal(true);
|
|
}
|
|
}}
|
|
className="flex items-center gap-2 rounded-lg bg-accent-500 px-4 py-2 text-white transition-colors hover:bg-accent-600"
|
|
>
|
|
<PlusIcon />
|
|
{activeTab === 'promocodes'
|
|
? t('admin.promocodes.addPromocode')
|
|
: t('admin.promocodes.addGroup')}
|
|
</button>
|
|
</div>
|
|
|
|
{/* Stats Overview */}
|
|
{activeTab === 'promocodes' && promocodes.length > 0 && (
|
|
<div className="mb-6 grid grid-cols-2 gap-3 sm:grid-cols-4">
|
|
<div className="rounded-xl border border-dark-700 bg-dark-800 p-4">
|
|
<div className="text-2xl font-bold text-dark-100">{promocodes.length}</div>
|
|
<div className="text-xs text-dark-400">
|
|
{t('admin.promocodes.stats.totalPromocodes')}
|
|
</div>
|
|
</div>
|
|
<div className="rounded-xl border border-dark-700 bg-dark-800 p-4">
|
|
<div className="text-2xl font-bold text-emerald-400">
|
|
{promocodes.filter((p) => p.is_active && p.is_valid).length}
|
|
</div>
|
|
<div className="text-xs text-dark-400">{t('admin.promocodes.stats.activeCount')}</div>
|
|
</div>
|
|
<div className="rounded-xl border border-dark-700 bg-dark-800 p-4">
|
|
<div className="text-2xl font-bold text-accent-400">
|
|
{promocodes.reduce((sum, p) => sum + p.current_uses, 0)}
|
|
</div>
|
|
<div className="text-xs text-dark-400">{t('admin.promocodes.stats.usagesCount')}</div>
|
|
</div>
|
|
<div className="rounded-xl border border-dark-700 bg-dark-800 p-4">
|
|
<div className="text-2xl font-bold text-amber-400">
|
|
{promocodes.filter((p) => p.uses_left === 0 && p.max_uses > 0).length}
|
|
</div>
|
|
<div className="text-xs text-dark-400">{t('admin.promocodes.stats.exhausted')}</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{/* Tabs */}
|
|
<div className="mb-6 flex w-fit gap-1 rounded-lg bg-dark-800 p-1">
|
|
<button
|
|
onClick={() => setActiveTab('promocodes')}
|
|
className={`rounded-md px-4 py-2 text-sm font-medium transition-colors ${
|
|
activeTab === 'promocodes'
|
|
? 'bg-dark-700 text-dark-100'
|
|
: 'text-dark-400 hover:text-dark-200'
|
|
}`}
|
|
>
|
|
{t('admin.promocodes.tabs.promocodes', { count: promocodes.length })}
|
|
</button>
|
|
<button
|
|
onClick={() => setActiveTab('groups')}
|
|
className={`rounded-md px-4 py-2 text-sm font-medium transition-colors ${
|
|
activeTab === 'groups'
|
|
? 'bg-dark-700 text-dark-100'
|
|
: 'text-dark-400 hover:text-dark-200'
|
|
}`}
|
|
>
|
|
{t('admin.promocodes.tabs.groups', { count: groups.length })}
|
|
</button>
|
|
</div>
|
|
|
|
{/* Promocodes List */}
|
|
{activeTab === 'promocodes' && (
|
|
<>
|
|
{promocodesLoading ? (
|
|
<div className="flex items-center justify-center py-12">
|
|
<div className="h-8 w-8 animate-spin rounded-full border-2 border-accent-500 border-t-transparent" />
|
|
</div>
|
|
) : promocodes.length === 0 ? (
|
|
<div className="py-12 text-center">
|
|
<p className="text-dark-400">{t('admin.promocodes.noPromocodes')}</p>
|
|
</div>
|
|
) : (
|
|
<div className="space-y-3">
|
|
{promocodes.map((promo: PromoCode) => (
|
|
<div
|
|
key={promo.id}
|
|
className={`rounded-xl border bg-dark-800 p-4 transition-colors ${
|
|
promo.is_active ? 'border-dark-700' : 'border-dark-700/50 opacity-60'
|
|
}`}
|
|
>
|
|
<div className="flex items-start justify-between gap-4">
|
|
<div className="min-w-0 flex-1">
|
|
<div className="mb-1 flex items-center gap-2">
|
|
<button
|
|
onClick={() => handleCopyCode(promo.code)}
|
|
className="flex items-center gap-1.5 font-mono font-medium text-dark-100 transition-colors hover:text-accent-400"
|
|
>
|
|
{promo.code}
|
|
{copiedCode === promo.code ? <CheckIcon /> : <CopyIcon />}
|
|
</button>
|
|
<span className={`rounded px-2 py-0.5 text-xs ${getTypeColor(promo.type)}`}>
|
|
{getTypeLabel(promo.type)}
|
|
</span>
|
|
{!promo.is_active && (
|
|
<span className="rounded bg-dark-600 px-2 py-0.5 text-xs text-dark-400">
|
|
{t('admin.promocodes.stats.inactive')}
|
|
</span>
|
|
)}
|
|
{promo.first_purchase_only && (
|
|
<span className="rounded bg-amber-500/20 px-2 py-0.5 text-xs text-amber-400">
|
|
{t('admin.promocodes.firstPurchase')}
|
|
</span>
|
|
)}
|
|
</div>
|
|
<div className="flex flex-wrap gap-x-4 gap-y-1 text-sm text-dark-400">
|
|
{promo.type === 'balance' && (
|
|
<span className="text-emerald-400">
|
|
+{promo.balance_bonus_rubles} {t('admin.promocodes.form.rub')}
|
|
</span>
|
|
)}
|
|
{(promo.type === 'subscription_days' ||
|
|
promo.type === 'trial_subscription') && (
|
|
<span className="text-blue-400">
|
|
+{promo.subscription_days} {t('admin.promocodes.form.days')}
|
|
</span>
|
|
)}
|
|
{promo.type === 'discount' && (
|
|
<span className="text-pink-400">
|
|
{t('admin.promocodes.discountForHours', {
|
|
percent: promo.balance_bonus_kopeks,
|
|
hours: promo.subscription_days,
|
|
})}
|
|
</span>
|
|
)}
|
|
<span>
|
|
{t('admin.promocodes.used')}: {promo.current_uses}/
|
|
{promo.max_uses === 0 ? '∞' : promo.max_uses}
|
|
</span>
|
|
{promo.valid_until && (
|
|
<span>
|
|
{t('admin.promocodes.until')}: {formatDate(promo.valid_until)}
|
|
</span>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex items-center gap-2">
|
|
<button
|
|
onClick={() => handleViewStats(promo.id)}
|
|
className="rounded-lg bg-dark-700 p-2 text-dark-300 transition-colors hover:bg-accent-500/20 hover:text-accent-400"
|
|
title={t('admin.promocodes.actions.stats')}
|
|
>
|
|
<ChartIcon />
|
|
</button>
|
|
<button
|
|
onClick={() => handleEditPromocode(promo.id)}
|
|
className="rounded-lg bg-dark-700 p-2 text-dark-300 transition-colors hover:bg-dark-600 hover:text-dark-100"
|
|
title={t('admin.promocodes.actions.edit')}
|
|
>
|
|
<EditIcon />
|
|
</button>
|
|
<button
|
|
onClick={() => setDeleteConfirm({ type: 'promocode', id: promo.id })}
|
|
className="rounded-lg bg-dark-700 p-2 text-dark-300 transition-colors hover:bg-error-500/20 hover:text-error-400"
|
|
title={t('admin.promocodes.actions.delete')}
|
|
>
|
|
<TrashIcon />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
</>
|
|
)}
|
|
|
|
{/* Groups List */}
|
|
{activeTab === 'groups' && (
|
|
<>
|
|
{groupsLoading ? (
|
|
<div className="flex items-center justify-center py-12">
|
|
<div className="h-8 w-8 animate-spin rounded-full border-2 border-accent-500 border-t-transparent" />
|
|
</div>
|
|
) : groups.length === 0 ? (
|
|
<div className="py-12 text-center">
|
|
<p className="text-dark-400">{t('admin.promocodes.noGroups')}</p>
|
|
</div>
|
|
) : (
|
|
<div className="space-y-3">
|
|
{groups.map((group: PromoGroup) => (
|
|
<div key={group.id} className="rounded-xl border border-dark-700 bg-dark-800 p-4">
|
|
<div className="flex items-start justify-between gap-4">
|
|
<div className="min-w-0 flex-1">
|
|
<div className="mb-1 flex items-center gap-2">
|
|
<h3 className="font-medium text-dark-100">{group.name}</h3>
|
|
{group.is_default && (
|
|
<span className="rounded bg-accent-500/20 px-2 py-0.5 text-xs text-accent-400">
|
|
{t('admin.promocodes.groups.default')}
|
|
</span>
|
|
)}
|
|
</div>
|
|
<div className="flex flex-wrap gap-x-4 gap-y-1 text-sm text-dark-400">
|
|
{group.server_discount_percent > 0 && (
|
|
<span>
|
|
{t('admin.promocodes.groups.servers')}: -{group.server_discount_percent}
|
|
%
|
|
</span>
|
|
)}
|
|
{group.traffic_discount_percent > 0 && (
|
|
<span>
|
|
{t('admin.promocodes.groups.traffic')}: -
|
|
{group.traffic_discount_percent}%
|
|
</span>
|
|
)}
|
|
{group.device_discount_percent > 0 && (
|
|
<span>
|
|
{t('admin.promocodes.groups.devices')}: -{group.device_discount_percent}
|
|
%
|
|
</span>
|
|
)}
|
|
{group.period_discounts &&
|
|
Object.keys(group.period_discounts).length > 0 &&
|
|
Object.entries(group.period_discounts).map(([days, percent]) => (
|
|
<span key={days} className="text-accent-400">
|
|
{t('admin.promocodes.groups.daysShort', { days })}: -{percent}%
|
|
</span>
|
|
))}
|
|
{group.auto_assign_total_spent_kopeks &&
|
|
group.auto_assign_total_spent_kopeks > 0 && (
|
|
<span className="text-amber-400">
|
|
{t('admin.promocodes.groups.autoFrom', {
|
|
amount: group.auto_assign_total_spent_kopeks / 100,
|
|
})}
|
|
</span>
|
|
)}
|
|
<span className="flex items-center gap-1">
|
|
<UsersIcon />
|
|
{t('admin.promocodes.groups.members', { count: group.members_count })}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex items-center gap-2">
|
|
<button
|
|
onClick={() => {
|
|
setEditingGroup(group);
|
|
setShowGroupModal(true);
|
|
}}
|
|
className="rounded-lg bg-dark-700 p-2 text-dark-300 transition-colors hover:bg-dark-600 hover:text-dark-100"
|
|
title={t('admin.promocodes.actions.edit')}
|
|
>
|
|
<EditIcon />
|
|
</button>
|
|
<button
|
|
onClick={() => setDeleteConfirm({ type: 'group', id: group.id })}
|
|
className="rounded-lg bg-dark-700 p-2 text-dark-300 transition-colors hover:bg-error-500/20 hover:text-error-400"
|
|
title={t('admin.promocodes.actions.delete')}
|
|
disabled={group.is_default}
|
|
>
|
|
<TrashIcon />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
</>
|
|
)}
|
|
|
|
{/* Promocode Modal */}
|
|
{showPromocodeModal && (
|
|
<PromocodeModal
|
|
promocode={editingPromocode}
|
|
promoGroups={groups}
|
|
onSave={handleSavePromocode}
|
|
onClose={() => {
|
|
setShowPromocodeModal(false);
|
|
setEditingPromocode(null);
|
|
}}
|
|
isLoading={createPromocodeMutation.isPending || updatePromocodeMutation.isPending}
|
|
/>
|
|
)}
|
|
|
|
{/* PromoGroup Modal */}
|
|
{showGroupModal && (
|
|
<PromoGroupModal
|
|
group={editingGroup}
|
|
onSave={handleSaveGroup}
|
|
onClose={() => {
|
|
setShowGroupModal(false);
|
|
setEditingGroup(null);
|
|
}}
|
|
isLoading={createGroupMutation.isPending || updateGroupMutation.isPending}
|
|
/>
|
|
)}
|
|
|
|
{/* Promocode Stats Modal */}
|
|
{viewingPromocode && (
|
|
<PromocodeStatsModal
|
|
promocode={viewingPromocode}
|
|
onClose={() => setViewingPromocode(null)}
|
|
onEdit={() => {
|
|
setEditingPromocode(viewingPromocode);
|
|
setViewingPromocode(null);
|
|
setShowPromocodeModal(true);
|
|
}}
|
|
/>
|
|
)}
|
|
|
|
{/* Delete Confirmation */}
|
|
{deleteConfirm && (
|
|
<div className="fixed inset-0 z-50 flex items-center justify-center p-4">
|
|
<div className="w-full max-w-sm rounded-xl bg-dark-800 p-6">
|
|
<h3 className="mb-2 text-lg font-semibold text-dark-100">
|
|
{deleteConfirm.type === 'promocode'
|
|
? t('admin.promocodes.confirm.deletePromocode')
|
|
: t('admin.promocodes.confirm.deleteGroup')}
|
|
</h3>
|
|
<p className="mb-6 text-dark-400">
|
|
{deleteConfirm.type === 'promocode'
|
|
? t('admin.promocodes.confirm.deletePromocodeText')
|
|
: t('admin.promocodes.confirm.deleteGroupText')}
|
|
</p>
|
|
<div className="flex justify-end gap-3">
|
|
<button
|
|
onClick={() => setDeleteConfirm(null)}
|
|
className="px-4 py-2 text-dark-300 transition-colors hover:text-dark-100"
|
|
>
|
|
{t('admin.promocodes.form.cancel')}
|
|
</button>
|
|
<button
|
|
onClick={handleDelete}
|
|
className="rounded-lg bg-error-500 px-4 py-2 text-white transition-colors hover:bg-error-600"
|
|
>
|
|
{t('admin.promocodes.confirm.deleteButton')}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|