mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-28 09:33:46 +00:00
- Add per-landing analytics goals (view/click) with admin editor toggle - Add sticky pay button option for mobile landing pages - Add daily purchases bar chart (created vs paid) to landing stats - Replace single purchase count with created/paid split in stats summary - Add referrer tracking to purchases with hostname display in stats - Add time display to purchase cards alongside date - Pass user timezone to stats API for correct daily grouping - Clamp referrer (500 chars) and subid (255 chars) to backend limits - Persist contact value per-landing-slug in localStorage - Fire buy_success analytics goal on successful delivery - Export USER_TIMEZONE from format utils - Add analytics/stats translations for fa.json and zh.json locales Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
776 lines
25 KiB
TypeScript
776 lines
25 KiB
TypeScript
import { useState, useCallback, useRef, useEffect } from 'react';
|
|
import { useParams, useNavigate, useSearchParams } from 'react-router';
|
|
import { useQuery, useQueryClient } from '@tanstack/react-query';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { motion } from 'framer-motion';
|
|
import { QRCodeSVG } from 'qrcode.react';
|
|
import { landingApi } from '../api/landings';
|
|
import { authApi } from '../api/auth';
|
|
import { useAuthStore } from '../store/auth';
|
|
import { copyToClipboard } from '../utils/clipboard';
|
|
import { Spinner } from '@/components/ui/Spinner';
|
|
import { AnimatedCheckmark } from '@/components/ui/AnimatedCheckmark';
|
|
import { AnimatedCrossmark } from '@/components/ui/AnimatedCrossmark';
|
|
import { cn } from '../lib/utils';
|
|
|
|
const MAX_POLL_MS = 10 * 60 * 1000; // 10 minutes
|
|
|
|
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('landing.awaitingPayment', 'Awaiting payment')}
|
|
</h1>
|
|
<p className="mt-2 text-sm text-dark-400">{t('landing.awaitingPaymentDesc')}</p>
|
|
</div>
|
|
</motion.div>
|
|
);
|
|
}
|
|
|
|
function CopyableField({ label, value }: { label: string; value: string }) {
|
|
const { t } = useTranslation();
|
|
const [copied, setCopied] = useState(false);
|
|
const timeoutRef = useRef<ReturnType<typeof setTimeout>>(undefined);
|
|
|
|
useEffect(() => {
|
|
return () => {
|
|
if (timeoutRef.current) clearTimeout(timeoutRef.current);
|
|
};
|
|
}, []);
|
|
|
|
const handleCopy = useCallback(async () => {
|
|
try {
|
|
await copyToClipboard(value);
|
|
setCopied(true);
|
|
if (timeoutRef.current) clearTimeout(timeoutRef.current);
|
|
timeoutRef.current = setTimeout(() => setCopied(false), 2000);
|
|
} catch {
|
|
// Clipboard write failed silently
|
|
}
|
|
}, [value]);
|
|
|
|
return (
|
|
<div className="flex items-center gap-2 rounded-xl bg-dark-800/50 px-4 py-3">
|
|
<div className="flex-1 text-left">
|
|
<p className="text-xs text-dark-400">{label}</p>
|
|
<p className="mt-0.5 font-mono text-sm text-dark-100">{value}</p>
|
|
</div>
|
|
<button
|
|
type="button"
|
|
onClick={handleCopy}
|
|
className={cn(
|
|
'shrink-0 rounded-lg px-3 py-1.5 text-xs font-medium transition-colors',
|
|
copied
|
|
? 'bg-success-500/10 text-success-500'
|
|
: 'bg-dark-700/50 text-dark-300 hover:bg-dark-600/50',
|
|
)}
|
|
>
|
|
{copied ? t('landing.copied', 'Copied!') : t('landing.copy', 'Copy')}
|
|
</button>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function CabinetCredentialsState({
|
|
cabinetEmail,
|
|
cabinetPassword,
|
|
autoLoginToken,
|
|
tariffName,
|
|
periodDays,
|
|
}: {
|
|
cabinetEmail: string;
|
|
cabinetPassword: string | null;
|
|
autoLoginToken: string | null;
|
|
tariffName: string | null;
|
|
periodDays: number | null;
|
|
}) {
|
|
const { t } = useTranslation();
|
|
const navigate = useNavigate();
|
|
const { setTokens, setUser, checkAdminStatus } = useAuthStore();
|
|
const [isLoggingIn, setIsLoggingIn] = useState(false);
|
|
const [loginError, setLoginError] = useState(false);
|
|
|
|
const handleGoToCabinet = useCallback(async () => {
|
|
if (!autoLoginToken) {
|
|
navigate('/login');
|
|
return;
|
|
}
|
|
setIsLoggingIn(true);
|
|
setLoginError(false);
|
|
try {
|
|
const response = await authApi.autoLogin(autoLoginToken);
|
|
setTokens(response.access_token, response.refresh_token);
|
|
setUser(response.user);
|
|
await checkAdminStatus();
|
|
navigate('/');
|
|
} catch {
|
|
setLoginError(true);
|
|
setIsLoggingIn(false);
|
|
}
|
|
}, [autoLoginToken, navigate, setTokens, setUser, checkAdminStatus]);
|
|
|
|
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 />
|
|
|
|
{/* Title */}
|
|
<div>
|
|
<h1 className="text-xl font-bold text-dark-50">{t('landing.cabinetReady')}</h1>
|
|
{tariffName && periodDays !== null && (
|
|
<p className="mt-1 text-sm text-dark-300">
|
|
{tariffName} — {periodDays} {t('landing.daysAccess')}
|
|
</p>
|
|
)}
|
|
</div>
|
|
|
|
{/* Credentials */}
|
|
<div className="w-full space-y-3">
|
|
<CopyableField label={t('landing.cabinetEmail')} value={cabinetEmail} />
|
|
{cabinetPassword && (
|
|
<CopyableField label={t('landing.cabinetPassword')} value={cabinetPassword} />
|
|
)}
|
|
{cabinetPassword && <p className="text-xs text-dark-400">{t('landing.saveCredentials')}</p>}
|
|
{!cabinetPassword && (
|
|
<p className="text-xs text-dark-400">{t('landing.credentialsSentToEmail')}</p>
|
|
)}
|
|
</div>
|
|
|
|
{/* Go to Cabinet button */}
|
|
<button
|
|
type="button"
|
|
onClick={handleGoToCabinet}
|
|
disabled={isLoggingIn}
|
|
className={cn(
|
|
'flex w-full items-center justify-center gap-2 rounded-xl px-6 py-3 text-sm font-medium text-white transition-colors',
|
|
isLoggingIn ? 'cursor-not-allowed bg-accent-500/50' : 'bg-accent-500 hover:bg-accent-400',
|
|
)}
|
|
>
|
|
{isLoggingIn ? (
|
|
<>
|
|
<Spinner className="h-4 w-4" />
|
|
{t('landing.autoLoginProcessing')}
|
|
</>
|
|
) : (
|
|
t('landing.goToCabinet')
|
|
)}
|
|
</button>
|
|
{loginError && <p className="text-xs text-error-400">{t('landing.autoLoginFailed')}</p>}
|
|
</motion.div>
|
|
);
|
|
}
|
|
|
|
function SuccessState({
|
|
subscriptionUrl,
|
|
cryptoLink,
|
|
contactValue,
|
|
recipientContactValue,
|
|
tariffName,
|
|
periodDays,
|
|
isGift,
|
|
giftMessage,
|
|
recipientInBot,
|
|
botLink,
|
|
contactType,
|
|
}: {
|
|
subscriptionUrl: string | null;
|
|
cryptoLink: string | null;
|
|
contactValue: string | null;
|
|
recipientContactValue: string | null;
|
|
tariffName: string | null;
|
|
periodDays: number | null;
|
|
isGift: boolean;
|
|
giftMessage: string | null;
|
|
recipientInBot: boolean | null;
|
|
botLink: string | null;
|
|
contactType: string | null;
|
|
}) {
|
|
const { t } = useTranslation();
|
|
const [copied, setCopied] = useState(false);
|
|
const copyTimeoutRef = useRef<ReturnType<typeof setTimeout>>(undefined);
|
|
|
|
useEffect(() => {
|
|
return () => {
|
|
if (copyTimeoutRef.current) clearTimeout(copyTimeoutRef.current);
|
|
};
|
|
}, []);
|
|
|
|
const handleCopy = useCallback(async () => {
|
|
const url = subscriptionUrl ?? cryptoLink;
|
|
if (!url) return;
|
|
|
|
try {
|
|
await copyToClipboard(url);
|
|
setCopied(true);
|
|
if (copyTimeoutRef.current) clearTimeout(copyTimeoutRef.current);
|
|
copyTimeoutRef.current = setTimeout(() => setCopied(false), 2000);
|
|
} catch {
|
|
// Clipboard write failed silently
|
|
}
|
|
}, [subscriptionUrl, cryptoLink]);
|
|
|
|
const displayUrl = subscriptionUrl ?? cryptoLink;
|
|
const displayContact = isGift ? recipientContactValue : contactValue;
|
|
|
|
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 />
|
|
|
|
{/* Title */}
|
|
<div>
|
|
<h1 className="text-xl font-bold text-dark-50">
|
|
{isGift ? t('landing.giftSentSuccess') : t('landing.purchaseSuccess')}
|
|
</h1>
|
|
{tariffName && periodDays !== null && (
|
|
<p className="mt-1 text-sm text-dark-300">
|
|
{tariffName} — {periodDays} {t('landing.daysAccess')}
|
|
</p>
|
|
)}
|
|
{isGift && contactType === 'telegram' && recipientInBot === true && (
|
|
<p className="mt-2 text-sm text-dark-400">{t('landing.giftTelegramSent')}</p>
|
|
)}
|
|
{isGift && contactType === 'telegram' && recipientInBot !== true && (
|
|
<p className="mt-2 text-sm text-dark-400">{t('landing.giftTelegramNotInBot')}</p>
|
|
)}
|
|
{!(isGift && contactType === 'telegram') && displayContact && (
|
|
<p className="mt-2 text-sm text-dark-400">
|
|
{isGift
|
|
? t('landing.giftSentTo', { contact: displayContact })
|
|
: t('landing.keySentTo', { contact: displayContact })}
|
|
</p>
|
|
)}
|
|
{isGift && giftMessage && (
|
|
<p className="mt-2 text-sm italic text-dark-400">
|
|
{t('landing.giftMessage')}: {giftMessage}
|
|
</p>
|
|
)}
|
|
</div>
|
|
|
|
{/* Bot link for telegram gifts where recipient is not in bot */}
|
|
{isGift && contactType === 'telegram' && recipientInBot !== true && botLink && (
|
|
<a
|
|
href={botLink}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="flex w-full items-center justify-center gap-2 rounded-xl bg-accent-500 px-6 py-3 text-sm font-medium text-white transition-colors hover:bg-accent-400"
|
|
>
|
|
{t('landing.openBot')}
|
|
</a>
|
|
)}
|
|
|
|
{/* QR Code */}
|
|
{displayUrl && (
|
|
<div className="space-y-4">
|
|
<div className="rounded-2xl bg-white p-5">
|
|
<QRCodeSVG
|
|
value={displayUrl}
|
|
size={200}
|
|
level="M"
|
|
includeMargin={false}
|
|
className="h-[200px] w-[200px]"
|
|
/>
|
|
</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 text-sm font-medium transition-all duration-200',
|
|
copied
|
|
? 'bg-success-500/10 text-success-500'
|
|
: 'bg-dark-800/50 text-dark-200 hover:bg-dark-700/50',
|
|
)}
|
|
>
|
|
{copied ? (
|
|
<>
|
|
<svg
|
|
className="h-4 w-4"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
strokeWidth={2}
|
|
>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M5 13l4 4L19 7" />
|
|
</svg>
|
|
{t('landing.copied', 'Copied!')}
|
|
</>
|
|
) : (
|
|
<>
|
|
<svg
|
|
className="h-4 w-4"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
strokeWidth={1.5}
|
|
>
|
|
<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.75H9.75a.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>
|
|
{t('landing.copyLink', 'Copy link')}
|
|
</>
|
|
)}
|
|
</button>
|
|
</div>
|
|
)}
|
|
</motion.div>
|
|
);
|
|
}
|
|
|
|
function PendingActivationState({
|
|
tariffName,
|
|
periodDays,
|
|
giftMessage,
|
|
isGift,
|
|
isActivating,
|
|
onActivate,
|
|
autoLoginToken,
|
|
}: {
|
|
tariffName: string | null;
|
|
periodDays: number | null;
|
|
giftMessage: string | null;
|
|
isGift: boolean;
|
|
isActivating: boolean;
|
|
onActivate: () => void;
|
|
autoLoginToken: string | null;
|
|
}) {
|
|
const { t } = useTranslation();
|
|
const navigate = useNavigate();
|
|
const { setTokens, setUser, checkAdminStatus } = useAuthStore();
|
|
const [isLoggingIn, setIsLoggingIn] = useState(false);
|
|
|
|
const handleGoToCabinet = useCallback(async () => {
|
|
if (!autoLoginToken) {
|
|
navigate('/login');
|
|
return;
|
|
}
|
|
setIsLoggingIn(true);
|
|
try {
|
|
const response = await authApi.autoLogin(autoLoginToken);
|
|
setTokens(response.access_token, response.refresh_token);
|
|
setUser(response.user);
|
|
await checkAdminStatus();
|
|
navigate('/');
|
|
} catch {
|
|
setIsLoggingIn(false);
|
|
navigate('/login');
|
|
}
|
|
}, [autoLoginToken, navigate, setTokens, setUser, checkAdminStatus]);
|
|
|
|
return (
|
|
<motion.div
|
|
initial={{ opacity: 0, scale: 0.9 }}
|
|
animate={{ opacity: 1, scale: 1 }}
|
|
className="flex flex-col items-center gap-6 text-center"
|
|
>
|
|
{/* Warning icon */}
|
|
<div className="flex h-20 w-20 items-center justify-center rounded-full bg-warning-500/10">
|
|
<svg
|
|
className="h-10 w-10 text-warning-400"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
strokeWidth={2}
|
|
>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
d="M12 9v3.75m-9.303 3.376c-.866 1.5.217 3.374 1.948 3.374h14.71c1.73 0 2.813-1.874 1.948-3.374L13.949 3.378c-.866-1.5-3.032-1.5-3.898 0L2.697 16.126zM12 15.75h.007v.008H12v-.008z"
|
|
/>
|
|
</svg>
|
|
</div>
|
|
|
|
<div>
|
|
<h1 className="text-xl font-bold text-dark-50">{t('landing.pendingActivation')}</h1>
|
|
{tariffName && periodDays !== null && (
|
|
<p className="mt-1 text-sm text-dark-300">
|
|
{tariffName} — {periodDays} {t('landing.daysAccess')}
|
|
</p>
|
|
)}
|
|
<p className="mt-2 text-sm text-dark-400">{t('landing.pendingActivationDesc')}</p>
|
|
{isGift && giftMessage && (
|
|
<p className="mt-2 text-sm italic text-dark-400">
|
|
{t('landing.giftMessage')}: {giftMessage}
|
|
</p>
|
|
)}
|
|
</div>
|
|
|
|
<div className="flex w-full flex-col gap-3">
|
|
<button
|
|
type="button"
|
|
onClick={onActivate}
|
|
disabled={isActivating}
|
|
className={cn(
|
|
'flex items-center justify-center gap-2 rounded-xl px-6 py-3 text-sm font-medium text-white transition-colors',
|
|
isActivating
|
|
? 'cursor-not-allowed bg-accent-500/50'
|
|
: 'bg-accent-500 hover:bg-accent-400',
|
|
)}
|
|
>
|
|
{isActivating ? (
|
|
<>
|
|
<Spinner className="h-4 w-4" />
|
|
{t('landing.activating')}
|
|
</>
|
|
) : (
|
|
t('landing.activateNow')
|
|
)}
|
|
</button>
|
|
|
|
{autoLoginToken && (
|
|
<button
|
|
type="button"
|
|
onClick={handleGoToCabinet}
|
|
disabled={isLoggingIn}
|
|
className={cn(
|
|
'flex items-center justify-center gap-2 rounded-xl px-6 py-3 text-sm font-medium transition-colors',
|
|
isLoggingIn
|
|
? 'cursor-not-allowed bg-dark-800/30 text-dark-400'
|
|
: 'bg-dark-800/50 text-dark-200 hover:bg-dark-700/50',
|
|
)}
|
|
>
|
|
{isLoggingIn ? (
|
|
<>
|
|
<Spinner className="h-4 w-4" />
|
|
{t('landing.autoLoginProcessing')}
|
|
</>
|
|
) : (
|
|
t('landing.goToCabinet')
|
|
)}
|
|
</button>
|
|
)}
|
|
</div>
|
|
</motion.div>
|
|
);
|
|
}
|
|
|
|
function GiftPendingActivationState({
|
|
tariffName,
|
|
periodDays,
|
|
recipientContactValue,
|
|
giftMessage,
|
|
recipientInBot,
|
|
botLink,
|
|
contactType,
|
|
}: {
|
|
tariffName: string | null;
|
|
periodDays: number | null;
|
|
recipientContactValue: string | null;
|
|
giftMessage: string | null;
|
|
recipientInBot: boolean | null;
|
|
botLink: string | null;
|
|
contactType: string | null;
|
|
}) {
|
|
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"
|
|
>
|
|
<AnimatedCheckmark />
|
|
|
|
<div>
|
|
<h1 className="text-xl font-bold text-dark-50">{t('landing.giftSentSuccess')}</h1>
|
|
{tariffName && periodDays !== null && (
|
|
<p className="mt-1 text-sm text-dark-300">
|
|
{tariffName} — {periodDays} {t('landing.daysAccess')}
|
|
</p>
|
|
)}
|
|
{contactType === 'telegram' && recipientInBot === true && (
|
|
<p className="mt-2 text-sm text-dark-400">{t('landing.giftTelegramPendingSent')}</p>
|
|
)}
|
|
{contactType === 'telegram' && recipientInBot !== true && (
|
|
<p className="mt-2 text-sm text-dark-400">{t('landing.giftTelegramPendingNotInBot')}</p>
|
|
)}
|
|
{contactType !== 'telegram' && (
|
|
<p className="mt-2 text-sm text-dark-400">{t('landing.giftPendingActivationDesc')}</p>
|
|
)}
|
|
{contactType !== 'telegram' && recipientContactValue && (
|
|
<p className="mt-2 text-sm text-dark-400">
|
|
{t('landing.giftSentTo', { contact: recipientContactValue })}
|
|
</p>
|
|
)}
|
|
{giftMessage && (
|
|
<p className="mt-2 text-sm italic text-dark-400">
|
|
{t('landing.giftMessage')}: {giftMessage}
|
|
</p>
|
|
)}
|
|
</div>
|
|
|
|
{/* Bot link for telegram gifts where recipient is not in bot */}
|
|
{contactType === 'telegram' && recipientInBot !== true && botLink && (
|
|
<a
|
|
href={botLink}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="flex w-full items-center justify-center gap-2 rounded-xl bg-accent-500 px-6 py-3 text-sm font-medium text-white transition-colors hover:bg-accent-400"
|
|
>
|
|
{t('landing.openBot')}
|
|
</a>
|
|
)}
|
|
</motion.div>
|
|
);
|
|
}
|
|
|
|
function FailedState() {
|
|
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"
|
|
>
|
|
<AnimatedCrossmark />
|
|
<div>
|
|
<h1 className="text-xl font-bold text-dark-50">{t('landing.purchaseFailed')}</h1>
|
|
<p className="mt-2 text-sm text-dark-400">{t('landing.purchaseFailedDesc')}</p>
|
|
</div>
|
|
</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">
|
|
<svg
|
|
className="h-10 w-10 text-dark-400"
|
|
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>
|
|
</div>
|
|
<div>
|
|
<h1 className="text-xl font-bold text-dark-50">
|
|
{t('landing.pollTimedOut', 'Taking longer than expected')}
|
|
</h1>
|
|
<p className="mt-2 text-sm text-dark-400">
|
|
{t(
|
|
'landing.pollTimedOutDesc',
|
|
'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('common.retry', 'Retry')}
|
|
</button>
|
|
</motion.div>
|
|
);
|
|
}
|
|
|
|
export default function PurchaseSuccess() {
|
|
const { t } = useTranslation();
|
|
const { token } = useParams<{ token: string }>();
|
|
const [searchParams] = useSearchParams();
|
|
const isActivateHint = searchParams.get('activate') === '1';
|
|
const pollStart = useRef(Date.now());
|
|
const [pollTimedOut, setPollTimedOut] = useState(false);
|
|
const [isActivating, setIsActivating] = useState(false);
|
|
const [activationError, setActivationError] = useState(false);
|
|
const activatingRef = useRef(false);
|
|
|
|
// Referrer-Policy: prevent leaking payment token via referer header
|
|
useEffect(() => {
|
|
const meta = document.createElement('meta');
|
|
meta.name = 'referrer';
|
|
meta.content = 'no-referrer';
|
|
document.head.appendChild(meta);
|
|
return () => {
|
|
document.head.removeChild(meta);
|
|
};
|
|
}, []);
|
|
|
|
const queryClient = useQueryClient();
|
|
|
|
const {
|
|
data: purchaseStatus,
|
|
isError,
|
|
refetch,
|
|
} = useQuery({
|
|
queryKey: ['purchase-status', token],
|
|
queryFn: () => landingApi.getPurchaseStatus(token!),
|
|
enabled: !!token && !pollTimedOut,
|
|
refetchInterval: (query) => {
|
|
const currentStatus = query.state.data?.status;
|
|
if (currentStatus === 'pending' || currentStatus === 'paid') {
|
|
if (Date.now() - pollStart.current > MAX_POLL_MS) {
|
|
setPollTimedOut(true);
|
|
return false;
|
|
}
|
|
return 3_000;
|
|
}
|
|
return false;
|
|
},
|
|
retry: 2,
|
|
});
|
|
|
|
const handleRetryPoll = useCallback(() => {
|
|
pollStart.current = Date.now();
|
|
setPollTimedOut(false);
|
|
refetch();
|
|
}, [refetch]);
|
|
|
|
const handleActivate = useCallback(async () => {
|
|
if (!token || activatingRef.current) return;
|
|
activatingRef.current = true;
|
|
setIsActivating(true);
|
|
setActivationError(false);
|
|
try {
|
|
const result = await landingApi.activatePurchase(token);
|
|
queryClient.setQueryData(['purchase-status', token], result);
|
|
} catch {
|
|
setActivationError(true);
|
|
} finally {
|
|
activatingRef.current = false;
|
|
setIsActivating(false);
|
|
}
|
|
}, [token, queryClient]);
|
|
|
|
const isSuccess = purchaseStatus?.status === 'delivered';
|
|
|
|
// Fire analytics goal on successful delivery (once per purchase).
|
|
// Idempotency keyed by token so a page refresh doesn't double-count.
|
|
useEffect(() => {
|
|
if (!isSuccess || !token) return;
|
|
const FIRED_KEY = `ym_buy_success_${token}`;
|
|
try {
|
|
if (localStorage.getItem(FIRED_KEY)) return;
|
|
} catch {
|
|
/* ignore */
|
|
}
|
|
try {
|
|
const counterId = localStorage.getItem('ym_counter_id');
|
|
const w = window as unknown as Record<string, unknown>;
|
|
if (counterId && typeof w.ym === 'function') {
|
|
(w.ym as (...args: unknown[]) => void)(Number(counterId), 'reachGoal', 'buy_success');
|
|
try {
|
|
localStorage.setItem(FIRED_KEY, '1');
|
|
} catch {
|
|
/* ignore */
|
|
}
|
|
}
|
|
} catch {
|
|
/* analytics error */
|
|
}
|
|
}, [isSuccess, token]);
|
|
|
|
const isPendingActivation = purchaseStatus?.status === 'pending_activation';
|
|
const isFailed = purchaseStatus?.status === 'failed' || purchaseStatus?.status === 'expired';
|
|
|
|
// Gift pending activation → buyer sees "gift sent" message, not the activate button.
|
|
// Recipient arrives via email link with ?activate=1 and sees the activate button instead.
|
|
const isGiftPendingActivation = isPendingActivation && purchaseStatus?.is_gift && !isActivateHint;
|
|
|
|
// Email self-purchase delivered → show cabinet credentials
|
|
const isEmailSelfPurchase =
|
|
isSuccess &&
|
|
purchaseStatus.contact_type === 'email' &&
|
|
!purchaseStatus.is_gift &&
|
|
purchaseStatus.cabinet_email;
|
|
|
|
return (
|
|
<div className="flex min-h-dvh items-center justify-center bg-dark-950 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 ? (
|
|
<FailedState />
|
|
) : isEmailSelfPurchase ? (
|
|
<CabinetCredentialsState
|
|
cabinetEmail={purchaseStatus.cabinet_email!}
|
|
cabinetPassword={purchaseStatus.cabinet_password}
|
|
autoLoginToken={purchaseStatus.auto_login_token}
|
|
tariffName={purchaseStatus.tariff_name}
|
|
periodDays={purchaseStatus.period_days}
|
|
/>
|
|
) : isSuccess ? (
|
|
<SuccessState
|
|
subscriptionUrl={purchaseStatus.subscription_url}
|
|
cryptoLink={purchaseStatus.subscription_crypto_link}
|
|
contactValue={purchaseStatus.contact_value}
|
|
recipientContactValue={purchaseStatus.recipient_contact_value}
|
|
tariffName={purchaseStatus.tariff_name}
|
|
periodDays={purchaseStatus.period_days}
|
|
isGift={purchaseStatus.is_gift}
|
|
giftMessage={purchaseStatus.gift_message}
|
|
recipientInBot={purchaseStatus.recipient_in_bot}
|
|
botLink={purchaseStatus.bot_link}
|
|
contactType={purchaseStatus.contact_type}
|
|
/>
|
|
) : isGiftPendingActivation ? (
|
|
<GiftPendingActivationState
|
|
tariffName={purchaseStatus.tariff_name}
|
|
periodDays={purchaseStatus.period_days}
|
|
recipientContactValue={purchaseStatus.recipient_contact_value}
|
|
giftMessage={purchaseStatus.gift_message}
|
|
recipientInBot={purchaseStatus.recipient_in_bot}
|
|
botLink={purchaseStatus.bot_link}
|
|
contactType={purchaseStatus.contact_type}
|
|
/>
|
|
) : isPendingActivation ? (
|
|
<div className="space-y-4">
|
|
<PendingActivationState
|
|
tariffName={purchaseStatus.tariff_name}
|
|
periodDays={purchaseStatus.period_days}
|
|
giftMessage={purchaseStatus.gift_message}
|
|
isGift={purchaseStatus.is_gift}
|
|
isActivating={isActivating}
|
|
onActivate={handleActivate}
|
|
autoLoginToken={purchaseStatus.auto_login_token}
|
|
/>
|
|
{activationError && (
|
|
<p className="text-center text-sm text-error-400">{t('landing.activationFailed')}</p>
|
|
)}
|
|
</div>
|
|
) : isFailed ? (
|
|
<FailedState />
|
|
) : pollTimedOut ? (
|
|
<PollTimedOutState onRetry={handleRetryPoll} />
|
|
) : (
|
|
<PendingState />
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|