2026-02-17 20:49:42 +00:00
|
|
|
import React, { useState, useEffect } from 'react';
|
|
|
|
|
import Header from './components/landing/Header';
|
|
|
|
|
import Hero from './components/landing/Hero';
|
|
|
|
|
import CoachHighlight from './components/landing/CoachHighlight';
|
|
|
|
|
import HowItWorks from './components/landing/HowItWorks';
|
|
|
|
|
import Features from './components/landing/Features';
|
|
|
|
|
import Testimonials from './components/landing/Testimonials';
|
|
|
|
|
import Pricing from './components/landing/Pricing';
|
|
|
|
|
import FAQ from './components/landing/FAQ';
|
|
|
|
|
import Footer from './components/landing/Footer';
|
|
|
|
|
import RegistrationModal from './components/modals/RegistrationModal';
|
|
|
|
|
import CalculatorsModal from './components/modals/CalculatorsModal';
|
|
|
|
|
import Dashboard from './pages/Dashboard';
|
|
|
|
|
import AdminPanel from './pages/AdminPanel';
|
|
|
|
|
import ProfessionalDashboard from './pages/ProfessionalDashboard';
|
|
|
|
|
import FAQPage from './pages/FAQPage';
|
|
|
|
|
import { LanguageProvider } from './contexts/LanguageContext';
|
2026-02-17 23:01:09 +00:00
|
|
|
import { UserProvider, useUser } from './contexts/UserContext'; // Import UserContext
|
2026-02-17 20:49:42 +00:00
|
|
|
import { Loader2 } from 'lucide-react';
|
|
|
|
|
|
|
|
|
|
const AppContent: React.FC = () => {
|
|
|
|
|
const [isModalOpen, setIsModalOpen] = useState(false);
|
|
|
|
|
const [isToolsOpen, setIsToolsOpen] = useState(false);
|
|
|
|
|
const [authMode, setAuthMode] = useState<'login' | 'register'>('register');
|
|
|
|
|
const [selectedPlan, setSelectedPlan] = useState('starter');
|
2026-02-17 23:01:09 +00:00
|
|
|
const [currentView, setCurrentView] = useState<'home' | 'faq'>('home');
|
|
|
|
|
|
|
|
|
|
// Consume UserContext
|
|
|
|
|
const {
|
|
|
|
|
user,
|
|
|
|
|
loading,
|
|
|
|
|
isAdminView,
|
|
|
|
|
isProfessionalView,
|
|
|
|
|
isCompletingProfile,
|
|
|
|
|
toggleAdminView,
|
|
|
|
|
setIsProfessionalView,
|
|
|
|
|
logout,
|
|
|
|
|
refreshProfile
|
|
|
|
|
} = useUser();
|
|
|
|
|
|
|
|
|
|
// Effect to handle "Complete Profile" flow automatically
|
2026-02-17 20:49:42 +00:00
|
|
|
useEffect(() => {
|
2026-02-17 23:01:09 +00:00
|
|
|
if (isCompletingProfile) {
|
|
|
|
|
setAuthMode('register');
|
|
|
|
|
setIsModalOpen(true);
|
2026-02-17 20:49:42 +00:00
|
|
|
}
|
2026-02-17 23:01:09 +00:00
|
|
|
}, [isCompletingProfile]);
|
2026-02-17 20:49:42 +00:00
|
|
|
|
|
|
|
|
const handleOpenRegister = (plan: string = 'starter') => {
|
|
|
|
|
setSelectedPlan(plan);
|
|
|
|
|
setAuthMode('register');
|
|
|
|
|
setIsModalOpen(true);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleOpenLogin = (context?: 'user' | 'professional') => {
|
|
|
|
|
if (context === 'professional') {
|
|
|
|
|
localStorage.setItem('login_intent', 'professional');
|
|
|
|
|
} else {
|
|
|
|
|
localStorage.setItem('login_intent', 'user');
|
|
|
|
|
}
|
|
|
|
|
setAuthMode('login');
|
|
|
|
|
setIsModalOpen(true);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleAuthSuccess = async () => {
|
|
|
|
|
setIsModalOpen(false);
|
2026-02-17 23:01:09 +00:00
|
|
|
await refreshProfile();
|
|
|
|
|
// Login intent logic handled inside context or simply by state update
|
|
|
|
|
localStorage.removeItem('login_intent');
|
2026-02-17 20:49:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Helper function for navigating
|
|
|
|
|
const handleNavigate = (view: 'home' | 'faq') => {
|
|
|
|
|
setCurrentView(view);
|
|
|
|
|
window.scrollTo({ top: 0, behavior: 'smooth' });
|
|
|
|
|
};
|
|
|
|
|
|
2026-02-17 23:01:09 +00:00
|
|
|
if (loading) {
|
2026-02-17 20:49:42 +00:00
|
|
|
return (
|
|
|
|
|
<div className="min-h-screen flex items-center justify-center bg-white">
|
|
|
|
|
<Loader2 className="w-8 h-8 animate-spin text-brand-600" />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Rota Admin
|
|
|
|
|
if (user && isAdminView && user.is_admin) {
|
2026-02-17 23:01:09 +00:00
|
|
|
return <AdminPanel user={user} onExitAdmin={toggleAdminView} onLogout={logout} />;
|
2026-02-17 20:49:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Rota Profissional
|
|
|
|
|
if (user && isProfessionalView) {
|
2026-02-17 23:01:09 +00:00
|
|
|
return <ProfessionalDashboard user={user} onExit={() => setIsProfessionalView(false)} onLogout={logout} />;
|
2026-02-17 20:49:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Rota Dashboard Usuário
|
|
|
|
|
if (user) {
|
|
|
|
|
return (
|
|
|
|
|
<Dashboard
|
|
|
|
|
user={user}
|
2026-02-17 23:01:09 +00:00
|
|
|
onLogout={logout}
|
2026-02-17 20:49:42 +00:00
|
|
|
onOpenAdmin={user.is_admin ? toggleAdminView : undefined}
|
|
|
|
|
onOpenPro={() => setIsProfessionalView(true)}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Rota Pública (Landing Page ou FAQ Page)
|
|
|
|
|
return (
|
|
|
|
|
<div className="min-h-screen bg-white text-gray-900 font-sans selection:bg-brand-100 selection:text-brand-900">
|
|
|
|
|
<Header
|
|
|
|
|
onRegister={() => handleOpenRegister('starter')}
|
|
|
|
|
onLogin={handleOpenLogin}
|
|
|
|
|
onOpenTools={() => setIsToolsOpen(true)}
|
2026-02-17 23:01:09 +00:00
|
|
|
onNavigate={handleNavigate}
|
2026-02-17 20:49:42 +00:00
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<main>
|
|
|
|
|
{currentView === 'home' ? (
|
|
|
|
|
<>
|
|
|
|
|
<Hero onRegister={() => handleOpenRegister('starter')} />
|
|
|
|
|
<CoachHighlight onRegister={() => handleOpenRegister('starter')} />
|
|
|
|
|
<HowItWorks />
|
|
|
|
|
<Features />
|
|
|
|
|
<Testimonials />
|
|
|
|
|
<Pricing onRegister={handleOpenRegister} />
|
|
|
|
|
<FAQ />
|
|
|
|
|
</>
|
|
|
|
|
) : (
|
|
|
|
|
<FAQPage onBack={() => handleNavigate('home')} />
|
|
|
|
|
)}
|
|
|
|
|
</main>
|
|
|
|
|
|
|
|
|
|
<Footer
|
|
|
|
|
onRegister={() => handleOpenRegister('starter')}
|
2026-02-17 23:01:09 +00:00
|
|
|
onNavigate={handleNavigate}
|
2026-02-17 20:49:42 +00:00
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<RegistrationModal
|
|
|
|
|
isOpen={isModalOpen}
|
|
|
|
|
onClose={() => setIsModalOpen(false)}
|
|
|
|
|
plan={selectedPlan}
|
|
|
|
|
mode={authMode}
|
2026-02-17 23:01:09 +00:00
|
|
|
isCompletingProfile={isCompletingProfile}
|
2026-02-17 20:49:42 +00:00
|
|
|
onSuccess={handleAuthSuccess}
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<CalculatorsModal
|
|
|
|
|
isOpen={isToolsOpen}
|
|
|
|
|
onClose={() => setIsToolsOpen(false)}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const App: React.FC = () => {
|
|
|
|
|
return (
|
2026-02-17 23:01:09 +00:00
|
|
|
<UserProvider>
|
|
|
|
|
<LanguageProvider>
|
|
|
|
|
<AppContent />
|
|
|
|
|
</LanguageProvider>
|
|
|
|
|
</UserProvider>
|
2026-02-17 20:49:42 +00:00
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default App;
|