Spaces:
Sleeping
Sleeping
File size: 15,758 Bytes
17b5182 81e07f8 17b5182 c3cf510 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 |
import React, { useState, useEffect } from 'react';
import './App.css';
import { systemInitializer } from './utils/systemInitializer.js';
import { authManager } from './utils/auth.js';
import LoadingScreen from './components/LoadingScreen';
// Import all your pages
import Dashboard from './pages/Dashboard';
import AquaLens from './pages/AquaLens';
import BiodiversityEar from './pages/BiodiversityEar';
import CarbonOptimizer from './pages/CarbonOptimizer';
import SmartFarming from './pages/SmartFarming';
import EWasteRecycling from './pages/EWasteRecycling';
import AirQuality from './pages/AirQuality';
import FloraShield from './pages/FloraShield';
import FoodWasteReduction from './pages/FoodWasteReduction';
import EnvironmentalJustice from './pages/EnvironmentalJustice';
import EcoSonification from './pages/EcoSonification';
import PhantomFootprint from './pages/PhantomFootprint';
import UpcyclingAgent from './pages/UpcyclingAgent';
import PackagingDesigner from './pages/PackagingDesigner';
import Impact from './pages/Impact';
import EcoTasks from './pages/EcoTasks';
import Learn from './pages/Learn';
import Startups from './pages/Startups';
import Community from './pages/Community';
import Profile from './pages/Profile';
import Login from './pages/Login';
import DigitalQuarry from './pages/DigitalQuarry';
import BioStreamAI from './pages/BioStreamAI';
import EWasteProspector from './pages/EWasteProspector';
import GeneticResilience from './pages/GeneticResilience';
function App() {
const [activePage, setActivePage] = useState('Dashboard');
const [userStats, setUserStats] = useState({
carbonSaved: 0,
waterTests: 0,
biodiversityScans: 0,
treesPlanted: 0,
wasteReduced: 0,
energySaved: 0
});
const [currentUser, setCurrentUser] = useState(null);
const [systemReady, setSystemReady] = useState(false);
const [systemStatus, setSystemStatus] = useState(null);
const [isLoading, setIsLoading] = useState(true);
// Initialize advanced systems and authentication on app start
useEffect(() => {
const initializeSystems = async () => {
console.log('π GreenPlus by GXS: Initializing Advanced Environmental Systems...');
try {
const status = await systemInitializer.initialize();
setSystemStatus(status);
setSystemReady(status.overallReady);
// Initialize authentication
const user = authManager.getCurrentUser();
setCurrentUser(user);
if (status.overallReady) {
console.log('β
GreenPlus by GXS: All systems operational!');
} else {
console.warn('β οΈ GreenPlus by GXS: Running with limited functionality');
}
} catch (error) {
console.error('β GreenPlus by GXS: System initialization failed:', error);
setSystemReady(false);
}
};
initializeSystems();
// Show loading screen for 2.5 seconds
const loadingTimer = setTimeout(() => {
setIsLoading(false);
}, 2500);
return () => clearTimeout(loadingTimer);
}, []);
// Handle authentication changes
const handleAuthChange = (user) => {
setCurrentUser(user);
updateUserStats();
};
// Update user stats from auth manager
const updateUserStats = () => {
const stats = authManager.getUserStats();
// Only show demo stats for actual guest users, not logged-in users
const isGuest = currentUser?.isGuest === true;
const isNewGuest = isGuest && !stats.carbonSaved && !stats.waterTests && !stats.biodiversityScans;
console.log('π App.js updateUserStats called');
console.log('π Raw stats from authManager:', stats);
console.log('π€ Current user:', currentUser);
console.log('π Is new guest:', isNewGuest);
const newStats = {
carbonSaved: stats.carbonSaved || (isNewGuest ? 12 : 0),
waterTests: stats.waterTests || (isNewGuest ? 3 : 0),
biodiversityScans: stats.biodiversityScans || (isNewGuest ? 2 : 0),
treesPlanted: stats.treesPlanted || 0,
wasteReduced: stats.wasteReduced || 0,
energySaved: stats.energySaved || 0
};
console.log('π Setting userStats to:', newStats);
setUserStats(newStats);
};
// Set up periodic stats refresh
useEffect(() => {
// Initial stats load
updateUserStats();
// Refresh stats every 10 seconds (less frequent to reduce flickering)
const statsInterval = setInterval(updateUserStats, 10000);
return () => clearInterval(statsInterval);
}, [currentUser]);
const pages = [
{
id: 'Dashboard',
name: 'Dashboard',
icon: 'π ',
component: Dashboard,
description: 'Overview & Analytics'
},
{
id: 'AquaLens',
name: 'AquaLens',
icon: 'π§',
component: AquaLens,
description: 'Water Quality Analysis'
},
{
id: 'BiodiversityEar',
name: 'BiodiversityEar',
icon: 'π¦',
component: BiodiversityEar,
description: 'Ecosystem Monitoring'
},
{
id: 'CarbonOptimizer',
name: 'Carbon Optimizer',
icon: 'π±',
component: CarbonOptimizer,
description: 'Carbon Footprint Tracking'
},
{
id: 'SmartFarming',
name: 'Smart Farming',
icon: 'πΎ',
component: SmartFarming,
description: 'Agricultural Intelligence'
},
{
id: 'EWasteRecycling',
name: 'E-Waste Recycling',
icon: 'β»οΈ',
component: EWasteRecycling,
description: 'Electronic Waste Management'
},
{
id: 'AirQuality',
name: 'Air Quality',
icon: 'π¬οΈ',
component: AirQuality,
description: 'Air Pollution Monitoring'
},
{
id: 'FloraShield',
name: 'FloraShield',
icon: 'π‘οΈ',
component: FloraShield,
description: 'Plant Disease Detection'
},
{
id: 'FoodWasteReduction',
name: 'Food Waste Reduction',
icon: 'π',
component: FoodWasteReduction,
description: 'Food Rescue Network'
},
{
id: 'EnvironmentalJustice',
name: 'Environmental Justice',
icon: 'βοΈ',
component: EnvironmentalJustice,
description: 'Equity & Justice'
},
{
id: 'EcoSonification',
name: 'EcoSonification',
icon: 'π΅',
component: EcoSonification,
description: 'Environmental Sound Art'
},
{
id: 'PhantomFootprint',
name: 'Phantom Footprint',
icon: 'π»',
component: PhantomFootprint,
description: 'Hidden Impact Tracker'
},
{
id: 'UpcyclingAgent',
name: 'Upcycling Agent',
icon: 'π',
component: UpcyclingAgent,
description: 'Creative Reuse Assistant'
},
{
id: 'PackagingDesigner',
name: 'Packaging Designer',
icon: 'π¦',
component: PackagingDesigner,
description: 'Sustainable Packaging'
},
{
id: 'DigitalQuarry',
name: 'Digital Quarry',
icon: 'ποΈ',
component: DigitalQuarry,
description: 'Construction Waste Marketplace'
},
{
id: 'BioStreamAI',
name: 'Bio-Stream AI',
icon: 'π§¬',
component: BioStreamAI,
description: 'Environmental DNA Analysis'
},
{
id: 'EWasteProspector',
name: 'E-Waste Prospector',
icon: 'β‘',
component: EWasteProspector,
description: 'Critical Mineral Recovery'
},
{
id: 'GeneticResilience',
name: 'Genetic Resilience',
icon: 'πΎ',
component: GeneticResilience,
description: 'Climate Crop Analysis'
},
{
id: 'Impact',
name: 'Global Impact',
icon: 'π',
component: Impact,
description: 'Environmental Impact Data'
},
{
id: 'EcoTasks',
name: 'Eco Tasks',
icon: 'β
',
component: EcoTasks,
description: 'Daily Green Actions'
},
{
id: 'Learn',
name: 'Learn',
icon: 'π',
component: Learn,
description: 'Environmental Education'
},
{
id: 'Startups',
name: 'Green Startups',
icon: 'π',
component: Startups,
description: 'Sustainable Innovation'
},
{
id: 'Community',
name: 'Community',
icon: 'π₯',
component: Community,
description: 'Connect with eco champions'
},
{
id: 'Profile',
name: 'My Profile',
icon: 'π€',
component: Profile,
description: 'View your environmental impact'
},
{
id: 'Login',
name: 'Login',
icon: 'π',
component: Login,
description: 'Sign in or create account'
}
];
// Initialize page from URL on app load
useEffect(() => {
const urlParams = new URLSearchParams(window.location.search);
const pageFromUrl = urlParams.get('page');
if (pageFromUrl && pages.some(page => page.id === pageFromUrl)) {
setActivePage(pageFromUrl);
} else {
// If no valid page in URL, set default and update URL
const defaultPage = 'Dashboard';
setActivePage(defaultPage);
updateURL(defaultPage);
}
}, []);
// Function to update URL without page reload
const updateURL = (pageId) => {
const newUrl = `${window.location.pathname}?page=${pageId}`;
window.history.pushState({ page: pageId }, '', newUrl);
};
// Handle browser back/forward buttons
useEffect(() => {
const handlePopState = (event) => {
const urlParams = new URLSearchParams(window.location.search);
const pageFromUrl = urlParams.get('page') || 'Dashboard';
if (pages.some(page => page.id === pageFromUrl)) {
setActivePage(pageFromUrl);
}
};
window.addEventListener('popstate', handlePopState);
return () => window.removeEventListener('popstate', handlePopState);
}, []);
const currentPage = pages.find(page => page.id === activePage);
const CurrentComponent = currentPage?.component || Dashboard;
const handlePageChange = (pageId) => {
setActivePage(pageId);
updateURL(pageId);
};
// Handle activity completion to update stats immediately
const handleActivityComplete = async (activity) => {
console.log('π― App.js handleActivityComplete called with:', activity);
// Log activity through auth manager if activity data is provided
if (activity && activity.type) {
console.log('π Logging activity through authManager...');
await authManager.logActivity(activity.description || 'Environmental action', {
type: activity.type,
amount: activity.amount,
points: activity.points || 10
});
console.log('β
Activity logged successfully');
}
// Update stats display
console.log('π Calling updateUserStats after activity completion...');
updateUserStats();
};
// Show loading screen first
if (isLoading) {
return <LoadingScreen />;
}
return (
<div className="terra-app">
{/* Sidebar */}
<div className="terra-sidebar open">
{/* Logo */}
<div className="terra-logo">
<div className="logo-container">
<div className="logo-icon">πΏ</div>
<div className="logo-text">
<h1>GreenPlus by GXS</h1>
<p>Environmental Intelligence Platform</p>
</div>
</div>
</div>
{/* Navigation */}
<div className="terra-nav">
{pages.map(page => (
<div
key={page.id}
className={`nav-item ${activePage === page.id ? 'active' : ''}`}
onClick={() => handlePageChange(page.id)}
>
<span className="nav-icon">{page.icon}</span>
<div className="nav-content">
<span className="nav-name">{page.name}</span>
<span className="nav-desc">{page.description}</span>
</div>
</div>
))}
</div>
</div>
{/* Main Content */}
<div className="terra-main">
{/* Header */}
<div className="terra-header">
<div className="header-left">
<h1 className="page-title">
<span className="title-icon">{currentPage?.icon}</span>
{currentPage?.name}
</h1>
<p className="page-subtitle">{currentPage?.description}</p>
</div>
<div className="header-right">
{/* User Info */}
{currentUser && (
<div style={{
display: 'flex',
alignItems: 'center',
gap: '15px',
marginRight: '20px'
}}>
<div
onClick={() => handlePageChange('Profile')}
style={{
display: 'flex',
alignItems: 'center',
gap: '8px',
background: 'rgba(255,255,255,0.1)',
padding: '8px 15px',
borderRadius: '20px',
cursor: 'pointer',
transition: 'background 0.2s'
}}
onMouseEnter={(e) => e.target.style.background = 'rgba(255,255,255,0.2)'}
onMouseLeave={(e) => e.target.style.background = 'rgba(255,255,255,0.1)'}
title="Click to view profile"
>
<span style={{ fontSize: '1.2rem' }}>{currentUser.avatar}</span>
<span style={{ color: 'white', fontWeight: 'bold' }}>
{currentUser.name}
</span>
{currentUser.isGuest && (
<span style={{
background: '#FF9800',
color: 'white',
padding: '2px 8px',
borderRadius: '10px',
fontSize: '0.7rem'
}}>
GUEST
</span>
)}
</div>
</div>
)}
<div className="header-stats">
<div className="header-stat">
<span>πΏ</span>
<div>
<div>{Math.round(userStats.carbonSaved)}</div>
<div>COβ Saved (kg)</div>
</div>
</div>
<div className="header-stat">
<span>π§</span>
<div>
<div>{userStats.waterTests}</div>
<div>Water Tests</div>
</div>
</div>
<div className="header-stat">
<span>π¦</span>
<div>
<div>{userStats.biodiversityScans}</div>
<div>Bio Scans</div>
</div>
</div>
<div className="header-stat">
<span>π³</span>
<div>
<div>{userStats.treesPlanted}</div>
<div>Trees Planted</div>
</div>
</div>
</div>
</div>
</div>
{/* Content */}
<div className="terra-content">
<CurrentComponent
onNavigate={handlePageChange}
onActivityComplete={handleActivityComplete}
onAuthChange={handleAuthChange}
userStats={userStats}
currentUser={currentUser}
isAuthenticated={currentUser && !currentUser.isGuest}
/>
</div>
</div>
</div>
);
}
export default App; |