Spaces:
Running
Running
File size: 18,880 Bytes
3c9c4f5 9c6b867 3c9c4f5 f4bce12 3c9c4f5 f4bce12 3c9c4f5 9c6b867 3c9c4f5 9c6b867 3c9c4f5 9c6b867 3c9c4f5 9c6b867 3c9c4f5 9c6b867 3c9c4f5 | 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 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 | /* ========================================
G1 Moves — Showcase App
======================================== */
(function () {
'use strict';
// ------------------------------------
// State
// ------------------------------------
let allClips = [];
let baseUrl = '';
let activeCategory = 'all';
const isMobile = window.matchMedia('(max-width: 480px)').matches;
const PAGE_SIZE = 12;
let currentPage = 0;
// ------------------------------------
// DOM refs
// ------------------------------------
const grid = document.getElementById('clip-grid');
const emptyState = document.getElementById('empty-state');
const modal = document.getElementById('pipeline-modal');
// ------------------------------------
// Init
// ------------------------------------
async function init() {
try {
const res = await fetch('data.json');
const data = await res.json();
allClips = data.clips;
baseUrl = data.base_url;
updateStats(data.stats);
filterAndRender();
setupCategoryButtons();
setupModal();
setupScrollReveal();
} catch (err) {
grid.innerHTML = '<p style="padding:2rem;color:#888;font-family:monospace;">Failed to load data.json</p>';
}
}
// ------------------------------------
// Stats
// ------------------------------------
function updateStats(stats) {
setText('stat-total', stats.total);
setText('stat-dance', stats.dance);
setText('stat-karate', stats.karate);
setText('stat-bonus', stats.bonus);
setText('stat-policies', stats.policies);
}
function setText(id, value) {
const el = document.getElementById(id);
if (el) el.textContent = value;
}
// ------------------------------------
// Filtering & Rendering
// ------------------------------------
let filteredClips = [];
let carouselIndex = 0;
function filterAndRender() {
filteredClips = activeCategory === 'all'
? allClips.slice()
: allClips.filter(c => c.category === activeCategory);
// Prioritize featured cards first, then trained models.
filteredClips.sort(function (a, b) {
var ar = a.featured_rank == null ? 999 : a.featured_rank;
var br = b.featured_rank == null ? 999 : b.featured_rank;
if (ar !== br) return ar - br;
if (a.has_policy && !b.has_policy) return -1;
if (!a.has_policy && b.has_policy) return 1;
return 0;
});
grid.innerHTML = '';
currentPage = 0;
emptyState.classList.toggle('visible', filteredClips.length === 0);
// Remove any existing pagination
var oldNav = document.getElementById('page-nav');
if (oldNav) oldNav.remove();
if (isMobile) {
carouselIndex = 0;
renderCarousel();
} else {
renderPage();
}
}
function totalPages() {
return Math.ceil(filteredClips.length / PAGE_SIZE);
}
function renderPage() {
grid.innerHTML = '';
var start = currentPage * PAGE_SIZE;
var end = Math.min(start + PAGE_SIZE, filteredClips.length);
var pageClips = filteredClips.slice(start, end);
pageClips.forEach(function (clip, i) {
var card = createCard(clip, start + i);
grid.appendChild(card);
});
observeLazyImages();
observeCardReveal();
updatePageNav();
// Scroll grid into view on page change
if (currentPage > 0) {
grid.scrollIntoView({ behavior: 'smooth', block: 'start' });
}
}
function updatePageNav() {
var oldNav = document.getElementById('page-nav');
if (oldNav) oldNav.remove();
var pages = totalPages();
if (pages <= 1) return;
var nav = document.createElement('div');
nav.id = 'page-nav';
nav.className = 'page-nav';
// Prev button
var prevBtn = document.createElement('button');
prevBtn.className = 'page-nav-btn';
prevBtn.disabled = currentPage === 0;
prevBtn.innerHTML = '<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="15 18 9 12 15 6"/></svg>';
prevBtn.setAttribute('aria-label', 'Previous page');
prevBtn.addEventListener('click', function () {
if (currentPage > 0) { currentPage--; renderPage(); }
});
// Counter
var counter = document.createElement('span');
counter.className = 'page-nav-counter';
counter.textContent = (currentPage + 1) + ' / ' + pages;
// Next button
var nextBtn = document.createElement('button');
nextBtn.className = 'page-nav-btn';
nextBtn.disabled = currentPage >= pages - 1;
nextBtn.innerHTML = '<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="9 18 15 12 9 6"/></svg>';
nextBtn.setAttribute('aria-label', 'Next page');
nextBtn.addEventListener('click', function () {
if (currentPage < pages - 1) { currentPage++; renderPage(); }
});
nav.appendChild(prevBtn);
nav.appendChild(counter);
nav.appendChild(nextBtn);
grid.parentNode.insertBefore(nav, grid.nextSibling);
}
// ------------------------------------
// Mobile carousel
// ------------------------------------
function renderCarousel() {
grid.innerHTML = '';
if (!filteredClips.length) return;
var wrap = document.createElement('div');
wrap.className = 'carousel';
// Counter
var counter = document.createElement('div');
counter.className = 'carousel-counter';
wrap.appendChild(counter);
// Card container
var cardWrap = document.createElement('div');
cardWrap.className = 'carousel-card-wrap';
wrap.appendChild(cardWrap);
// Nav buttons
var nav = document.createElement('div');
nav.className = 'carousel-nav';
var prevBtn = document.createElement('button');
prevBtn.className = 'carousel-btn';
prevBtn.innerHTML = '‹';
prevBtn.setAttribute('aria-label', 'Previous');
var nextBtn = document.createElement('button');
nextBtn.className = 'carousel-btn';
nextBtn.innerHTML = '›';
nextBtn.setAttribute('aria-label', 'Next');
nav.appendChild(prevBtn);
nav.appendChild(nextBtn);
wrap.appendChild(nav);
grid.appendChild(wrap);
function showCard(idx) {
carouselIndex = idx;
var clip = filteredClips[idx];
counter.textContent = (idx + 1) + ' / ' + filteredClips.length;
prevBtn.disabled = idx === 0;
nextBtn.disabled = idx === filteredClips.length - 1;
cardWrap.innerHTML = '';
var card = createCard(clip, idx);
card.classList.add('visible');
cardWrap.appendChild(card);
// Load preview media immediately
var lazyMedia = card.querySelector('img[data-src], video[data-src]');
if (lazyMedia && lazyMedia.dataset.src) {
lazyMedia.src = lazyMedia.dataset.src;
lazyMedia.removeAttribute('data-src');
}
}
prevBtn.addEventListener('click', function () {
if (carouselIndex > 0) showCard(carouselIndex - 1);
});
nextBtn.addEventListener('click', function () {
if (carouselIndex < filteredClips.length - 1) showCard(carouselIndex + 1);
});
// Swipe support
var touchStartX = 0;
wrap.addEventListener('touchstart', function (e) {
touchStartX = e.touches[0].clientX;
}, { passive: true });
wrap.addEventListener('touchend', function (e) {
var dx = e.changedTouches[0].clientX - touchStartX;
if (Math.abs(dx) > 50) {
if (dx < 0 && carouselIndex < filteredClips.length - 1) showCard(carouselIndex + 1);
if (dx > 0 && carouselIndex > 0) showCard(carouselIndex - 1);
}
}, { passive: true });
showCard(0);
}
// ------------------------------------
// Card creation
// ------------------------------------
function createCard(clip, index) {
const card = document.createElement('div');
card.className = 'clip-card';
card.dataset.clipId = clip.id;
var viewerUrl = 'viewer.html?clip=' + encodeURIComponent(clip.id) +
'&category=' + encodeURIComponent(clip.category) +
(clip.viewer_policy ? '&policy=' + encodeURIComponent(clip.viewer_policy) : '');
// Get preview media for cards — use uploaded policy MP4 renders from Space
var stageData = clip.stages.policy || clip.stages.training || clip.stages.retarget || clip.stages.capture;
var mediaSrc = stageData ? cardMediaUrl(stageData, clip) : null;
var isVideo = mediaSrc && mediaSrc.endsWith('.mp4');
var mediaHtml;
if (clip.supports_viewer) {
var iframeSrc = viewerUrl + '&embed=1';
mediaHtml = '<iframe class="card-viewer-frame" src="' + iframeSrc + '" ' +
'title="' + escHtml(clip.name) + ' live policy viewer" loading="lazy" ' +
'allowtransparency="true"></iframe>';
} else if (mediaSrc) {
mediaHtml = isVideo
? '<video data-src="' + mediaSrc + '" autoplay muted loop playsinline preload="none" class="lazy-video"></video>'
: '<img data-src="' + mediaSrc + '" alt="' + escHtml(clip.name) + '" loading="lazy">';
} else {
mediaHtml = '<div class="card-placeholder">Not available</div>';
}
card.innerHTML =
'<div class="card-media">' +
mediaHtml +
'<div class="card-duration">' + formatDuration(clip.duration) + '</div>' +
(clip.has_policy ? '<div class="card-badge">TRAINED</div>' : '') +
'</div>' +
'<div class="card-info">' +
'<div class="card-title">' + escHtml(clip.name) + '</div>' +
'<div class="card-meta">' +
'<span class="card-category">' + clip.category + '</span>' +
'<span class="card-separator"></span>' +
'<span>' + clip.performer + '</span>' +
'</div>' +
'<div class="card-actions">' +
(clip.supports_viewer
? '<a class="card-view-btn" href="' + viewerUrl + '" title="Run policy in browser">' +
'<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polygon points="5 3 19 12 5 21 5 3"/></svg>' +
'View' +
'</a>'
: '') +
'</div>' +
'</div>';
// Media click → open modal
card.querySelector('.card-media').addEventListener('click', function () {
openModal(clip);
});
return card;
}
// ------------------------------------
// Lazy loading
// ------------------------------------
var lazyObserver = null;
function observeLazyImages() {
if (!lazyObserver) {
lazyObserver = new IntersectionObserver(function (entries) {
entries.forEach(function (entry) {
if (entry.isIntersecting) {
var el = entry.target;
if (el.dataset.src) {
el.src = el.dataset.src;
}
lazyObserver.unobserve(el);
}
});
}, { rootMargin: '300px' });
}
var lazyMedia = grid.querySelectorAll('img[data-src], video[data-src]');
for (var i = 0; i < lazyMedia.length; i++) {
lazyObserver.observe(lazyMedia[i]);
}
}
// ------------------------------------
// Card reveal on scroll
// ------------------------------------
var revealObserver = null;
function observeCardReveal() {
if (!revealObserver) {
revealObserver = new IntersectionObserver(function (entries) {
entries.forEach(function (entry) {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
revealObserver.unobserve(entry.target);
}
});
}, { threshold: 0.05, rootMargin: '40px' });
}
var cards = grid.querySelectorAll('.clip-card:not(.visible)');
for (var i = 0; i < cards.length; i++) {
// Stagger the transition delay
cards[i].style.transitionDelay = (i * 0.04) + 's';
revealObserver.observe(cards[i]);
}
}
// ------------------------------------
// Category buttons
// ------------------------------------
function setupCategoryButtons() {
var btns = document.querySelectorAll('.category-btn');
for (var i = 0; i < btns.length; i++) {
btns[i].addEventListener('click', function () {
setActiveBtn('.category-btn', this);
activeCategory = this.dataset.category;
filterAndRender();
});
}
}
function setActiveBtn(selector, activeEl) {
var btns = document.querySelectorAll(selector);
for (var i = 0; i < btns.length; i++) {
btns[i].classList.toggle('active', btns[i] === activeEl);
}
}
// ------------------------------------
// Modal
// ------------------------------------
function setupModal() {
var closeBtn = modal.querySelector('.modal-close');
if (closeBtn) {
closeBtn.addEventListener('click', closeModal);
}
modal.addEventListener('click', function (e) {
if (e.target === modal) closeModal();
});
document.addEventListener('keydown', function (e) {
if (e.key === 'Escape') closeModal();
});
}
function openModal(clip) {
var stages = ['capture', 'retarget', 'training', 'policy'];
modal.querySelector('.modal-title').textContent = clip.name;
modal.querySelector('.modal-meta').textContent =
clip.category + ' · ' + clip.performer + ' · ' +
formatDuration(clip.duration) + ' · ' +
clip.frames + ' frames @ ' + clip.fps + ' fps';
var modalGrid = modal.querySelector('.modal-grid');
modalGrid.innerHTML = stages.map(function (s) {
var data = clip.stages[s];
var unavail = !data ? ' unavailable' : '';
var label = '<div class="modal-stage-label">' + s.toUpperCase() + '</div>';
var useViewer = s === 'policy' && clip.supports_viewer;
if (useViewer) {
var iframeSrc = 'viewer.html?clip=' + encodeURIComponent(clip.id) +
'&category=' + encodeURIComponent(clip.category) +
(clip.viewer_policy ? '&policy=' + encodeURIComponent(clip.viewer_policy) : '') +
'&embed=1';
return '<div class="modal-stage">' +
label +
'<iframe src="' + iframeSrc + '" style="width:100%;height:100%;border:none;min-height:300px;" allowtransparency="true"></iframe>' +
'</div>';
}
if (data) {
var src = mediaUrl(data);
if (src) {
var isVid = src && src.endsWith('.mp4');
var mediaTag = isVid
? '<video src="' + src + '" autoplay muted loop playsinline></video>'
: '<img src="' + src + '" alt="' + escHtml(clip.name) + ' ' + s + '" loading="lazy">';
return '<div class="modal-stage' + unavail + '">' +
label + mediaTag +
'</div>';
}
if (data.artifacts || data.status) {
var links = (data.artifacts || []).map(function (a) {
var href = baseUrl ? baseUrl + '/' + a.url : a.url;
return '<a href="' + href + '" target="_blank" rel="noopener">' + escHtml(a.label) + '</a>';
}).join('');
return '<div class="modal-stage artifact-stage">' +
label +
'<div class="modal-placeholder available">' + escHtml(data.status || 'Available') +
(links ? '<div class="artifact-links">' + links + '</div>' : '') +
'</div>' +
'</div>';
}
}
return '<div class="modal-stage' + unavail + '">' +
label +
'<div class="modal-placeholder">Not yet available</div>' +
'</div>';
}).join('');
modal.classList.add('open');
document.body.style.overflow = 'hidden';
}
function closeModal() {
modal.classList.remove('open');
document.body.style.overflow = '';
// Pause modal videos to stop background playback
var videos = modal.querySelectorAll('video');
for (var i = 0; i < videos.length; i++) {
videos[i].pause();
}
}
// ------------------------------------
// Scroll reveal for sections
// ------------------------------------
function setupScrollReveal() {
var sections = document.querySelectorAll('.reveal');
if (!sections.length) return;
var observer = new IntersectionObserver(function (entries) {
entries.forEach(function (entry) {
if (entry.isIntersecting) {
entry.target.classList.add('revealed');
observer.unobserve(entry.target);
}
});
}, { threshold: 0.1 });
for (var i = 0; i < sections.length; i++) {
observer.observe(sections[i]);
}
}
// ------------------------------------
// Utils
// ------------------------------------
function mediaUrl(stageData) {
var file = stageData.mp4 || stageData.gif;
if (!file) return null;
return baseUrl ? baseUrl + '/' + file : file;
}
function cardMediaUrl(stageData, clip) {
// Use Space-hosted policy renders only when a visual policy render exists.
if (clip && clip.has_policy && clip.stages && clip.stages.policy &&
(clip.stages.policy.mp4 || clip.stages.policy.gif) && clip.viewer_policy !== 'policy_154') {
return 'media/' + clip.category + '/' + clip.id + '/policy/' + clip.id + '_policy.mp4';
}
var file = stageData.mp4 || stageData.gif;
if (!file) return null;
return baseUrl ? baseUrl + '/' + file : file;
}
function formatDuration(seconds) {
var m = Math.floor(seconds / 60);
var s = Math.round(seconds % 60);
return m + ':' + (s < 10 ? '0' : '') + s;
}
function escHtml(str) {
var div = document.createElement('div');
div.textContent = str;
return div.innerHTML;
}
// ------------------------------------
// Citation copy
// ------------------------------------
function initCitation() {
const btn = document.querySelector('.citation-copy');
if (!btn) return;
btn.addEventListener('click', () => {
const code = document.querySelector('.citation-block code');
if (!code) return;
navigator.clipboard.writeText(code.textContent.trim()).then(() => {
btn.classList.add('copied');
btn.innerHTML = '<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>';
setTimeout(() => {
btn.classList.remove('copied');
btn.innerHTML = '<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="9" y="9" width="13" height="13" rx="2" ry="2"/><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"/></svg>';
}, 2000);
});
});
}
// ------------------------------------
// Boot
// ------------------------------------
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', () => { init(); initCitation(); });
} else {
init();
initCitation();
}
})();
|