-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
384 lines (306 loc) · 10.8 KB
/
script.js
File metadata and controls
384 lines (306 loc) · 10.8 KB
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
/* ========================================
BIODYN — Interactive Scripts
======================================== */
document.addEventListener('DOMContentLoaded', () => {
const DATA_URL = 'content/site-data.json';
const portfolioList = document.getElementById('portfolioList');
const articlesList = document.getElementById('articlesList');
const revealObserver = new IntersectionObserver((entries) => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
revealObserver.unobserve(entry.target);
}
});
}, {
threshold: 0.1,
rootMargin: '0px 0px -40px 0px'
});
const observeReveals = (root = document) => {
root.querySelectorAll('.reveal').forEach((element) => {
revealObserver.observe(element);
});
};
const normalizeText = (value, fallback = '') => {
if (typeof value !== 'string') {
return fallback;
}
const trimmed = value.trim();
return trimmed || fallback;
};
const normalizeStatus = (value) => normalizeText(value, 'Active');
const statusClassFromLabel = (statusLabel) => {
const status = statusLabel.toLowerCase();
if (status === 'active') {
return 'status-active';
}
if (status === 'watchlist') {
return 'status-watchlist';
}
if (status === 'completed') {
return 'status-completed';
}
if (status === 'paused') {
return 'status-paused';
}
return 'status-watchlist';
};
const createProjectElement = (project, index) => {
const item = document.createElement('div');
item.className = `portfolio-item reveal reveal-delay-${(index % 5) + 1}`;
const rank = document.createElement('span');
rank.className = 'portfolio-rank';
rank.textContent = `#${index + 1}`;
const info = document.createElement('div');
info.className = 'portfolio-info';
const title = normalizeText(project.title, `Project ${index + 1}`);
const summary = normalizeText(project.summary);
const url = normalizeText(project.url);
if (url) {
const titleLink = document.createElement('a');
titleLink.className = 'portfolio-title-link';
titleLink.href = url;
titleLink.target = '_blank';
titleLink.rel = 'noopener';
titleLink.textContent = title;
info.appendChild(titleLink);
} else {
const heading = document.createElement('h3');
heading.textContent = title;
info.appendChild(heading);
}
if (summary) {
const paragraph = document.createElement('p');
paragraph.textContent = summary;
info.appendChild(paragraph);
}
const statusLabel = normalizeStatus(project.status);
const status = document.createElement('span');
status.className = `portfolio-status ${statusClassFromLabel(statusLabel)}`;
status.textContent = statusLabel;
item.append(rank, info, status);
return item;
};
const createArticleElement = (article, index) => {
const card = document.createElement('div');
card.className = `pub-card reveal reveal-delay-${(index % 4) + 1}`;
const type = document.createElement('div');
type.className = 'pub-type';
type.textContent = normalizeText(article.type, 'Research Output');
const titleText = normalizeText(article.title, `Article ${index + 1}`);
const url = normalizeText(article.url);
if (url) {
const titleLink = document.createElement('a');
titleLink.href = url;
titleLink.target = '_blank';
titleLink.rel = 'noopener';
titleLink.className = 'pub-title-link';
titleLink.textContent = titleText;
const heading = document.createElement('h3');
heading.appendChild(titleLink);
card.appendChild(type);
card.appendChild(heading);
} else {
const heading = document.createElement('h3');
heading.textContent = titleText;
card.appendChild(type);
card.appendChild(heading);
}
const summary = document.createElement('p');
summary.textContent = normalizeText(article.summary, 'No summary provided.');
const meta = document.createElement('div');
meta.className = 'pub-meta';
const primary = document.createElement('span');
primary.textContent = normalizeText(article.metaPrimary, '📄 Draft');
const tag = document.createElement('span');
tag.textContent = normalizeText(article.metaTag, '🏷️ Research');
meta.append(primary, tag);
card.append(summary, meta);
if (url) {
const link = document.createElement('a');
link.className = 'pub-link';
link.href = url;
link.target = '_blank';
link.rel = 'noopener';
link.textContent = normalizeText(article.linkText, 'Read article');
card.appendChild(link);
}
return card;
};
const renderProjects = (projects) => {
if (!portfolioList) {
return;
}
portfolioList.innerHTML = '';
if (!Array.isArray(projects) || projects.length === 0) {
const empty = document.createElement('p');
empty.className = 'content-empty';
empty.textContent = 'No projects yet. Add one in admin.';
portfolioList.appendChild(empty);
return;
}
const fragment = document.createDocumentFragment();
projects.forEach((project, index) => {
fragment.appendChild(createProjectElement(project, index));
});
portfolioList.appendChild(fragment);
observeReveals(portfolioList);
};
const renderArticles = (articles) => {
if (!articlesList) {
return;
}
articlesList.innerHTML = '';
if (!Array.isArray(articles) || articles.length === 0) {
const empty = document.createElement('p');
empty.className = 'content-empty';
empty.textContent = 'No articles yet. Add one in admin.';
articlesList.appendChild(empty);
return;
}
const fragment = document.createDocumentFragment();
articles.forEach((article, index) => {
fragment.appendChild(createArticleElement(article, index));
});
articlesList.appendChild(fragment);
observeReveals(articlesList);
};
const renderLoadError = () => {
const errorMessage = 'Unable to load site content. Open admin and verify content/site-data.json.';
if (portfolioList) {
portfolioList.innerHTML = `<p class="content-error">${errorMessage}</p>`;
}
if (articlesList) {
articlesList.innerHTML = `<p class="content-error">${errorMessage}</p>`;
}
};
const loadSiteData = async () => {
try {
const response = await fetch(DATA_URL, { cache: 'no-store' });
if (!response.ok) {
throw new Error(`Failed to fetch ${DATA_URL}: ${response.status}`);
}
const data = await response.json();
renderProjects(data.projects);
renderArticles(data.articles);
} catch (error) {
console.error('Content loading error:', error);
renderLoadError();
}
};
observeReveals(document);
loadSiteData();
// --- Nav Scroll Effect ---
const nav = document.getElementById('nav');
const handleNavScroll = () => {
if (window.scrollY > 60) {
nav.classList.add('scrolled');
} else {
nav.classList.remove('scrolled');
}
};
window.addEventListener('scroll', handleNavScroll, { passive: true });
handleNavScroll();
// --- Hamburger Menu ---
const hamburger = document.getElementById('hamburger');
const navLinks = document.getElementById('navLinks');
hamburger.addEventListener('click', () => {
hamburger.classList.toggle('active');
navLinks.classList.toggle('open');
document.body.style.overflow = navLinks.classList.contains('open') ? 'hidden' : '';
});
// Close menu on link click
navLinks.querySelectorAll('a').forEach((link) => {
link.addEventListener('click', () => {
hamburger.classList.remove('active');
navLinks.classList.remove('open');
document.body.style.overflow = '';
});
});
// --- Smooth Scroll for Anchor Links ---
document.querySelectorAll('a[href^="#"]').forEach((anchor) => {
anchor.addEventListener('click', function onAnchorClick(event) {
event.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
const offset = nav.offsetHeight + 20;
const targetPosition = target.getBoundingClientRect().top + window.scrollY - offset;
window.scrollTo({
top: targetPosition,
behavior: 'smooth'
});
}
});
});
// --- Animated Stat Counters ---
const statElements = document.querySelectorAll('.hero-stat h3');
let statsAnimated = false;
const animateCounter = (element) => {
const text = element.textContent;
const match = text.match(/(\d+)(\+?)/);
if (!match) {
return;
}
const target = Number.parseInt(match[1], 10);
const suffix = match[2] || '';
const duration = 1500;
const startTime = performance.now();
const update = (currentTime) => {
const elapsed = currentTime - startTime;
const progress = Math.min(elapsed / duration, 1);
// Ease out cubic
const eased = 1 - Math.pow(1 - progress, 3);
const current = Math.round(eased * target);
element.textContent = current + suffix;
if (progress < 1) {
requestAnimationFrame(update);
}
};
element.textContent = '0' + suffix;
requestAnimationFrame(update);
};
const statsObserver = new IntersectionObserver((entries) => {
entries.forEach((entry) => {
if (entry.isIntersecting && !statsAnimated) {
statsAnimated = true;
statElements.forEach((element) => animateCounter(element));
statsObserver.disconnect();
}
});
}, { threshold: 0.5 });
if (statElements.length > 0) {
statsObserver.observe(statElements[0].closest('.hero-stats'));
}
// --- Parallax on Hero Background ---
const hero = document.querySelector('.hero');
if (hero) {
window.addEventListener('scroll', () => {
const scrolled = window.scrollY;
if (scrolled < window.innerHeight) {
const meshBg = hero.querySelector('.mesh-bg');
if (meshBg) {
meshBg.style.transform = `translateY(${scrolled * 0.3}px)`;
}
}
}, { passive: true });
}
// --- Active Nav Link Highlight ---
const sections = document.querySelectorAll('section[id]');
const navLinksAll = document.querySelectorAll('.nav-links a[href^="#"]');
const highlightNav = () => {
let current = '';
sections.forEach((section) => {
const sectionTop = section.offsetTop - nav.offsetHeight - 100;
if (window.scrollY >= sectionTop) {
current = section.getAttribute('id');
}
});
navLinksAll.forEach((link) => {
link.style.color = '';
if (link.getAttribute('href') === '#' + current) {
link.style.color = 'var(--accent-cyan)';
}
});
};
window.addEventListener('scroll', highlightNav, { passive: true });
});