File size: 10,237 Bytes
a640871 |
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 |
// router.js - Simple SPA router
import { renderHomePage, getHomePageSidebar } from './pages/HomePage.js';
import { renderAreaPage, getAreaPageSidebar } from './pages/AreaPage.js';
import { renderResourcesPage, getResourcesPageSidebar } from './pages/ResourcesPage.js';
class Router {
constructor() {
this.routes = {
'/': 'home',
'/home': 'home',
'/efficiency': 'efficiency',
'/personal': 'personal',
'/rights': 'rights',
'/ecosystems': 'ecosystems',
'/about': 'resources'
};
this.currentPage = null;
this.init();
}
init() {
// Handle initial page load
this.loadPage(window.location.pathname);
// Handle browser back/forward
window.addEventListener('popstate', (e) => {
const path = window.location.pathname;
const hash = window.location.hash;
const fullUrl = path + hash;
// Use navigateToUrl to ensure proper scroll behavior
this.navigateToUrl(fullUrl);
});
// Handle hash changes for navigation
window.addEventListener('hashchange', (e) => {
const hash = window.location.hash.substring(1);
if (hash) {
// Scroll to the section after a short delay to ensure content is loaded
setTimeout(() => this.scrollToSection(hash), 100);
}
});
// Handle initial hash if present
const initialHash = window.location.hash.substring(1);
if (initialHash) {
setTimeout(() => this.scrollToSection(initialHash), 200);
}
// Initialize unified navigation handling
this.initializeNavigation();
}
async loadPage(path) {
const route = this.routes[path] || 'home';
if (this.currentPage === route) {
// Same page, no need to reload
return;
}
this.currentPage = route;
try {
switch (route) {
case 'home':
await this.loadHomePage();
break;
case 'efficiency':
case 'personal':
case 'rights':
case 'ecosystems':
await this.loadAreaPage(route);
break;
case 'resources':
await this.loadResourcesPage();
break;
default:
await this.loadHomePage();
}
} catch (error) {
console.error('Error loading page:', error);
// Fallback to home page
await this.loadHomePage();
}
return Promise.resolve();
}
async loadHomePage() {
const mainContent = document.getElementById('main-content');
const leftSidebar = document.getElementById('left-sidebar');
if (!mainContent) {
return;
}
try {
// Get page content and sidebar
const homePage = renderHomePage();
// Update content
const contentContainer = mainContent.querySelector('.max-w-4xl') || mainContent;
contentContainer.innerHTML = homePage.content;
// Update sidebar if it exists
if (leftSidebar) {
leftSidebar.innerHTML = getHomePageSidebar();
}
// Initialize page
if (homePage.init) {
homePage.init();
}
// Update navigation state
this.updateNavigation('home');
} catch (error) {
// Fallback to error content
const contentContainer = mainContent.querySelector('.max-w-4xl') || mainContent;
contentContainer.innerHTML = `
<div class="bg-white rounded-lg shadow-sm p-8">
<h1 class="text-3xl font-bold text-red-600 mb-6">Error Loading Page</h1>
<p class="text-gray-700">Sorry, there was an error loading the home page.</p>
</div>
`;
}
}
async loadAreaPage(area) {
const mainContent = document.getElementById('main-content');
const leftSidebar = document.getElementById('left-sidebar');
if (!mainContent) {
return;
}
try {
// Get area page content and sidebar
const areaPage = renderAreaPage(area);
// Update content
const contentContainer = mainContent.querySelector('.max-w-4xl') || mainContent;
contentContainer.innerHTML = areaPage.content;
// Update sidebar
if (leftSidebar) {
leftSidebar.innerHTML = getAreaPageSidebar(area);
}
// Initialize page
if (areaPage.init) {
areaPage.init();
}
} catch (error) {
console.error(`Error loading ${area} page:`, error);
// Fallback content
const contentContainer = mainContent.querySelector('.max-w-4xl') || mainContent;
contentContainer.innerHTML = `
<div class="bg-white rounded-lg shadow-sm p-8">
<h1 class="text-3xl font-bold text-red-600 mb-6">Error Loading Page</h1>
<p class="text-gray-700">Sorry, there was an error loading the ${area} page.</p>
</div>
`;
}
this.updateNavigation(area);
}
async loadResourcesPage() {
const mainContent = document.getElementById('main-content');
const leftSidebar = document.getElementById('left-sidebar');
if (!mainContent) return;
try {
// Get resources page content and sidebar
const resourcesPage = renderResourcesPage();
// Update content
const contentContainer = mainContent.querySelector('.max-w-4xl') || mainContent;
contentContainer.innerHTML = resourcesPage.content;
// Update sidebar
if (leftSidebar) {
leftSidebar.innerHTML = getResourcesPageSidebar();
}
// Initialize page
if (resourcesPage.init) {
resourcesPage.init();
}
} catch (error) {
// Fallback content
const contentContainer = mainContent.querySelector('.max-w-4xl') || mainContent;
contentContainer.innerHTML = `
<div class="bg-white rounded-lg shadow-sm p-8">
<h1 class="text-3xl font-bold text-red-600 mb-6">Error Loading Page</h1>
<p class="text-gray-700">Sorry, there was an error loading the resources page.</p>
</div>
`;
}
this.updateNavigation('resources');
}
updateNavigation(currentPage) {
// Update header navigation active states
const navLinks = document.querySelectorAll('header nav a');
navLinks.forEach(link => {
link.classList.remove('text-blue-600', 'bg-blue-50');
link.classList.add('text-gray-700');
const href = link.getAttribute('href');
if ((currentPage === 'home' && (href === '/' || href === '/home')) ||
(currentPage === 'resources' && href === '/about') ||
(currentPage !== 'home' && currentPage !== 'resources' && href === `/${currentPage}`)) {
link.classList.remove('text-gray-700');
link.classList.add('text-blue-600', 'bg-blue-50');
}
});
}
initializeNavigation() {
// Use event delegation to handle all navigation links
document.addEventListener('click', (e) => {
const link = e.target.closest('a');
if (!link) return;
const href = link.getAttribute('href');
if (!href) return;
// Handle different types of links
if (href.startsWith('/') && !href.startsWith('/js/') && !href.startsWith('/css/') && !href.startsWith('/images/')) {
// Check if this is a known SPA route
const path = href.split('#')[0];
if (this.routes[path]) {
e.preventDefault();
this.navigateToUrl(href);
}
} else if (href.startsWith('#')) {
// Same-page hash navigation
e.preventDefault();
this.scrollToSection(href.substring(1));
}
// External links are handled normally by browser
});
}
navigateToUrl(fullUrl) {
// Parse URL into path and hash
const [path, hash] = fullUrl.split('#');
// Update browser URL
window.history.pushState({}, '', fullUrl);
// Load page and then handle hash
this.loadPage(path).then(() => {
if (hash) {
setTimeout(() => this.scrollToSection(hash), 100);
} else {
// No hash - scroll to top of page with a delay to ensure content is rendered
setTimeout(() => {
window.scrollTo({ top: 0, behavior: 'smooth' });
}, 100);
}
});
}
scrollToSection(sectionId) {
const element = document.getElementById(sectionId);
if (element) {
// Scroll to element with offset to show title
const elementRect = element.getBoundingClientRect();
const absoluteElementTop = elementRect.top + window.pageYOffset;
const offset = 120; // Account for fixed header + some padding
window.scrollTo({
top: absoluteElementTop - offset,
behavior: 'smooth'
});
}
}
}
// Export router instance
export const router = new Router();
|