mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-09-13 16:23:08 +00:00
Дополнения к PR #539 при мерже. Кнопка «Назад к входу через виджет» оставляла пустое место. Пока открыт deep-link-экран, контейнер виджета размонтирован ранним return'ом, а эффект, который вставляет скрипт Telegram, от этого не перезапускается: его зависимости не меняются. Единственная зависимость, способная дрогнуть, — handleScriptFailed через scriptLoaded, но на legacy-пути scriptLoaded не выставляется никогда (только в OIDC-ветке). Так что при возврате контейнер монтировался обратно уже пустым, и войти через виджет было нельзя до перезагрузки страницы. Добавлен showDeepLinkUI в зависимости и ранний выход: на входе в deep-link отрабатывает cleanup, на выходе скрипт вставляется заново. Локали были только en и ru, а в кабинете их четыре. fallbackLng — 'ru', поэтому персидские и китайские пользователи увидели бы русский текст на самом первом экране. Именно этот класс регрессии описан в шапке locales.test.ts, и поймать его тест не может: он сравнивает только en и ru. Добавлены fa и zh; в zh термин «виджет» приведён к тому же 小部件, что уже используется в telegramWidgetBlocked.
632 lines
26 KiB
TypeScript
632 lines
26 KiB
TypeScript
import { useEffect, useRef, useState, useCallback } from 'react';
|
||
import { useTranslation } from 'react-i18next';
|
||
import { useQuery } from '@tanstack/react-query';
|
||
import { isAxiosError } from 'axios';
|
||
import { QRCodeSVG } from 'qrcode.react';
|
||
import { brandingApi, type TelegramWidgetConfig } from '../api/branding';
|
||
import { authApi } from '../api/auth';
|
||
import { useAuthStore } from '../store/auth';
|
||
import { useNavigate } from 'react-router';
|
||
import { getPendingCampaignSlug } from '../utils/campaign';
|
||
import { copyToClipboard } from '../utils/clipboard';
|
||
import { isEndpointMissingError } from '../utils/api-error';
|
||
|
||
interface TelegramLoginButtonProps {
|
||
referralCode?: string;
|
||
}
|
||
|
||
const SCRIPT_LOAD_TIMEOUT_MS = 2000;
|
||
const DEEPLINK_POLL_INTERVAL_MS = 2500;
|
||
|
||
export default function TelegramLoginButton({ referralCode }: TelegramLoginButtonProps) {
|
||
const { t } = useTranslation();
|
||
const navigate = useNavigate();
|
||
const containerRef = useRef<HTMLDivElement>(null);
|
||
const [oidcLoading, setOidcLoading] = useState(false);
|
||
const [oidcError, setOidcError] = useState('');
|
||
const [scriptLoaded, setScriptLoaded] = useState(false);
|
||
const [scriptFailed, setScriptFailed] = useState(false);
|
||
// Lets the user opt into deep-link auth manually, without waiting for the
|
||
// Telegram widget script to fail. See #<issue-number>.
|
||
const [manualDeepLink, setManualDeepLink] = useState(false);
|
||
const showDeepLinkUI = scriptFailed || manualDeepLink;
|
||
const loginWithTelegramOIDC = useAuthStore((s) => s.loginWithTelegramOIDC);
|
||
|
||
// Deep link auth state
|
||
const [deepLinkToken, setDeepLinkToken] = useState<string | null>(null);
|
||
const [deepLinkBotUsername, setDeepLinkBotUsername] = useState<string>('');
|
||
const [deepLinkPolling, setDeepLinkPolling] = useState(false);
|
||
const [deepLinkError, setDeepLinkError] = useState('');
|
||
const [copied, setCopied] = useState(false);
|
||
const pollTimeoutRef = useRef<ReturnType<typeof setTimeout>>(null);
|
||
const expireTimeoutRef = useRef<ReturnType<typeof setTimeout>>(null);
|
||
const copiedTimeoutRef = useRef<ReturnType<typeof setTimeout>>(null);
|
||
const pollInFlightRef = useRef(false);
|
||
|
||
const loginWithDeepLink = useAuthStore((s) => s.loginWithDeepLink);
|
||
|
||
// Capture campaign slug once on mount (before any retry clears it)
|
||
const capturedCampaignRef = useRef<string | null>(null);
|
||
const codesConsumedRef = useRef(false);
|
||
|
||
const { data: widgetConfig } = useQuery<TelegramWidgetConfig>({
|
||
queryKey: ['telegram-widget-config'],
|
||
queryFn: brandingApi.getTelegramWidgetConfig,
|
||
staleTime: 60000,
|
||
});
|
||
|
||
const botUsername =
|
||
widgetConfig?.bot_username || import.meta.env.VITE_TELEGRAM_BOT_USERNAME || '';
|
||
const isOIDC = Boolean(widgetConfig?.oidc_enabled && widgetConfig?.oidc_client_id);
|
||
|
||
// OIDC callback handler
|
||
const handleOIDCCallbackRef =
|
||
useRef<(data: { id_token?: string; error?: string }) => void>(undefined);
|
||
const mountedRef = useRef(true);
|
||
|
||
useEffect(() => {
|
||
mountedRef.current = true;
|
||
return () => {
|
||
mountedRef.current = false;
|
||
};
|
||
}, []);
|
||
|
||
// Cleanup all timeouts on unmount
|
||
useEffect(() => {
|
||
return () => {
|
||
if (pollTimeoutRef.current) clearTimeout(pollTimeoutRef.current);
|
||
if (expireTimeoutRef.current) clearTimeout(expireTimeoutRef.current);
|
||
if (copiedTimeoutRef.current) clearTimeout(copiedTimeoutRef.current);
|
||
};
|
||
}, []);
|
||
|
||
handleOIDCCallbackRef.current = async (data: { id_token?: string; error?: string }) => {
|
||
if (!mountedRef.current) return;
|
||
if (data.error || !data.id_token) {
|
||
setOidcError(data.error || t('auth.loginFailed'));
|
||
setOidcLoading(false);
|
||
return;
|
||
}
|
||
try {
|
||
setOidcLoading(true);
|
||
setOidcError('');
|
||
await loginWithTelegramOIDC(data.id_token);
|
||
if (mountedRef.current) navigate('/');
|
||
} catch (err: unknown) {
|
||
if (!mountedRef.current) return;
|
||
let message = t('common.error');
|
||
if (isAxiosError(err) && err.response?.data?.detail) {
|
||
message = err.response.data.detail;
|
||
}
|
||
setOidcError(message);
|
||
} finally {
|
||
if (mountedRef.current) setOidcLoading(false);
|
||
}
|
||
};
|
||
|
||
// Handle script load failure (timeout or error)
|
||
const handleScriptFailed = useCallback(() => {
|
||
if (!mountedRef.current || scriptLoaded) return;
|
||
setScriptFailed(true);
|
||
setOidcError('');
|
||
}, [scriptLoaded]);
|
||
|
||
// Load OIDC script with timeout
|
||
useEffect(() => {
|
||
if (!isOIDC || !widgetConfig?.oidc_client_id) return;
|
||
|
||
const scriptId = 'telegram-login-oidc-script';
|
||
let script = document.getElementById(scriptId) as HTMLScriptElement | null;
|
||
|
||
const initTelegramLogin = () => {
|
||
if (window.Telegram?.Login) {
|
||
window.Telegram.Login.init(
|
||
{
|
||
client_id: Number(widgetConfig.oidc_client_id) || widgetConfig.oidc_client_id,
|
||
request_access: widgetConfig.request_access ? ['write'] : undefined,
|
||
lang: document.documentElement.lang || 'en',
|
||
},
|
||
(data) => handleOIDCCallbackRef.current?.(data),
|
||
);
|
||
}
|
||
};
|
||
|
||
// Set up timeout
|
||
const timeoutId = setTimeout(() => {
|
||
if (!scriptLoaded) {
|
||
handleScriptFailed();
|
||
}
|
||
}, SCRIPT_LOAD_TIMEOUT_MS);
|
||
|
||
if (!script) {
|
||
script = document.createElement('script');
|
||
script.id = scriptId;
|
||
script.src = 'https://oauth.telegram.org/js/telegram-login.js?3';
|
||
script.async = true;
|
||
script.onload = () => {
|
||
clearTimeout(timeoutId);
|
||
setScriptLoaded(true);
|
||
initTelegramLogin();
|
||
};
|
||
script.onerror = () => {
|
||
clearTimeout(timeoutId);
|
||
handleScriptFailed();
|
||
};
|
||
document.head.appendChild(script);
|
||
} else {
|
||
clearTimeout(timeoutId);
|
||
setScriptLoaded(true);
|
||
initTelegramLogin();
|
||
}
|
||
|
||
return () => clearTimeout(timeoutId);
|
||
}, [
|
||
isOIDC,
|
||
widgetConfig?.oidc_client_id,
|
||
widgetConfig?.request_access,
|
||
scriptLoaded,
|
||
handleScriptFailed,
|
||
]);
|
||
|
||
// Legacy widget effect with timeout
|
||
const loginWithTelegramWidget = useAuthStore((s) => s.loginWithTelegramWidget);
|
||
|
||
useEffect(() => {
|
||
// showDeepLinkUI обязан быть в зависимостях: пока он true, контейнер
|
||
// виджета размонтирован, а при возврате «Назад к виджету» сам по себе
|
||
// эффект не перезапустится — на legacy-пути scriptLoaded не меняется
|
||
// никогда, поэтому ни одна из остальных зависимостей не дрогнет, и
|
||
// пользователь получил бы пустое место вместо виджета.
|
||
if (showDeepLinkUI || isOIDC || !containerRef.current || !botUsername || !widgetConfig) return;
|
||
|
||
const container = containerRef.current;
|
||
while (container.firstChild) {
|
||
container.removeChild(container.firstChild);
|
||
}
|
||
|
||
const callbackName = '__onTelegramWidgetAuth';
|
||
(window as unknown as Record<string, unknown>)[callbackName] = async (
|
||
user: Record<string, unknown>,
|
||
) => {
|
||
try {
|
||
await loginWithTelegramWidget({
|
||
id: user.id as number,
|
||
first_name: user.first_name as string,
|
||
last_name: (user.last_name as string) || undefined,
|
||
username: (user.username as string) || undefined,
|
||
photo_url: (user.photo_url as string) || undefined,
|
||
auth_date: user.auth_date as number,
|
||
hash: user.hash as string,
|
||
});
|
||
navigate('/');
|
||
} catch {
|
||
// Error handled by auth store
|
||
}
|
||
};
|
||
|
||
const script = document.createElement('script');
|
||
script.src = 'https://telegram.org/js/telegram-widget.js?23';
|
||
script.setAttribute('data-telegram-login', botUsername);
|
||
script.setAttribute('data-size', widgetConfig.size);
|
||
script.setAttribute('data-radius', String(widgetConfig.radius));
|
||
script.setAttribute('data-userpic', String(widgetConfig.userpic));
|
||
script.setAttribute('data-onauth', `${callbackName}(user)`);
|
||
if (widgetConfig.request_access) {
|
||
script.setAttribute('data-request-access', 'write');
|
||
}
|
||
script.async = true;
|
||
|
||
// Timeout for legacy widget
|
||
const timeoutId = setTimeout(() => {
|
||
// If container still has no iframe child (widget didn't render), mark as failed
|
||
if (container && !container.querySelector('iframe')) {
|
||
handleScriptFailed();
|
||
}
|
||
}, SCRIPT_LOAD_TIMEOUT_MS);
|
||
|
||
script.onerror = () => {
|
||
clearTimeout(timeoutId);
|
||
handleScriptFailed();
|
||
};
|
||
|
||
container.appendChild(script);
|
||
|
||
return () => {
|
||
clearTimeout(timeoutId);
|
||
delete (window as unknown as Record<string, unknown>)[callbackName];
|
||
while (container.firstChild) {
|
||
container.removeChild(container.firstChild);
|
||
}
|
||
};
|
||
}, [
|
||
showDeepLinkUI,
|
||
isOIDC,
|
||
botUsername,
|
||
widgetConfig,
|
||
loginWithTelegramWidget,
|
||
navigate,
|
||
handleScriptFailed,
|
||
]);
|
||
|
||
// Deep link auth: request token and start polling with recursive setTimeout
|
||
const startDeepLinkAuth = useCallback(async () => {
|
||
setDeepLinkError('');
|
||
|
||
// Clear any previous timers and in-flight guard
|
||
if (pollTimeoutRef.current) {
|
||
clearTimeout(pollTimeoutRef.current);
|
||
pollTimeoutRef.current = null;
|
||
}
|
||
if (expireTimeoutRef.current) {
|
||
clearTimeout(expireTimeoutRef.current);
|
||
expireTimeoutRef.current = null;
|
||
}
|
||
pollInFlightRef.current = false;
|
||
|
||
try {
|
||
// Consume campaign slug ONCE (first call only).
|
||
// Clears localStorage on first call, so subsequent retries reuse the ref.
|
||
// Note: referral code is NOT consumed here — deep link auth is for existing
|
||
// bot users where referrals don't apply. Leaving it in localStorage allows
|
||
// other auth methods (OIDC, widget) to pick it up if the user switches paths.
|
||
if (!codesConsumedRef.current) {
|
||
capturedCampaignRef.current = getPendingCampaignSlug();
|
||
codesConsumedRef.current = true;
|
||
}
|
||
const capturedCampaign = capturedCampaignRef.current;
|
||
|
||
const response = await authApi.requestDeepLinkToken();
|
||
const { token, bot_username, expires_in } = response;
|
||
setDeepLinkToken(token);
|
||
setDeepLinkBotUsername(bot_username || botUsername);
|
||
setDeepLinkPolling(true);
|
||
|
||
// Recursive setTimeout prevents overlapping async calls
|
||
const poll = async () => {
|
||
if (!mountedRef.current || pollInFlightRef.current) return;
|
||
pollInFlightRef.current = true;
|
||
try {
|
||
// Deep link auth is for existing bot users — only campaign_slug applies
|
||
await loginWithDeepLink(token, capturedCampaign);
|
||
// Success — auth store is updated, navigate
|
||
if (expireTimeoutRef.current) {
|
||
clearTimeout(expireTimeoutRef.current);
|
||
expireTimeoutRef.current = null;
|
||
}
|
||
if (mountedRef.current) {
|
||
setDeepLinkPolling(false);
|
||
navigate('/');
|
||
}
|
||
} catch (err: unknown) {
|
||
if (!mountedRef.current) return;
|
||
if (isAxiosError(err)) {
|
||
if (err.response?.status === 202) {
|
||
// Still pending — schedule next poll
|
||
pollTimeoutRef.current = setTimeout(poll, DEEPLINK_POLL_INTERVAL_MS);
|
||
return;
|
||
}
|
||
if (err.response?.status === 410) {
|
||
// Token expired — clear expire timer to prevent stale timer killing future sessions
|
||
if (expireTimeoutRef.current) {
|
||
clearTimeout(expireTimeoutRef.current);
|
||
expireTimeoutRef.current = null;
|
||
}
|
||
setDeepLinkPolling(false);
|
||
setDeepLinkToken(null);
|
||
setDeepLinkError(t('auth.deepLinkExpired'));
|
||
return;
|
||
}
|
||
}
|
||
// Other error — stop polling and clear expire timer
|
||
if (expireTimeoutRef.current) {
|
||
clearTimeout(expireTimeoutRef.current);
|
||
expireTimeoutRef.current = null;
|
||
}
|
||
setDeepLinkPolling(false);
|
||
setDeepLinkError(t('common.error'));
|
||
} finally {
|
||
pollInFlightRef.current = false;
|
||
}
|
||
};
|
||
|
||
// Start first poll
|
||
pollTimeoutRef.current = setTimeout(poll, DEEPLINK_POLL_INTERVAL_MS);
|
||
|
||
// Auto-expire after server-provided TTL
|
||
expireTimeoutRef.current = setTimeout(
|
||
() => {
|
||
if (pollTimeoutRef.current) {
|
||
clearTimeout(pollTimeoutRef.current);
|
||
pollTimeoutRef.current = null;
|
||
}
|
||
if (mountedRef.current && !useAuthStore.getState().isAuthenticated) {
|
||
setDeepLinkPolling(false);
|
||
setDeepLinkToken(null);
|
||
setDeepLinkError(t('auth.deepLinkExpired'));
|
||
}
|
||
},
|
||
(expires_in || 300) * 1000,
|
||
);
|
||
} catch (err) {
|
||
// 404 = the deep-link auth routes don't exist on this bot build (< v3.33.0)
|
||
setDeepLinkError(t(isEndpointMissingError(err) ? 'auth.botOutdated' : 'common.error'));
|
||
}
|
||
}, [botUsername, loginWithDeepLink, navigate, t]);
|
||
|
||
// Auto-start deep link auth when script fails OR the user opts in manually
|
||
// (with cancellation for Strict Mode)
|
||
useEffect(() => {
|
||
if (showDeepLinkUI && !deepLinkToken && !deepLinkPolling) {
|
||
let cancelled = false;
|
||
const start = async () => {
|
||
if (!cancelled) await startDeepLinkAuth();
|
||
};
|
||
start();
|
||
return () => {
|
||
cancelled = true;
|
||
};
|
||
}
|
||
}, [showDeepLinkUI, deepLinkToken, deepLinkPolling, startDeepLinkAuth]);
|
||
|
||
// Resume polling immediately when user returns to the page (e.g. after confirming in Telegram)
|
||
// Browsers throttle setTimeout in background tabs, so polling may have stalled.
|
||
useEffect(() => {
|
||
if (!deepLinkPolling || !deepLinkToken) return;
|
||
|
||
const handleVisibilityChange = () => {
|
||
if (document.visibilityState === 'visible' && mountedRef.current) {
|
||
// Clear any pending throttled timer and trigger an immediate poll
|
||
if (pollTimeoutRef.current) {
|
||
clearTimeout(pollTimeoutRef.current);
|
||
pollTimeoutRef.current = null;
|
||
}
|
||
// Skip if another poll is already in-flight to prevent race conditions
|
||
if (pollInFlightRef.current) return;
|
||
const capturedCampaign = capturedCampaignRef.current;
|
||
const immediatePoll = async () => {
|
||
if (!mountedRef.current || pollInFlightRef.current) return;
|
||
pollInFlightRef.current = true;
|
||
try {
|
||
await loginWithDeepLink(deepLinkToken, capturedCampaign);
|
||
if (expireTimeoutRef.current) {
|
||
clearTimeout(expireTimeoutRef.current);
|
||
expireTimeoutRef.current = null;
|
||
}
|
||
if (mountedRef.current) {
|
||
setDeepLinkPolling(false);
|
||
navigate('/');
|
||
}
|
||
} catch (err: unknown) {
|
||
if (!mountedRef.current) return;
|
||
if (isAxiosError(err)) {
|
||
if (err.response?.status === 202) {
|
||
pollTimeoutRef.current = setTimeout(immediatePoll, DEEPLINK_POLL_INTERVAL_MS);
|
||
return;
|
||
}
|
||
if (err.response?.status === 410) {
|
||
if (expireTimeoutRef.current) {
|
||
clearTimeout(expireTimeoutRef.current);
|
||
expireTimeoutRef.current = null;
|
||
}
|
||
setDeepLinkPolling(false);
|
||
setDeepLinkToken(null);
|
||
setDeepLinkError(t('auth.deepLinkExpired'));
|
||
return;
|
||
}
|
||
}
|
||
if (expireTimeoutRef.current) {
|
||
clearTimeout(expireTimeoutRef.current);
|
||
expireTimeoutRef.current = null;
|
||
}
|
||
setDeepLinkPolling(false);
|
||
setDeepLinkError(t('common.error'));
|
||
} finally {
|
||
pollInFlightRef.current = false;
|
||
}
|
||
};
|
||
immediatePoll();
|
||
}
|
||
};
|
||
|
||
document.addEventListener('visibilitychange', handleVisibilityChange);
|
||
return () => {
|
||
document.removeEventListener('visibilitychange', handleVisibilityChange);
|
||
// Sever any in-flight recursive immediatePoll chain from this effect cycle
|
||
if (pollTimeoutRef.current) {
|
||
clearTimeout(pollTimeoutRef.current);
|
||
pollTimeoutRef.current = null;
|
||
}
|
||
};
|
||
}, [deepLinkPolling, deepLinkToken, loginWithDeepLink, navigate, t]);
|
||
|
||
if (!botUsername || botUsername === 'your_bot') {
|
||
// 404 on the config route = the bot build predates the cabinet endpoints,
|
||
// which reads as "not configured" but is actually a version mismatch (#345).
|
||
return (
|
||
<div className="py-4 text-center text-sm text-dark-400">
|
||
{t(widgetConfig?.endpoint_missing ? 'auth.botOutdated' : 'auth.telegramNotConfigured')}
|
||
</div>
|
||
);
|
||
}
|
||
|
||
// Deep link UI — shown either as an automatic fallback (widget script
|
||
// failed to load) or because the user explicitly chose this method.
|
||
if (showDeepLinkUI) {
|
||
const resolvedBotUsername = deepLinkBotUsername || botUsername;
|
||
const deepLinkUrl = deepLinkToken
|
||
? `https://t.me/${resolvedBotUsername}?start=webauth_${deepLinkToken}`
|
||
: '';
|
||
const startCommand = deepLinkToken ? `/start webauth_${deepLinkToken}` : '';
|
||
|
||
return (
|
||
<div className="flex flex-col items-center space-y-5">
|
||
{/* Info message */}
|
||
<p className="max-w-xs text-center text-xs text-dark-400">
|
||
{t(scriptFailed ? 'auth.telegramWidgetBlocked' : 'auth.deepLinkIntro')}
|
||
</p>
|
||
|
||
{deepLinkToken && deepLinkUrl ? (
|
||
<>
|
||
{/* QR Code */}
|
||
<div className="flex flex-col items-center space-y-2">
|
||
<div className="rounded-2xl bg-white p-4">
|
||
<QRCodeSVG value={deepLinkUrl} size={180} level="M" includeMargin={false} />
|
||
</div>
|
||
<p className="text-[11px] text-dark-500">{t('auth.scanQrToLogin')}</p>
|
||
</div>
|
||
|
||
{/* Open bot button */}
|
||
<a
|
||
href={deepLinkUrl}
|
||
target="_blank"
|
||
rel="noopener noreferrer"
|
||
className="inline-flex items-center gap-2 rounded-lg bg-[#54a9eb] px-6 py-3 text-sm font-medium text-white shadow-sm transition-colors hover:bg-[#4a96d2]"
|
||
>
|
||
<svg className="h-5 w-5" viewBox="0 0 24 24" fill="currentColor">
|
||
<path d="M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z" />
|
||
</svg>
|
||
{t('auth.openBotToLogin')}
|
||
</a>
|
||
|
||
{/* Manual command */}
|
||
<div className="flex w-full max-w-xs flex-col items-center space-y-1.5">
|
||
<p className="text-[11px] text-dark-500">{t('auth.orSendCommand')}</p>
|
||
<button
|
||
type="button"
|
||
onClick={() => {
|
||
copyToClipboard(startCommand)
|
||
.then(() => {
|
||
setCopied(true);
|
||
if (copiedTimeoutRef.current) clearTimeout(copiedTimeoutRef.current);
|
||
copiedTimeoutRef.current = setTimeout(() => setCopied(false), 2000);
|
||
})
|
||
.catch(() => {});
|
||
}}
|
||
className="group flex w-full items-center justify-between rounded-lg border border-dark-700 bg-dark-800/50 px-3 py-2 transition-colors hover:border-dark-600"
|
||
>
|
||
<code className="truncate text-xs text-dark-300">{startCommand}</code>
|
||
<span className="ml-2 flex-shrink-0 text-[10px] text-dark-500 transition-colors group-hover:text-dark-300">
|
||
{copied ? t('auth.commandCopied') : t('common.copy')}
|
||
</span>
|
||
</button>
|
||
</div>
|
||
|
||
{/* Polling status */}
|
||
{deepLinkPolling && (
|
||
<div className="flex items-center gap-2 text-xs text-dark-400">
|
||
<span className="h-3 w-3 animate-spin rounded-full border-2 border-accent-500 border-t-transparent" />
|
||
{t('auth.waitingForConfirmation')}
|
||
</div>
|
||
)}
|
||
</>
|
||
) : deepLinkError ? (
|
||
<div className="flex flex-col items-center space-y-2">
|
||
<p className="text-xs text-error-500">{deepLinkError}</p>
|
||
<button
|
||
type="button"
|
||
onClick={startDeepLinkAuth}
|
||
className="text-sm text-accent-400 transition-colors hover:text-accent-300"
|
||
>
|
||
{t('auth.tryAgain')}
|
||
</button>
|
||
</div>
|
||
) : (
|
||
<div className="flex items-center gap-2 text-xs text-dark-400">
|
||
<span className="h-3 w-3 animate-spin rounded-full border-2 border-accent-500 border-t-transparent" />
|
||
{t('common.loading')}
|
||
</div>
|
||
)}
|
||
|
||
{/* Only offer a way back if the widget actually works — if the
|
||
script failed there is nothing to go back to. */}
|
||
{!scriptFailed && (
|
||
<button
|
||
type="button"
|
||
onClick={() => {
|
||
if (pollTimeoutRef.current) clearTimeout(pollTimeoutRef.current);
|
||
if (expireTimeoutRef.current) clearTimeout(expireTimeoutRef.current);
|
||
pollTimeoutRef.current = null;
|
||
expireTimeoutRef.current = null;
|
||
setDeepLinkToken(null);
|
||
setDeepLinkPolling(false);
|
||
setDeepLinkError('');
|
||
setManualDeepLink(false);
|
||
}}
|
||
className="text-xs text-dark-400 underline decoration-dotted transition-colors hover:text-dark-300"
|
||
>
|
||
{t('auth.backToWidget')}
|
||
</button>
|
||
)}
|
||
</div>
|
||
);
|
||
}
|
||
|
||
// Normal widget UI (when script loads successfully)
|
||
return (
|
||
<div className="flex flex-col items-center space-y-4">
|
||
{isOIDC ? (
|
||
<div className="flex flex-col items-center space-y-2">
|
||
<button
|
||
type="button"
|
||
onClick={() => {
|
||
setOidcError('');
|
||
setOidcLoading(true);
|
||
if (window.Telegram?.Login) {
|
||
window.Telegram.Login.open();
|
||
} else {
|
||
setOidcLoading(false);
|
||
}
|
||
}}
|
||
disabled={oidcLoading || !scriptLoaded}
|
||
className="inline-flex items-center gap-2 rounded-lg bg-[#54a9eb] px-6 py-3 text-sm font-medium text-white shadow-sm transition-colors hover:bg-[#4a96d2] disabled:opacity-50"
|
||
>
|
||
<svg className="h-5 w-5" viewBox="0 0 24 24" fill="currentColor">
|
||
<path d="M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z" />
|
||
</svg>
|
||
{oidcLoading ? t('common.loading') : t('auth.loginWithTelegram')}
|
||
</button>
|
||
{oidcError && <p className="text-xs text-error-500">{oidcError}</p>}
|
||
</div>
|
||
) : (
|
||
<div ref={containerRef} className="flex justify-center" />
|
||
)}
|
||
|
||
{/* Referral deep link — only relevant for not-yet-registered users who
|
||
arrived via a referral link; the bot itself handles registering
|
||
them with the code attached. Hidden otherwise to avoid a third,
|
||
visually-identical "Telegram" entry point next to the two auth
|
||
methods below. */}
|
||
{referralCode && (
|
||
<a
|
||
href={`https://t.me/${botUsername}?start=${encodeURIComponent(referralCode)}`}
|
||
target="_blank"
|
||
rel="noopener noreferrer"
|
||
className="text-telegram-blue inline-flex items-center text-xs hover:underline"
|
||
>
|
||
{t('auth.orOpenInApp')} @{botUsername}
|
||
</a>
|
||
)}
|
||
|
||
<div className="flex w-full max-w-xs items-center gap-3">
|
||
<div className="h-px flex-1 bg-dark-700" />
|
||
<span className="text-[11px] text-dark-500">{t('common.or')}</span>
|
||
<div className="h-px flex-1 bg-dark-700" />
|
||
</div>
|
||
|
||
{/* Manual opt-in: same deep-link flow used as the anti-block fallback,
|
||
offered here as an explicit equal alternative to the widget for
|
||
users who'd rather confirm in the bot than type a phone number. */}
|
||
<button
|
||
type="button"
|
||
onClick={() => setManualDeepLink(true)}
|
||
className="inline-flex items-center gap-2 rounded-lg border border-dark-700 bg-dark-800/50 px-6 py-3 text-sm font-medium text-dark-200 transition-colors hover:border-dark-600 hover:bg-dark-800"
|
||
>
|
||
<svg className="h-5 w-5 text-telegram-blue" viewBox="0 0 24 24" fill="currentColor">
|
||
<path d="M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z" />
|
||
</svg>
|
||
{t('auth.loginWithBot')}
|
||
</button>
|
||
</div>
|
||
);
|
||
}
|