File size: 14,433 Bytes
d78a473 3ec0c6b d78a473 3ec0c6b d78a473 b64bd68 d78a473 66e2873 3ec0c6b d78a473 |
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 |
// Assembly Steps Data
const YOUTUBE_VIDEO_ID = "XGMdd38vHd0";
const stepsData = [
{ timestamp: "00:16", title: "Set all parts aside" },
{ timestamp: "00:30", title: "Stick Foot Pads" },
{ timestamp: "01:22", title: "Fix the USB Extension Cable and add the protective sleeve" },
{ timestamp: "02:58", title: "Insert the Power Board" },
{ timestamp: "03:17", title: "Fix the Power Board" },
{ timestamp: "04:06", title: "Connect the cables to the Power Board" },
{ timestamp: "05:26", title: "Position the Bottom Assembly" },
{ timestamp: "07:20", title: "Fix the Foot Assembly to the Bottom Assembly" },
{ timestamp: "08:15", title: "Connect the Foot Motor" },
{ timestamp: "09:15", title: "Screw the link rods onto the motors' arms" },
{ timestamp: "12:22", title: "Connect Motor 1 to 2" },
{ timestamp: "13:11", title: "Connect Motor 2 to 3" },
{ timestamp: "13:36", title: "Connect Motor 4 to 5" },
{ timestamp: "13:55", title: "Connect Motor 5 to 6" },
{ timestamp: "14:27", title: "Insert all motors into the Bottom Assembly" },
{ timestamp: "15:54", title: "Clip the motors' cables into the Bottom Assembly" },
{ timestamp: "19:00", title: "Position the Tricap" },
{ timestamp: "19:20", title: "Route the cables" },
{ timestamp: "19:51", title: "Connect Motor 3 to 4" },
{ timestamp: "20:40", title: "Route the cables" },
{ timestamp: "22:50", title: "Check rotation" },
{ timestamp: "24:36", title: "Screw the Tricap" },
{ timestamp: "26:05", title: "Screw the Bottom Head onto the link rods" },
{ timestamp: "30:00", title: "Route the cables through the Bottom Head" },
{ timestamp: "30:53", title: "Connect the flexible camera cable (step for reference only)" },
{ timestamp: "31:02", title: "Route the cables through the Head PCB" },
{ timestamp: "31:25", title: "Screw the Head PCB" },
{ timestamp: "32:31", title: "Position the Top Shell" },
{ timestamp: "33:02", title: "Screw the Top Shell" },
{ timestamp: "34:29", title: "Place the lenses in the Glasses Holder" },
{ timestamp: "34:39", title: "Insert the Fisheye Lenses into the caps" },
{ timestamp: "35:00", title: "Snap the Fisheye Lenses" },
{ timestamp: "35:47", title: "Screw the Glasses Assembly onto the Front Head Shell" },
{ timestamp: "36:49", title: "Attach the cases to Antennas' motors" },
{ timestamp: "37:07", title: "Fix Antennas' Assembly to Back Head Shell" },
{ timestamp: "38:39", title: "Connect the Antennas' motors" },
{ timestamp: "39:02", title: "Slide the Back Head Assembly onto the Reachy Mini body" },
{ timestamp: "39:22", title: "Screw the Back Head" },
{ timestamp: "40:07", title: "Fix the Cable Holder" },
{ timestamp: "41:53", title: "Connect Speaker and Motors' Cables" },
{ timestamp: "42:17", title: "Connect Power and USB Extension Cables" },
{ timestamp: "42:33", title: "Slide the Top Head Assembly onto the Back Head" },
{ timestamp: "42:49", title: "Connect the Flexible Printed Cable to the Head PCB" },
{ timestamp: "42:58", title: "Connect the Flexible Camera Cable on the Front Head" },
{ timestamp: "43:50", title: "Fix the Front Head" },
{ timestamp: "45:03", title: "Fix the Antennas" },
];
// Convert timestamp string "MM:SS" or "HH:MM:SS" to seconds
function parseTimestamp(ts: string): number {
const parts = ts.split(':').map(Number);
if (parts.length === 2) {
return parts[0] * 60 + parts[1];
}
return parts[0] * 3600 + parts[1] * 60 + parts[2];
}
// Create assembly steps with parsed timestamps
const assemblySteps = stepsData.map((step, index) => ({
id: index + 1,
title: step.title,
timestamp: step.timestamp,
timestampSeconds: parseTimestamp(step.timestamp)
}));
const TOTAL_STEPS = assemblySteps.length;
// Available step images
const availableImages = {
1: "assets/step1.jpg",
2: "assets/step2.jpg",
3: "assets/step3.jpg",
4: "assets/step4.jpg",
5: "assets/step5.jpg",
6: "assets/step6.jpg",
7: "assets/step7.jpg",
8: "assets/step8.jpg",
9: "assets/step9.jpg",
10: "assets/step10.jpg",
11: "assets/step11.jpg",
12: "assets/step12.jpg",
13: "assets/step13.jpg",
14: "assets/step14.jpg",
15: "assets/step15.jpg",
16: "assets/step16.jpg",
17: "assets/step17.jpg",
18: "assets/step18.jpg",
19: "assets/step19.jpg",
20: "assets/step20.jpg",
21: "assets/step21.jpg",
22: "assets/step22.jpg",
23: "assets/step23.jpg",
24: "assets/step24.jpg",
25: "assets/step25.jpg",
26: "assets/step26.jpg",
27: "assets/step27.jpg",
28: "assets/step28.jpg",
29: "assets/step29.jpg",
30: "assets/step30.jpg",
31: "assets/step31.jpg",
32: "assets/step32.jpg",
33: "assets/step33.jpg",
34: "assets/step34.jpg",
35: "assets/step35.jpg",
36: "assets/step36.jpg",
37: "assets/step37.jpg",
38: "assets/step38.jpg",
39: "assets/step39.jpg",
40: "assets/step40.jpg",
41: "assets/step41.jpg",
42: "assets/step42.jpg",
43: "assets/step43.jpg",
44: "assets/step44.jpg",
45: "assets/step45.jpg",
46: "assets/step46.jpg",
47: "assets/step47.jpg",
};
function getStepImage(stepId) {
return availableImages[stepId] || null;
}
// App State
let currentStep = 1;
let isFullscreen = false;
let scale = 1;
let position = { x: 0, y: 0 };
let isDragging = false;
let dragStart = { x: 0, y: 0 };
// DOM Elements
const stepCounterText = document.getElementById('step-counter-text');
const stepImage = document.getElementById('step-image');
const placeholder = document.getElementById('placeholder');
const placeholderNumber = document.getElementById('placeholder-number');
const imageWrapper = document.getElementById('image-wrapper');
const youtubeIframeDesktop = document.getElementById('youtube-iframe-desktop');
const youtubeIframeMobile = document.getElementById('youtube-iframe-mobile');
const prevBtn = document.getElementById('prev-btn');
const nextBtn = document.getElementById('next-btn');
const stepIndicators = document.getElementById('step-indicators');
const progressBar = document.getElementById('progress-bar');
const fullscreenBtn = document.getElementById('fullscreen-btn');
const fullscreenModal = document.getElementById('fullscreen-modal');
const closeFullscreenBtn = document.getElementById('close-fullscreen-btn');
const fullscreenStepTitle = document.getElementById('fullscreen-step-title');
const fullscreenImage = document.getElementById('fullscreen-image');
const fullscreenPlaceholder = document.getElementById('fullscreen-placeholder');
const fullscreenPlaceholderNumber = document.getElementById('fullscreen-placeholder-number');
const fullscreenImageContainer = document.getElementById('fullscreen-image-container');
const fullscreenYoutubeIframeDesktop = document.getElementById('fullscreen-youtube-iframe-desktop');
const fullscreenYoutubeIframeMobile = document.getElementById('fullscreen-youtube-iframe-mobile');
const fullscreenPrevBtn = document.getElementById('fullscreen-prev-btn');
const fullscreenNextBtn = document.getElementById('fullscreen-next-btn');
const fullscreenStepIndicators = document.getElementById('fullscreen-step-indicators');
const fullscreenProgressBar = document.getElementById('fullscreen-progress-bar');
const zoomInBtn = document.getElementById('zoom-in-btn');
const zoomOutBtn = document.getElementById('zoom-out-btn');
const zoomLevel = document.getElementById('zoom-level');
// Update YouTube embed
function updateYouTubeEmbed(timestampSeconds) {
const embedUrl = `https://www.youtube.com/embed/${YOUTUBE_VIDEO_ID}?start=${timestampSeconds}&rel=0&autoplay=1&mute=1`;
youtubeIframeDesktop.src = embedUrl;
youtubeIframeMobile.src = embedUrl;
fullscreenYoutubeIframeDesktop.src = embedUrl;
fullscreenYoutubeIframeMobile.src = embedUrl;
}
// Render step indicators
function renderStepIndicators(containerId, currentStep, onClick) {
const container = document.getElementById(containerId);
container.innerHTML = '';
const groupStart = Math.floor((currentStep - 1) / 10) * 10 + 1;
for (let i = 0; i < 10; i++) {
const stepNum = groupStart + i;
if (stepNum > TOTAL_STEPS) break;
const isActive = stepNum === currentStep;
const button = document.createElement('button');
button.className = `step-indicator ${isActive ? 'step-indicator-active' : 'step-indicator-inactive'}`;
button.setAttribute('aria-label', `Go to step ${stepNum}`);
button.addEventListener('click', () => onClick(stepNum));
container.appendChild(button);
}
}
// Update UI
function updateUI() {
const step = assemblySteps[currentStep - 1];
const imageSrc = getStepImage(step.id);
// Update step counter
stepCounterText.textContent = `Step ${step.id}/${TOTAL_STEPS}`;
// Update image
if (imageSrc) {
stepImage.src = imageSrc;
stepImage.alt = `Assembly step ${step.id}`;
stepImage.classList.remove('hidden');
placeholder.classList.add('hidden');
} else {
stepImage.classList.add('hidden');
placeholder.classList.remove('hidden');
placeholderNumber.textContent = step.id;
}
// Update YouTube embed
updateYouTubeEmbed(step.timestampSeconds);
// Update buttons
prevBtn.disabled = currentStep === 1;
nextBtn.disabled = currentStep === TOTAL_STEPS;
// Update step indicators
renderStepIndicators('step-indicators', currentStep, goToStep);
// Update progress bar
const progress = (currentStep / TOTAL_STEPS) * 100;
progressBar.style.width = `${progress}%`;
// Update fullscreen UI
updateFullscreenUI();
}
// Update fullscreen UI
function updateFullscreenUI() {
const step = assemblySteps[currentStep - 1];
const imageSrc = getStepImage(step.id);
fullscreenStepTitle.textContent = `Step ${step.id}/${TOTAL_STEPS} - ${step.title}`;
if (imageSrc) {
fullscreenImage.src = imageSrc;
fullscreenImage.alt = `Step ${step.id}`;
fullscreenImage.classList.remove('hidden');
fullscreenPlaceholder.classList.add('hidden');
} else {
fullscreenImage.classList.add('hidden');
fullscreenPlaceholder.classList.remove('hidden');
fullscreenPlaceholderNumber.textContent = step.id;
}
fullscreenPrevBtn.disabled = currentStep === 1;
fullscreenNextBtn.disabled = currentStep === TOTAL_STEPS;
renderStepIndicators('fullscreen-step-indicators', currentStep, goToStepFullscreen);
const progress = (currentStep / TOTAL_STEPS) * 100;
fullscreenProgressBar.style.width = `${progress}%`;
updateZoomDisplay();
}
// Navigation functions
function goToPrevious() {
if (currentStep > 1) {
currentStep--;
updateUI();
}
}
function goToNext() {
if (currentStep < TOTAL_STEPS) {
currentStep++;
updateUI();
}
}
function goToStep(step) {
if (step >= 1 && step <= TOTAL_STEPS) {
currentStep = step;
updateUI();
}
}
function goToStepFullscreen(step) {
resetZoom();
goToStep(step);
}
function goToPreviousFullscreen() {
resetZoom();
goToPrevious();
}
function goToNextFullscreen() {
resetZoom();
goToNext();
}
// Fullscreen functions
function openFullscreen() {
isFullscreen = true;
fullscreenModal.classList.remove('hidden');
document.body.style.overflow = 'hidden';
updateFullscreenUI();
}
function closeFullscreen() {
isFullscreen = false;
fullscreenModal.classList.add('hidden');
document.body.style.overflow = '';
resetZoom();
}
// Zoom functions
function zoomIn() {
scale = Math.min(scale + 0.5, 4);
updateZoomDisplay();
}
function zoomOut() {
scale = Math.max(scale - 0.5, 0.5);
updateZoomDisplay();
}
function resetZoom() {
scale = 1;
position = { x: 0, y: 0 };
updateZoomDisplay();
}
function updateZoomDisplay() {
zoomLevel.textContent = `${Math.round(scale * 100)}%`;
fullscreenImage.style.transform = `translate(${position.x}px, ${position.y}px) scale(${scale})`;
}
// Drag functions for fullscreen image
function handleMouseDown(e) {
if (scale > 1) {
isDragging = true;
dragStart = {
x: e.clientX - position.x,
y: e.clientY - position.y
};
fullscreenImageContainer.style.cursor = 'grabbing';
}
}
function handleMouseMove(e) {
if (isDragging && scale > 1) {
position = {
x: e.clientX - dragStart.x,
y: e.clientY - dragStart.y
};
updateZoomDisplay();
}
}
function handleMouseUp() {
isDragging = false;
fullscreenImageContainer.style.cursor = 'grab';
}
function handleWheel(e) {
e.preventDefault();
const delta = e.deltaY > 0 ? -0.2 : 0.2;
scale = Math.max(0.5, Math.min(4, scale + delta));
updateZoomDisplay();
}
// Event Listeners
prevBtn.addEventListener('click', goToPrevious);
nextBtn.addEventListener('click', goToNext);
fullscreenBtn.addEventListener('click', openFullscreen);
stepImage.addEventListener('click', openFullscreen);
closeFullscreenBtn.addEventListener('click', closeFullscreen);
fullscreenPrevBtn.addEventListener('click', goToPreviousFullscreen);
fullscreenNextBtn.addEventListener('click', goToNextFullscreen);
zoomInBtn.addEventListener('click', zoomIn);
zoomOutBtn.addEventListener('click', zoomOut);
fullscreenImageContainer.addEventListener('mousedown', handleMouseDown);
fullscreenImageContainer.addEventListener('mousemove', handleMouseMove);
fullscreenImageContainer.addEventListener('mouseup', handleMouseUp);
fullscreenImageContainer.addEventListener('mouseleave', handleMouseUp);
fullscreenImageContainer.addEventListener('wheel', handleWheel, { passive: false });
// Keyboard navigation
document.addEventListener('keydown', (e) => {
if (isFullscreen) {
if (e.key === 'Escape') closeFullscreen();
if (e.key === '+' || e.key === '=') zoomIn();
if (e.key === '-') zoomOut();
if (e.key === '0') resetZoom();
if (e.key === 'ArrowLeft' && currentStep > 1) goToPreviousFullscreen();
if (e.key === 'ArrowRight' && currentStep < TOTAL_STEPS) goToNextFullscreen();
} else {
if (e.key === 'ArrowRight') goToNext();
if (e.key === 'ArrowLeft') goToPrevious();
}
});
// Initialize
updateUI();
|