mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-28 09:33:46 +00:00
Audit-driven sweep: replaced 168 hand-written inline <svg> icons across 77 files with the central Phosphor (react-icons/pi) components from @/components/icons, preserving each icon's size classes and colour (dynamic stroke colours via the parent's currentColor, RefreshIcon's spinning state, conditional rotate-180 chevrons). Verified: tsc + vite build + eslint clean; an adversarial diff review of all changed files found the replacements correct (70 files clean, 0 blockers). Remaining inline <svg> dropped from 262 to ~95 — the survivors are legitimate non-icons (brand/provider logos, loading spinners & framer-motion animations, charts/sparklines, background decoration) plus a few ambiguous glyphs.
553 lines
17 KiB
TypeScript
553 lines
17 KiB
TypeScript
import { useCallback, useRef, useState } from 'react';
|
|
import { useSearchParams, useNavigate } from 'react-router';
|
|
import { useQuery } from '@tanstack/react-query';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { motion } from 'framer-motion';
|
|
import { giftApi } from '../api/gift';
|
|
import { Spinner } from '@/components/ui/Spinner';
|
|
import { AnimatedCheckmark } from '@/components/ui/AnimatedCheckmark';
|
|
import { AnimatedCrossmark } from '@/components/ui/AnimatedCrossmark';
|
|
import { cn } from '@/lib/utils';
|
|
import { copyToClipboard } from '@/utils/clipboard';
|
|
import { CheckIcon, CopyIcon, InfoIcon, ExclamationIcon, ClockIcon } from '@/components/icons';
|
|
|
|
const MAX_POLL_MS = 10 * 60 * 1000; // 10 minutes
|
|
|
|
const KNOWN_WARNINGS = new Set(['telegram_unresolvable']);
|
|
|
|
// ============================================================
|
|
// Sub-components
|
|
// ============================================================
|
|
|
|
function PendingState() {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<motion.div
|
|
initial={{ opacity: 0, scale: 0.9 }}
|
|
animate={{ opacity: 1, scale: 1 }}
|
|
className="flex flex-col items-center gap-6 text-center"
|
|
>
|
|
<Spinner className="h-16 w-16 border-[3px]" />
|
|
<div>
|
|
<h1 className="text-xl font-bold text-dark-50">
|
|
{t('gift.processing', 'Processing your gift...')}
|
|
</h1>
|
|
<p className="mt-2 text-sm text-dark-400">
|
|
{t('gift.pendingDesc', 'Please wait while we process your payment')}
|
|
</p>
|
|
</div>
|
|
</motion.div>
|
|
);
|
|
}
|
|
|
|
function CodeOnlySuccessState({
|
|
purchaseToken,
|
|
tariffName,
|
|
periodDays,
|
|
}: {
|
|
purchaseToken: string;
|
|
tariffName: string | null;
|
|
periodDays: number | null;
|
|
}) {
|
|
const { t } = useTranslation();
|
|
const navigate = useNavigate();
|
|
const [copied, setCopied] = useState(false);
|
|
|
|
const shortCode = purchaseToken.slice(0, 12);
|
|
const giftCode = `GIFT-${shortCode}`;
|
|
const botUsername = import.meta.env.VITE_TELEGRAM_BOT_USERNAME as string | undefined;
|
|
// Encode underscores as %5F so Telegram auto-link detection doesn't strip them
|
|
const safeCode = shortCode.replace(/_/g, '%5F');
|
|
const botLink = botUsername ? `https://t.me/${botUsername}?start=GIFT%5F${safeCode}` : null;
|
|
const cabinetLink = `${window.location.origin}/gift?tab=activate&code=${safeCode}`;
|
|
|
|
const fullMessage = [
|
|
t('gift.shareText', 'I have a gift for you! Activate it here:'),
|
|
'',
|
|
botLink ? `${t('gift.shareModalActivateVia', 'Activate via bot:')} ${botLink}` : null,
|
|
`${t('gift.shareModalActivateViaCabinet', 'Or via website:')} ${cabinetLink}`,
|
|
]
|
|
.filter(Boolean)
|
|
.join('\n');
|
|
|
|
const handleCopy = async () => {
|
|
try {
|
|
await copyToClipboard(fullMessage);
|
|
setCopied(true);
|
|
setTimeout(() => setCopied(false), 2000);
|
|
} catch {
|
|
// fallback
|
|
}
|
|
};
|
|
|
|
return (
|
|
<motion.div
|
|
initial={{ opacity: 0, scale: 0.9 }}
|
|
animate={{ opacity: 1, scale: 1 }}
|
|
className="flex flex-col items-center gap-6 text-center"
|
|
>
|
|
<AnimatedCheckmark />
|
|
|
|
<div>
|
|
<h1 className="text-xl font-bold text-dark-50">
|
|
{t('gift.codeReadyTitle', 'Gift code is ready!')}
|
|
</h1>
|
|
{tariffName && periodDays !== null && (
|
|
<p className="mt-1 text-sm text-dark-300">
|
|
{tariffName} — {periodDays} {t('gift.days', 'days')}
|
|
</p>
|
|
)}
|
|
</div>
|
|
|
|
{/* Gift code display */}
|
|
<div className="w-full rounded-xl border border-accent-500/20 bg-accent-500/5 p-4">
|
|
<p className="mb-1 text-xs font-medium uppercase tracking-wider text-dark-400">
|
|
{t('gift.codeLabel', 'Gift code')}
|
|
</p>
|
|
<p className="select-all font-mono text-lg font-bold text-accent-400">{giftCode}</p>
|
|
</div>
|
|
|
|
{/* Share message preview */}
|
|
<div className="w-full rounded-xl border border-dark-700/30 bg-dark-800/40 p-4 text-left">
|
|
<p className="mb-3 text-sm font-medium text-dark-100">
|
|
{t('gift.shareText', 'I have a gift for you! Activate it here:')}
|
|
</p>
|
|
|
|
{botLink && (
|
|
<div className="mb-2">
|
|
<p className="mb-1 text-xs font-medium text-dark-400">
|
|
{t('gift.shareModalActivateVia', 'Activate via bot:')}
|
|
</p>
|
|
<p className="truncate rounded-lg bg-dark-900/60 px-3 py-2 text-sm text-accent-400">
|
|
{botLink}
|
|
</p>
|
|
</div>
|
|
)}
|
|
|
|
<div>
|
|
<p className="mb-1 text-xs font-medium text-dark-400">
|
|
{t('gift.shareModalActivateViaCabinet', 'Or via website:')}
|
|
</p>
|
|
<p className="truncate rounded-lg bg-dark-900/60 px-3 py-2 text-sm text-accent-400">
|
|
{cabinetLink}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Copy button */}
|
|
<button
|
|
type="button"
|
|
onClick={handleCopy}
|
|
className={cn(
|
|
'flex w-full items-center justify-center gap-2 rounded-xl px-4 py-3.5 text-sm font-bold transition-all duration-200 active:scale-[0.98]',
|
|
copied
|
|
? 'bg-success-500/20 text-success-400'
|
|
: 'bg-accent-500 text-white shadow-lg shadow-accent-500/25 hover:bg-accent-400',
|
|
)}
|
|
>
|
|
{copied ? (
|
|
<>
|
|
<CheckIcon className="h-4 w-4" />
|
|
{t('common.copied', 'Copied!')}
|
|
</>
|
|
) : (
|
|
<>
|
|
<CopyIcon className="h-4 w-4" />
|
|
{t('gift.copyMessage', 'Copy message')}
|
|
</>
|
|
)}
|
|
</button>
|
|
|
|
<button
|
|
type="button"
|
|
onClick={() => navigate('/gift?tab=myGifts')}
|
|
className="w-full rounded-xl border border-dark-700/50 px-6 py-3 text-sm font-medium text-dark-300 transition-colors hover:bg-dark-800/50"
|
|
>
|
|
{t('gift.tabMyGifts', 'My Gifts')}
|
|
</button>
|
|
</motion.div>
|
|
);
|
|
}
|
|
|
|
function DeliveredState({
|
|
recipientContact,
|
|
tariffName,
|
|
periodDays,
|
|
giftMessage,
|
|
warning,
|
|
}: {
|
|
recipientContact: string | null;
|
|
tariffName: string | null;
|
|
periodDays: number | null;
|
|
giftMessage: string | null;
|
|
warning: string | null;
|
|
}) {
|
|
const { t } = useTranslation();
|
|
const navigate = useNavigate();
|
|
|
|
return (
|
|
<motion.div
|
|
initial={{ opacity: 0, scale: 0.9 }}
|
|
animate={{ opacity: 1, scale: 1 }}
|
|
className="flex flex-col items-center gap-6 text-center"
|
|
>
|
|
<AnimatedCheckmark />
|
|
|
|
<div>
|
|
<h1 className="text-xl font-bold text-dark-50">{t('gift.successTitle', 'Gift sent!')}</h1>
|
|
{tariffName && periodDays !== null && (
|
|
<p className="mt-1 text-sm text-dark-300">
|
|
{tariffName} — {periodDays} {t('gift.days', 'days')}
|
|
</p>
|
|
)}
|
|
{recipientContact && (
|
|
<p className="mt-2 text-sm text-dark-400">
|
|
{t('gift.successDesc', {
|
|
contact: recipientContact,
|
|
defaultValue: `Sent to ${recipientContact}`,
|
|
})}
|
|
</p>
|
|
)}
|
|
{giftMessage && (
|
|
<p className="mt-2 text-sm italic text-dark-400">“{giftMessage}”</p>
|
|
)}
|
|
</div>
|
|
|
|
{warning && (
|
|
<div className="w-full rounded-xl border border-warning-500/20 bg-warning-500/5 p-3">
|
|
<p className="text-sm text-warning-400">{t(`gift.warning.${warning}`)}</p>
|
|
</div>
|
|
)}
|
|
|
|
<button
|
|
type="button"
|
|
onClick={() => navigate('/')}
|
|
className="flex w-full items-center justify-center rounded-xl bg-accent-500 px-6 py-3 text-sm font-medium text-white transition-colors hover:bg-accent-400"
|
|
>
|
|
{t('gift.backToDashboard', 'Back to dashboard')}
|
|
</button>
|
|
</motion.div>
|
|
);
|
|
}
|
|
|
|
function PendingActivationState({
|
|
recipientContact,
|
|
tariffName,
|
|
periodDays,
|
|
warning,
|
|
}: {
|
|
recipientContact: string | null;
|
|
tariffName: string | null;
|
|
periodDays: number | null;
|
|
warning: string | null;
|
|
}) {
|
|
const { t } = useTranslation();
|
|
const navigate = useNavigate();
|
|
|
|
return (
|
|
<motion.div
|
|
initial={{ opacity: 0, scale: 0.9 }}
|
|
animate={{ opacity: 1, scale: 1 }}
|
|
className="flex flex-col items-center gap-6 text-center"
|
|
>
|
|
{/* Info icon */}
|
|
<div className="flex h-20 w-20 items-center justify-center rounded-full bg-warning-500/10">
|
|
<InfoIcon className="h-10 w-10 text-warning-400" />
|
|
</div>
|
|
|
|
<div>
|
|
<h1 className="text-xl font-bold text-dark-50">
|
|
{t('gift.pendingActivationTitle', 'Gift pending activation')}
|
|
</h1>
|
|
{tariffName && periodDays !== null && (
|
|
<p className="mt-1 text-sm text-dark-300">
|
|
{tariffName} — {periodDays} {t('gift.days', 'days')}
|
|
</p>
|
|
)}
|
|
{recipientContact && (
|
|
<p className="mt-2 text-sm text-dark-400">
|
|
{t('gift.successDesc', {
|
|
contact: recipientContact,
|
|
defaultValue: `Sent to ${recipientContact}`,
|
|
})}
|
|
</p>
|
|
)}
|
|
<p className="mt-2 text-sm text-dark-400">
|
|
{t(
|
|
'gift.pendingActivationDesc',
|
|
'The recipient currently has an active subscription. Your gift will be activated once their current subscription expires.',
|
|
)}
|
|
</p>
|
|
</div>
|
|
|
|
{warning && (
|
|
<div className="w-full rounded-xl border border-warning-500/20 bg-warning-500/5 p-3">
|
|
<p className="text-sm text-warning-400">{t(`gift.warning.${warning}`)}</p>
|
|
</div>
|
|
)}
|
|
|
|
<button
|
|
type="button"
|
|
onClick={() => navigate('/')}
|
|
className="flex w-full items-center justify-center rounded-xl bg-accent-500 px-6 py-3 text-sm font-medium text-white transition-colors hover:bg-accent-400"
|
|
>
|
|
{t('gift.backToDashboard', 'Back to dashboard')}
|
|
</button>
|
|
</motion.div>
|
|
);
|
|
}
|
|
|
|
function FailedState() {
|
|
const { t } = useTranslation();
|
|
const navigate = useNavigate();
|
|
|
|
return (
|
|
<motion.div
|
|
initial={{ opacity: 0, scale: 0.9 }}
|
|
animate={{ opacity: 1, scale: 1 }}
|
|
className="flex flex-col items-center gap-6 text-center"
|
|
>
|
|
<AnimatedCrossmark />
|
|
|
|
<div>
|
|
<h1 className="text-xl font-bold text-dark-50">
|
|
{t('gift.failedTitle', 'Something went wrong')}
|
|
</h1>
|
|
<p className="mt-2 text-sm text-dark-400">
|
|
{t('gift.failedDesc', 'Your gift could not be processed. Please try again.')}
|
|
</p>
|
|
</div>
|
|
|
|
<button
|
|
type="button"
|
|
onClick={() => navigate('/gift')}
|
|
className="flex w-full items-center justify-center rounded-xl bg-accent-500 px-6 py-3 text-sm font-medium text-white transition-colors hover:bg-accent-400"
|
|
>
|
|
{t('gift.tryAgain', 'Try again')}
|
|
</button>
|
|
</motion.div>
|
|
);
|
|
}
|
|
|
|
function PollErrorState() {
|
|
const { t } = useTranslation();
|
|
const navigate = useNavigate();
|
|
|
|
return (
|
|
<motion.div
|
|
initial={{ opacity: 0, scale: 0.9 }}
|
|
animate={{ opacity: 1, scale: 1 }}
|
|
className="flex flex-col items-center gap-6 text-center"
|
|
>
|
|
<div className="flex h-20 w-20 items-center justify-center rounded-full bg-warning-500/10">
|
|
<ExclamationIcon className="h-10 w-10 text-warning-400" />
|
|
</div>
|
|
|
|
<div>
|
|
<h1 className="text-xl font-bold text-dark-50">
|
|
{t('gift.pollErrorTitle', 'Could not check gift status')}
|
|
</h1>
|
|
<p className="mt-2 text-sm text-dark-400">
|
|
{t(
|
|
'gift.pollErrorDesc',
|
|
'Your purchase was successful. Check your dashboard for details.',
|
|
)}
|
|
</p>
|
|
</div>
|
|
|
|
<button
|
|
type="button"
|
|
onClick={() => navigate('/')}
|
|
className="flex w-full items-center justify-center rounded-xl bg-accent-500 px-6 py-3 text-sm font-medium text-white transition-colors hover:bg-accent-400"
|
|
>
|
|
{t('gift.backToDashboard', 'Back to dashboard')}
|
|
</button>
|
|
</motion.div>
|
|
);
|
|
}
|
|
|
|
function PollTimedOutState({ onRetry }: { onRetry: () => void }) {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<motion.div
|
|
initial={{ opacity: 0, scale: 0.9 }}
|
|
animate={{ opacity: 1, scale: 1 }}
|
|
className="flex flex-col items-center gap-6 text-center"
|
|
>
|
|
<div className="flex h-20 w-20 items-center justify-center rounded-full bg-dark-800/50">
|
|
<ClockIcon className="h-10 w-10 text-dark-400" />
|
|
</div>
|
|
<div>
|
|
<h1 className="text-xl font-bold text-dark-50">
|
|
{t('gift.pollTimeout', 'Taking longer than expected')}
|
|
</h1>
|
|
<p className="mt-2 text-sm text-dark-400">
|
|
{t(
|
|
'gift.pollTimeoutDesc',
|
|
'Payment processing is taking longer than usual. You can try checking again.',
|
|
)}
|
|
</p>
|
|
</div>
|
|
<button
|
|
type="button"
|
|
onClick={onRetry}
|
|
className="rounded-xl bg-accent-500 px-6 py-3 text-sm font-medium text-white transition-colors hover:bg-accent-400"
|
|
>
|
|
{t('gift.retry', 'Retry')}
|
|
</button>
|
|
</motion.div>
|
|
);
|
|
}
|
|
|
|
function NoTokenState() {
|
|
const { t } = useTranslation();
|
|
const navigate = useNavigate();
|
|
|
|
return (
|
|
<motion.div
|
|
initial={{ opacity: 0, scale: 0.9 }}
|
|
animate={{ opacity: 1, scale: 1 }}
|
|
className="flex flex-col items-center gap-6 text-center"
|
|
>
|
|
<div className="flex h-20 w-20 items-center justify-center rounded-full bg-dark-800/50">
|
|
<ExclamationIcon className="h-10 w-10 text-dark-400" />
|
|
</div>
|
|
<div>
|
|
<h1 className="text-xl font-bold text-dark-50">{t('gift.noToken', 'Invalid link')}</h1>
|
|
<p className="mt-2 text-sm text-dark-400">
|
|
{t('gift.noTokenDesc', 'This gift link is invalid or has expired.')}
|
|
</p>
|
|
</div>
|
|
<button
|
|
type="button"
|
|
onClick={() => navigate('/gift')}
|
|
className="rounded-xl bg-accent-500 px-6 py-3 text-sm font-medium text-white transition-colors hover:bg-accent-400"
|
|
>
|
|
{t('gift.backToGift', 'Go back')}
|
|
</button>
|
|
</motion.div>
|
|
);
|
|
}
|
|
|
|
// ============================================================
|
|
// Main Component
|
|
// ============================================================
|
|
|
|
export default function GiftResult() {
|
|
const [searchParams] = useSearchParams();
|
|
const token = searchParams.get('token');
|
|
const mode = searchParams.get('mode');
|
|
const rawUrlWarning = searchParams.get('warning');
|
|
const urlWarning = rawUrlWarning && KNOWN_WARNINGS.has(rawUrlWarning) ? rawUrlWarning : null;
|
|
|
|
const pollStart = useRef(Date.now());
|
|
const [pollTimedOut, setPollTimedOut] = useState(false);
|
|
|
|
const isBalanceMode = mode === 'balance';
|
|
|
|
const {
|
|
data: status,
|
|
isError,
|
|
refetch,
|
|
} = useQuery({
|
|
queryKey: ['gift-status', token],
|
|
queryFn: () => giftApi.getPurchaseStatus(token!),
|
|
enabled: !!token && !pollTimedOut,
|
|
refetchInterval: (query) => {
|
|
// Balance mode: fetch once, no polling
|
|
if (isBalanceMode) return false;
|
|
|
|
const d = query.state.data;
|
|
const s = d?.status;
|
|
if (s === 'delivered' || s === 'failed' || s === 'pending_activation' || s === 'expired')
|
|
return false;
|
|
// Code-only gifts stay in 'paid' status — stop polling
|
|
if (s === 'paid' && d?.is_code_only) return false;
|
|
|
|
// Check poll timeout
|
|
if (Date.now() - pollStart.current > MAX_POLL_MS) {
|
|
setPollTimedOut(true);
|
|
return false;
|
|
}
|
|
|
|
return 3000;
|
|
},
|
|
retry: 2,
|
|
});
|
|
|
|
const handleRetryPoll = useCallback(() => {
|
|
pollStart.current = Date.now();
|
|
setPollTimedOut(false);
|
|
refetch();
|
|
}, [refetch]);
|
|
|
|
// No token
|
|
if (!token) {
|
|
return (
|
|
<div className="flex min-h-dvh items-center justify-center px-4">
|
|
<div
|
|
className="w-full max-w-md rounded-2xl border border-dark-800/50 bg-dark-900/50 p-8"
|
|
aria-live="polite"
|
|
aria-atomic="true"
|
|
>
|
|
<NoTokenState />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const isCodeOnlyPaid =
|
|
status?.status === 'paid' && status?.is_code_only && status?.purchase_token != null;
|
|
const isDelivered = status?.status === 'delivered';
|
|
const isPendingActivation = status?.status === 'pending_activation';
|
|
const isFailed = status?.status === 'failed' || status?.status === 'expired';
|
|
|
|
// Warning from status response (persisted on purchase) takes priority over URL param
|
|
const statusWarning =
|
|
status?.warning && KNOWN_WARNINGS.has(status.warning) ? status.warning : null;
|
|
const warning = statusWarning ?? urlWarning;
|
|
|
|
return (
|
|
<div className="flex min-h-dvh items-center justify-center px-4">
|
|
<div
|
|
className="w-full max-w-md rounded-2xl border border-dark-800/50 bg-dark-900/50 p-8"
|
|
aria-live="polite"
|
|
aria-atomic="true"
|
|
>
|
|
{isError ? (
|
|
<PollErrorState />
|
|
) : isCodeOnlyPaid ? (
|
|
<CodeOnlySuccessState
|
|
purchaseToken={status.purchase_token!}
|
|
tariffName={status.tariff_name}
|
|
periodDays={status.period_days}
|
|
/>
|
|
) : isDelivered ? (
|
|
<DeliveredState
|
|
recipientContact={status.recipient_contact_value}
|
|
tariffName={status.tariff_name}
|
|
periodDays={status.period_days}
|
|
giftMessage={status.gift_message}
|
|
warning={warning}
|
|
/>
|
|
) : isPendingActivation ? (
|
|
<PendingActivationState
|
|
recipientContact={status.recipient_contact_value}
|
|
tariffName={status.tariff_name}
|
|
periodDays={status.period_days}
|
|
warning={warning}
|
|
/>
|
|
) : isFailed ? (
|
|
<FailedState />
|
|
) : pollTimedOut ? (
|
|
<PollTimedOutState onRetry={handleRetryPoll} />
|
|
) : (
|
|
<PendingState />
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|