Spaces:
Running
Running
File size: 16,038 Bytes
65007f7 c5da84a 95d9286 c5da84a a75a7dd c5da84a a75a7dd c5da84a 465cac7 c5da84a 465cac7 c5da84a 465cac7 a75a7dd 465cac7 a75a7dd 465cac7 a75a7dd c5da84a 465cac7 c5da84a 639d776 465cac7 639d776 c5da84a 465cac7 c5da84a 639d776 465cac7 d10bcd5 465cac7 d10bcd5 465cac7 d10bcd5 db721fa c5da84a 639d776 c5da84a 465cac7 d10bcd5 763a290 95d9286 763a290 a75a7dd 95d9286 639d776 465cac7 763a290 465cac7 c5da84a e812f40 465cac7 c5da84a 95d9286 1f40e45 a75a7dd d10bcd5 db721fa e812f40 db721fa a75a7dd db721fa e812f40 db721fa e812f40 db721fa a75a7dd db721fa 95d9286 db721fa c00d1eb 95d9286 db721fa 95d9286 db721fa c00d1eb 95d9286 db721fa a75a7dd db721fa a75a7dd 763a290 a75a7dd 763a290 a75a7dd 465cac7 a75a7dd db721fa 090021b 65007f7 090021b a75a7dd db721fa 465cac7 763a290 a75a7dd 763a290 a75a7dd 763a290 a75a7dd 763a290 a75a7dd 763a290 03e2bfb 763a290 65007f7 763a290 be41f1e 03e2bfb 763a290 65007f7 763a290 a75a7dd 763a290 65007f7 763a290 a75a7dd 763a290 65007f7 763a290 95d9286 763a290 65007f7 763a290 a75a7dd 763a290 95d9286 | 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 | // interface.js
// ==============================
// interface.js
// ==============================
// Store a reference to the <script> tag that loaded this file
const currentScriptTag = document.currentScript;
(async function() {
// βββ 1. Locate the <script> and read data-config βββββββββββββββββββββββββββββββ
let scriptTag = currentScriptTag;
if (!scriptTag) {
const scripts = document.getElementsByTagName('script');
for (let i = 0; i < scripts.length; i++) {
if (scripts[i].src.includes('interface.js') && scripts[i].hasAttribute('data-config')) {
scriptTag = scripts[i];
break;
}
}
if (!scriptTag && scripts.length > 0) {
scriptTag = scripts[scripts.length - 1];
}
}
const configUrl = scriptTag.getAttribute('data-config');
let config = {};
if (configUrl) {
try {
const response = await fetch(configUrl);
config = await response.json();
} catch (error) {
console.error("Error loading config file:", error);
return;
}
} else {
console.error("No config file provided. Please set a data-config attribute on the <script> tag.");
return;
}
// βββ 2. If config.css_url is provided, inject a <link> to that CSS βββββββββββββ
if (config.css_url) {
const linkEl = document.createElement('link');
linkEl.rel = "stylesheet";
linkEl.href = config.css_url;
document.head.appendChild(linkEl);
}
// βββ 3. Generate a unique instanceId for this widget βββββββββββββββββββββββββββ
const instanceId = Math.random().toString(36).substr(2, 8);
// βββ 4. Compute the aspect ratio (padding-bottom %) ββββββββββββββββββββββββββββ
let aspectPercent = "100%";
if (config.aspect) {
if (config.aspect.includes(":")) {
const parts = config.aspect.split(":");
const w = parseFloat(parts[0]);
const h = parseFloat(parts[1]);
if (!isNaN(w) && !isNaN(h) && w > 0) {
aspectPercent = (h / w * 100) + "%";
}
} else {
const aspectValue = parseFloat(config.aspect);
if (!isNaN(aspectValue) && aspectValue > 0) {
aspectPercent = (100 / aspectValue) + "%";
}
}
} else {
const parentContainer = scriptTag.parentNode;
const containerWidth = parentContainer.offsetWidth;
const containerHeight = parentContainer.offsetHeight;
if (containerWidth > 0 && containerHeight > 0) {
aspectPercent = (containerHeight / containerWidth * 100) + "%";
}
}
// βββ 5. Create the widget container (no GIF preview, no close button) βββββββββββ
const widgetContainer = document.createElement('div');
widgetContainer.id = 'ply-widget-container-' + instanceId;
widgetContainer.classList.add('ply-widget-container');
widgetContainer.style.height = "0";
widgetContainer.style.paddingBottom = aspectPercent;
widgetContainer.setAttribute('data-original-aspect', aspectPercent);
// Conditionally include the βtooltips-toggleβ button only if config.tooltips_url is defined
const tooltipsButtonHTML = config.tooltips_url
? `<button id="tooltips-toggle-${instanceId}" class="widget-button tooltips-toggle">β¦Ώ</button>`
: '';
// Add the 3D-viewer HTML + tooltip + help HTML
widgetContainer.innerHTML = `
<div id="viewer-container-${instanceId}" class="viewer-container">
<div id="progress-dialog-${instanceId}" class="progress-dialog">
<progress id="progress-indicator-${instanceId}" max="100" value="0"></progress>
</div>
<button id="fullscreen-toggle-${instanceId}" class="widget-button fullscreen-toggle">β±</button>
<button id="help-toggle-${instanceId}" class="widget-button help-toggle">?</button>
<button id="reset-camera-btn-${instanceId}" class="widget-button reset-camera-btn">
<span class="reset-icon">β²</span>
</button>
${tooltipsButtonHTML}
<div id="menu-content-${instanceId}" class="menu-content">
<span id="help-close-${instanceId}" class="help-close">Γ</span>
<div class="help-text"></div>
</div>
</div>
<div id="tooltip-panel" class="tooltip-panel" style="display: none;">
<div class="tooltip-content">
<span id="tooltip-close" class="tooltip-close">Γ</span>
<div id="tooltip-text" class="tooltip-text"></div>
<img id="tooltip-image" class="tooltip-image" src="" alt="" style="display: none;" />
</div>
</div>
`;
// Append the widget container immediately after the <script> tag
scriptTag.parentNode.appendChild(widgetContainer);
// βββ 6. Grab references to new DOM elements ββββββββββββββββββββββββββββββββββ
const viewerContainerElem = document.getElementById('viewer-container-' + instanceId);
const fullscreenToggle = document.getElementById('fullscreen-toggle-' + instanceId);
const helpToggle = document.getElementById('help-toggle-' + instanceId);
const helpCloseBtn = document.getElementById('help-close-' + instanceId);
const resetCameraBtn = document.getElementById('reset-camera-btn-' + instanceId);
const tooltipsToggleBtn = document.getElementById('tooltips-toggle-' + instanceId);
const menuContent = document.getElementById('menu-content-' + instanceId);
const helpTextDiv = menuContent.querySelector('.help-text');
// Tooltip panel elements
const tooltipPanel = document.getElementById('tooltip-panel');
const tooltipTextDiv = document.getElementById('tooltip-text');
const tooltipImage = document.getElementById('tooltip-image');
const tooltipCloseBtn = document.getElementById('tooltip-close');
// βββ 6a. Detect mobile vs. desktop ββββββββββββββββββββββββββββββββββββββββββββ
const isIOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;
const isMobile = isIOS || /Android/i.test(navigator.userAgent);
// Conditionally include the French tooltip instruction line if tooltips_url exists
const tooltipInstruction = config.tooltips_url
? '- Cliquez sur β¦Ώ pour afficher/masquer les tooltips.<br>'
: '';
// Fill help text with instructions plus the two new French lines
if (isMobile) {
helpTextDiv.innerHTML = `
- Pour vous dΓ©placer, glissez deux doigts sur l'Γ©cran.<br>
- Pour orbiter, utilisez un doigt.<br>
- Pour zoomer, pincez avec deux doigts.<br>
${tooltipInstruction}
- β² RΓ©initialise la camΓ©ra.<br>
- β± Passe en plein Γ©cran.<br>
`;
} else {
helpTextDiv.innerHTML = `
- orbitez avec le clic droit<br>
- zoomez avec la molette<br>
- dΓ©placez vous avec le clic gauche<br>
${tooltipInstruction}
- β² RΓ©initialise la camΓ©ra.<br>
- β± Passe en plein Γ©cran.<br>
`;
}
// Ensure instructions panel is visible by default
menuContent.style.display = 'block';
viewerContainerElem.style.display = 'block';
// Variable to hold the drag-hide listener reference
let dragHide = null;
// Utilities to hide panels
function hideTooltipPanel() {
if (dragHide) {
viewerContainerElem.removeEventListener('pointermove', dragHide);
dragHide = null;
}
tooltipPanel.style.display = 'none';
}
function hideHelpPanel() {
menuContent.style.display = 'none';
}
// βββ 7. Dynamically load viewer.js βββββββββββββββββββββββββββββββββββββββββ
let viewerModule;
try {
viewerModule = await import('https://mikafil-viewer-gs.static.hf.space/viewer.js');
await viewerModule.initializeViewer(config, instanceId);
} catch (err) {
console.error("Failed to load viewer.js or initialize the 3D viewer:", err);
return;
}
const canvasId = 'canvas-' + instanceId;
const canvasEl = document.getElementById(canvasId);
// βββ 8. Conditional display of tooltips-toggle button βββββββββββββββββββββββββ
if (tooltipsToggleBtn) {
if (!config.tooltips_url) {
tooltipsToggleBtn.style.display = 'none';
} else {
fetch(config.tooltips_url)
.then(resp => { if (!resp.ok) tooltipsToggleBtn.style.display = 'none'; })
.catch(() => { tooltipsToggleBtn.style.display = 'none'; });
}
}
// βββ 9. Fullscreen / state-preservation logic βββββββββββββββββββββββββββββββ
let isFullscreen = false;
let savedState = null;
function saveCurrentState() {
if (isFullscreen) return;
const computedWidget = window.getComputedStyle(widgetContainer);
const computedViewer = window.getComputedStyle(viewerContainerElem);
const originalAspect = widgetContainer.getAttribute('data-original-aspect') || aspectPercent;
savedState = {
widget: {
position: widgetContainer.style.position,
top: widgetContainer.style.top,
left: widgetContainer.style.left,
width: widgetContainer.style.width,
height: widgetContainer.style.height,
maxWidth: widgetContainer.style.maxWidth,
maxHeight:widgetContainer.style.maxHeight,
paddingBottom: widgetContainer.style.paddingBottom || originalAspect,
margin: widgetContainer.style.margin,
},
viewer: {
borderRadius: viewerContainerElem.style.borderRadius,
border: viewerContainerElem.style.border,
}
};
}
function restoreOriginalStyles() {
if (!savedState) return;
const aspectToUse = savedState.widget.paddingBottom;
widgetContainer.style.position = savedState.widget.position || "";
widgetContainer.style.top = savedState.widget.top || "";
widgetContainer.style.left = savedState.widget.left || "";
widgetContainer.style.width = "100%";
widgetContainer.style.height = "0";
widgetContainer.style.maxWidth = savedState.widget.maxWidth || "";
widgetContainer.style.maxHeight = savedState.widget.maxHeight || "";
widgetContainer.style.paddingBottom= aspectToUse;
widgetContainer.style.margin = savedState.widget.margin || "";
widgetContainer.classList.remove('fake-fullscreen');
viewerContainerElem.style.position = "absolute";
viewerContainerElem.style.top = "0";
viewerContainerElem.style.left = "0";
viewerContainerElem.style.right = "0";
viewerContainerElem.style.bottom = "0";
viewerContainerElem.style.width = "100%";
viewerContainerElem.style.height = "100%";
viewerContainerElem.style.borderRadius = savedState.viewer.borderRadius || "";
viewerContainerElem.style.border = savedState.viewer.border || "";
if (viewerModule.app) {
viewerModule.app.resizeCanvas(
viewerContainerElem.clientWidth,
viewerContainerElem.clientHeight
);
}
savedState = null;
}
function applyFullscreenStyles() {
widgetContainer.style.position = 'fixed';
widgetContainer.style.top = '0';
widgetContainer.style.left = '0';
widgetContainer.style.width = '100vw';
widgetContainer.style.height = '100vh';
widgetContainer.style.maxWidth = '100vw';
widgetContainer.style.maxHeight = '100vh';
widgetContainer.style.paddingBottom = '0';
widgetContainer.style.margin = '0';
widgetContainer.style.border = 'none';
widgetContainer.style.borderRadius = '0';
viewerContainerElem.style.width = '100%';
viewerContainerElem.style.height = '100%';
viewerContainerElem.style.borderRadius= '0';
viewerContainerElem.style.border = 'none';
if (viewerModule.app) {
viewerModule.app.resizeCanvas(window.innerWidth, window.innerHeight);
}
fullscreenToggle.textContent = 'β²';
isFullscreen = true;
}
function enterFullscreen() {
if (!savedState) saveCurrentState();
if (isIOS) {
applyFullscreenStyles();
widgetContainer.classList.add('fake-fullscreen');
} else if (widgetContainer.requestFullscreen) {
widgetContainer.requestFullscreen()
.then(applyFullscreenStyles)
.catch(() => {
applyFullscreenStyles();
widgetContainer.classList.add('fake-fullscreen');
});
} else {
applyFullscreenStyles();
widgetContainer.classList.add('fake-fullscreen');
}
}
function exitFullscreen() {
if (document.fullscreenElement === widgetContainer && document.exitFullscreen) {
document.exitFullscreen().catch(() => {});
}
widgetContainer.classList.remove('fake-fullscreen');
restoreOriginalStyles();
isFullscreen = false;
}
// βββ 10. Hook up event listeners βββββββββββββββββββββββββββββββββββββββββββ
fullscreenToggle.addEventListener('click', () => {
hideTooltipPanel();
isFullscreen ? exitFullscreen() : enterFullscreen();
});
document.addEventListener('fullscreenchange', () => {
if (!document.fullscreenElement && isFullscreen) {
isFullscreen = false;
restoreOriginalStyles();
}
});
helpToggle.addEventListener('click', (e) => {
hideTooltipPanel();
e.stopPropagation();
menuContent.style.display = menuContent.style.display === 'block' ? 'none' : 'block';
});
helpCloseBtn.addEventListener('click', hideHelpPanel);
resetCameraBtn.addEventListener('click', () => {
hideTooltipPanel();
if (viewerModule.resetViewerCamera) {
viewerModule.resetViewerCamera();
}
});
if (tooltipsToggleBtn) {
let tooltipsVisible = !!config.showTooltipsDefault;
tooltipsToggleBtn.style.opacity = tooltipsVisible ? '1' : '0.5';
tooltipsToggleBtn.addEventListener('click', () => {
hideTooltipPanel();
tooltipsVisible = !tooltipsVisible;
tooltipsToggleBtn.style.opacity = tooltipsVisible ? '1' : '0.5';
document.dispatchEvent(new CustomEvent('toggle-tooltips', { detail: { visible: tooltipsVisible } }));
});
}
tooltipCloseBtn.addEventListener('click', hideTooltipPanel);
document.addEventListener('tooltip-selected', (evt) => {
const { title, description, imgUrl } = evt.detail;
tooltipTextDiv.innerHTML = `<strong>${title}</strong><br>${description}`;
if (imgUrl) {
tooltipImage.src = imgUrl;
tooltipImage.style.display = 'block';
} else {
tooltipImage.style.display = 'none';
}
tooltipPanel.style.display = 'flex';
dragHide = (e) => {
if ((e.pointerType === 'mouse' && e.buttons !== 0) || e.pointerType === 'touch') {
hideTooltipPanel();
}
};
viewerContainerElem.addEventListener('pointermove', dragHide);
});
if (canvasEl) {
canvasEl.addEventListener('wheel', hideTooltipPanel, { passive: true });
}
document.addEventListener('keydown', (e) => {
if ((e.key === 'Escape' || e.key === 'Esc') && isFullscreen) exitFullscreen();
});
window.addEventListener('resize', () => {
if (viewerModule.app) {
if (isFullscreen) {
viewerModule.app.resizeCanvas(window.innerWidth, window.innerHeight);
} else {
viewerModule.app.resizeCanvas(
viewerContainerElem.clientWidth,
viewerContainerElem.clientHeight
);
}
}
});
// Save βinitial stateβ after a brief delay
setTimeout(() => {
saveCurrentState();
document.dispatchEvent(new CustomEvent('toggle-tooltips', { detail: { visible: !!config.showTooltipsDefault } }));
}, 200);
})();
|