mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-30 10:27:49 +00:00
Phase 0: Remove ~920 lines of dead code (ThemeBentoPicker, PromoDiscountBadge, AdminLayout, SettingsSidebar, MovingGradient, EmptyState, miniapp API, unused types/functions/transitions/skeleton helpers). Fix API barrel file (add 20 missing exports). Phase 1: Add ErrorBoundary (app/page/widget levels), centralize constants, add axios timeout, fix staleTime:0 in React Query. Phase 2: Consolidate hexToHsl, extract email validation, fix duplicate code. Phase 3: Fix auth race condition (await checkAdminStatus), memoize useCurrency, add WebSocket message validation. Phase 4: Extract useBranding, useFeatureFlags, useScrollRestoration from AppShell. Phase 5: Remove all eslint-disable react-hooks/exhaustive-deps (14 total), simplify logger, remove deprecated hooks (useBackButton, useTelegramDnd, useTelegramWebApp). Dependencies: React 19, react-router 7, zustand 5, i18next 25, react-i18next 16, eslint-plugin-react-refresh 0.5. Remove unused @lottiefiles/dotlottie-react. Convert vite manualChunks to function-based approach for react-router v7 compat. Lint: Fix logger.ts no-unused-expressions, fix react-refresh/only-export-components in 6 Radix primitive files (const re-exports → direct re-exports), fix WebSocketProvider exhaustive-deps. Result: 0 errors, 0 warnings. Add CLAUDE.md to .gitignore.
100 lines
3.6 KiB
TypeScript
100 lines
3.6 KiB
TypeScript
import { useEffect, useState } from 'react';
|
|
import { useSearchParams, Link, useNavigate } from 'react-router';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { authApi } from '../api/auth';
|
|
import { useAuthStore } from '../store/auth';
|
|
import { tokenStorage } from '../utils/token';
|
|
import LanguageSwitcher from '../components/LanguageSwitcher';
|
|
|
|
export default function VerifyEmail() {
|
|
const { t } = useTranslation();
|
|
const navigate = useNavigate();
|
|
const [searchParams] = useSearchParams();
|
|
const [status, setStatus] = useState<'loading' | 'success' | 'error'>('loading');
|
|
const [error, setError] = useState('');
|
|
const { setTokens, setUser, checkAdminStatus } = useAuthStore();
|
|
|
|
useEffect(() => {
|
|
const token = searchParams.get('token');
|
|
|
|
if (!token) {
|
|
setStatus('error');
|
|
setError(t('common.error'));
|
|
return;
|
|
}
|
|
|
|
const verify = async () => {
|
|
try {
|
|
const response = await authApi.verifyEmail(token);
|
|
// Save tokens and log user in
|
|
tokenStorage.setTokens(response.access_token, response.refresh_token);
|
|
setTokens(response.access_token, response.refresh_token);
|
|
setUser(response.user);
|
|
checkAdminStatus();
|
|
setStatus('success');
|
|
// Redirect to dashboard after short delay
|
|
setTimeout(() => navigate('/', { replace: true }), 1500);
|
|
} catch (err: unknown) {
|
|
setStatus('error');
|
|
const error = err as { response?: { data?: { detail?: string } } };
|
|
setError(error.response?.data?.detail || t('emailVerification.failed'));
|
|
}
|
|
};
|
|
|
|
verify();
|
|
}, [searchParams, t, navigate, setTokens, setUser, checkAdminStatus]);
|
|
|
|
return (
|
|
<div className="flex min-h-screen items-center justify-center bg-gray-50 px-4 py-8 sm:py-12">
|
|
{/* Language switcher in corner */}
|
|
<div className="fixed right-4 top-4 z-50">
|
|
<LanguageSwitcher />
|
|
</div>
|
|
|
|
<div className="w-full max-w-md text-center">
|
|
{status === 'loading' && (
|
|
<div>
|
|
<div className="border-primary-600 mx-auto mb-4 h-12 w-12 animate-spin rounded-full border-b-2"></div>
|
|
<h2 className="text-lg font-semibold text-gray-900 sm:text-xl">
|
|
{t('emailVerification.verifying')}
|
|
</h2>
|
|
<p className="mt-2 text-sm text-gray-500 sm:text-base">
|
|
{t('emailVerification.pleaseWait')}
|
|
</p>
|
|
</div>
|
|
)}
|
|
|
|
{status === 'success' && (
|
|
<div>
|
|
<div className="mb-4 text-5xl text-green-500 sm:text-6xl">✓</div>
|
|
<h2 className="text-lg font-semibold text-gray-900 sm:text-xl">
|
|
{t('emailVerification.success')}
|
|
</h2>
|
|
<p className="mt-2 text-sm text-gray-500 sm:text-base">
|
|
{t('emailVerification.redirecting', 'Redirecting to dashboard...')}
|
|
</p>
|
|
<div className="mt-4">
|
|
<div className="border-primary-600 mx-auto h-6 w-6 animate-spin rounded-full border-b-2"></div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{status === 'error' && (
|
|
<div>
|
|
<div className="mb-4 text-5xl text-red-500 sm:text-6xl">✗</div>
|
|
<h2 className="text-lg font-semibold text-gray-900 sm:text-xl">
|
|
{t('emailVerification.failed')}
|
|
</h2>
|
|
<p className="mt-2 text-sm text-gray-500 sm:text-base">{error}</p>
|
|
<div className="mt-6">
|
|
<Link to="/login" className="btn-secondary">
|
|
{t('emailVerification.goToLogin')}
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|