Spaces:
Runtime error
Runtime error
File size: 17,721 Bytes
0a4881d | 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 | // JavaScript logic for FormaAI TRELLIS 3D Web UI
document.addEventListener("DOMContentLoaded", () => {
// DOM Elements
const uploadZone = document.getElementById("uploadZone");
const fileInput = document.getElementById("fileInput");
const uploadContent = document.getElementById("uploadContent");
const previewContainer = document.getElementById("previewContainer");
const imagePreview = document.getElementById("imagePreview");
const btnResetImage = document.getElementById("btnResetImage");
const generationForm = document.getElementById("generationForm");
const sessionIdInput = document.getElementById("sessionId");
const seedInput = document.getElementById("seed");
const randomizeSeedCheckbox = document.getElementById("randomizeSeed");
const btnGenerate = document.getElementById("btnGenerate");
const tabPreview = document.getElementById("tabPreview");
const tab3dViewer = document.getElementById("tab3dViewer");
const contentPreview = document.getElementById("contentPreview");
const content3dViewer = document.getElementById("content3dViewer");
const videoPlaceholder = document.getElementById("videoPlaceholder");
const videoContainer = document.getElementById("videoContainer");
const previewVideo = document.getElementById("previewVideo");
const glbViewer = document.getElementById("glbViewer");
const exportControls = document.getElementById("exportControls");
const btnExtractGlb = document.getElementById("btnExtractGlb");
const linkDownloadGlb = document.getElementById("linkDownloadGlb");
const linkDownloadPly = document.getElementById("linkDownloadPly");
const historyGallery = document.getElementById("historyGallery");
const galleryEmpty = document.getElementById("galleryEmpty");
const btnRefreshHistory = document.getElementById("btnRefreshHistory");
// Accordions
const accordions = document.querySelectorAll(".accordion-title");
accordions.forEach(acc => {
acc.addEventListener("click", () => {
acc.parentElement.classList.toggle("open");
});
});
// Seed Randomize behavior
randomizeSeedCheckbox.addEventListener("change", (e) => {
seedInput.disabled = e.target.checked;
});
// Tabs switching
tabPreview.addEventListener("click", () => {
tabPreview.classList.add("active");
tab3dViewer.classList.remove("active");
contentPreview.style.display = "block";
content3dViewer.style.display = "none";
});
tab3dViewer.addEventListener("click", () => {
tab3dViewer.classList.add("active");
tabPreview.classList.remove("active");
content3dViewer.style.display = "block";
contentPreview.style.display = "none";
});
// Upload & Preprocess logic
uploadZone.addEventListener("click", (e) => {
if (e.target !== btnResetImage && !btnResetImage.contains(e.target)) {
fileInput.click();
}
});
uploadZone.addEventListener("dragover", (e) => {
e.preventDefault();
uploadZone.classList.add("dragover");
});
uploadZone.addEventListener("dragleave", () => {
uploadZone.classList.remove("dragover");
});
uploadZone.addEventListener("drop", (e) => {
e.preventDefault();
uploadZone.classList.remove("dragover");
const files = e.dataTransfer.files;
if (files.length > 0) {
handleImageUpload(files[0]);
}
});
fileInput.addEventListener("change", (e) => {
const files = e.target.files;
if (files.length > 0) {
handleImageUpload(files[0]);
}
});
btnResetImage.addEventListener("click", (e) => {
e.stopPropagation();
resetImageUpload();
});
function showToast(message, type = "info") {
const toastContainer = document.getElementById("toastContainer");
const toast = document.createElement("div");
toast.className = `toast ${type}`;
let icon = "fa-info-circle";
if (type === "success") icon = "fa-check-circle";
if (type === "warning") icon = "fa-exclamation-triangle";
if (type === "error") icon = "fa-exclamation-circle";
toast.innerHTML = `
<i class="fa-solid ${icon}"></i>
<span>${message}</span>
`;
toastContainer.appendChild(toast);
setTimeout(() => {
toast.style.opacity = "0";
toast.style.transform = "translateX(100%)";
setTimeout(() => toast.remove(), 300);
}, 4000);
}
function resetImageUpload() {
fileInput.value = "";
previewContainer.style.display = "none";
imagePreview.src = "";
uploadContent.style.display = "flex";
sessionIdInput.value = "";
btnGenerate.disabled = true;
}
async function handleImageUpload(file) {
// Show loading state
uploadContent.innerHTML = `
<i class="fa-solid fa-circle-notch fa-spin upload-icon" style="color: var(--primary);"></i>
<p class="upload-title">Обработка изображения...</p>
<p class="upload-subtitle">Удаление фона и кадрирование</p>
`;
const formData = new FormData();
formData.append("file", file);
try {
const response = await fetch("/api/preprocess", {
method: "POST",
body: formData
});
const data = await response.json();
if (!response.ok) throw new Error(data.detail || "Error during preprocessing");
// Show preview of processed image
imagePreview.src = data.processedUrl;
uploadContent.style.display = "none";
previewContainer.style.display = "block";
// Set session id
sessionIdInput.value = data.id;
btnGenerate.disabled = false;
showToast("Изображение обработано успешно!", "success");
} catch (error) {
console.error(error);
showToast("Ошибка при обработке изображения: " + error.message, "error");
resetImageUpload();
uploadContent.innerHTML = `
<i class="fa-solid fa-images upload-icon"></i>
<p class="upload-title">Перетащите изображение сюда</p>
<p class="upload-subtitle">или нажмите для выбора файла</p>
<span class="upload-limit">Поддержка PNG, JPG (будет автоматически удален фон)</span>
`;
}
}
// Generation Submit
generationForm.addEventListener("submit", async (e) => {
e.preventDefault();
const formData = new FormData(generationForm);
// UI loading state
const btnText = btnGenerate.querySelector(".btn-text");
const spinner = btnGenerate.querySelector(".spinner");
btnGenerate.disabled = true;
btnText.style.display = "none";
spinner.style.display = "inline-flex";
// Reset output elements
videoPlaceholder.style.display = "flex";
videoPlaceholder.innerHTML = `
<div class="placeholder-icon-wrap">
<i class="fa-solid fa-circle-notch fa-spin placeholder-icon" style="color: var(--primary);"></i>
</div>
<h3>Идет 3D генерация...</h3>
<p>Это может занять от 15 до 45 секунд в зависимости от загрузки GPU</p>
`;
videoContainer.style.display = "none";
tab3dViewer.disabled = true;
exportControls.style.display = "none";
showToast("Запущена генерация 3D модели...", "info");
try {
const response = await fetch("/api/generate", {
method: "POST",
body: formData
});
const data = await response.json();
if (!response.ok) throw new Error(data.detail || "Error during generation");
// Show video output
videoPlaceholder.style.display = "none";
videoContainer.style.display = "block";
previewVideo.src = data.videoUrl;
previewVideo.play();
// Setup download ply
linkDownloadPly.href = data.plyUrl;
linkDownloadPly.style.display = "inline-flex";
// Enable GLB extraction controls
exportControls.style.display = "block";
btnExtractGlb.disabled = false;
const btnExtractText = btnExtractGlb.querySelector(".btn-text");
const btnExtractSpinner = btnExtractGlb.querySelector(".spinner");
btnExtractText.style.display = "inline-flex";
btnExtractSpinner.style.display = "none";
// Disable GLB download button until extracted
linkDownloadGlb.classList.add("disabled");
linkDownloadGlb.href = "#";
showToast("Генерация завершена успешно!", "success");
loadHistoryGallery();
} catch (error) {
console.error(error);
showToast("Ошибка при генерации 3D: " + error.message, "error");
videoPlaceholder.innerHTML = `
<div class="placeholder-icon-wrap" style="background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.2)">
<i class="fa-solid fa-circle-exclamation placeholder-icon" style="color: var(--danger);"></i>
</div>
<h3>Ошибка генерации</h3>
<p>${error.message}</p>
`;
} finally {
btnText.style.display = "inline-flex";
spinner.style.display = "none";
btnGenerate.disabled = false;
}
});
// GLB Extraction
btnExtractGlb.addEventListener("click", async () => {
const id = sessionIdInput.value;
const meshSimplify = document.getElementById("meshSimplify").value;
const textureSize = document.getElementById("textureSize").value;
const formData = new FormData();
formData.append("id", id);
formData.append("mesh_simplify", meshSimplify);
formData.append("texture_size", textureSize);
// Loading state
btnExtractGlb.disabled = true;
const btnText = btnExtractGlb.querySelector(".btn-text");
const spinner = btnExtractGlb.querySelector(".spinner");
btnText.style.display = "none";
spinner.style.display = "inline-flex";
showToast("Запущено извлечение полигональной сетки и запекание текстур...", "info");
try {
const response = await fetch("/api/extract_glb", {
method: "POST",
body: formData
});
const data = await response.json();
if (!response.ok) throw new Error(data.detail || "Error during GLB extraction");
// Set GLB viewer source
glbViewer.src = data.glbUrl;
// Enable 3D Tab and switch
tab3dViewer.disabled = false;
tab3dViewer.click(); // Switch to 3D tab
// Enable GLB download link
linkDownloadGlb.classList.remove("disabled");
linkDownloadGlb.href = data.glbUrl;
showToast("GLB модель успешно извлечена!", "success");
loadHistoryGallery();
} catch (error) {
console.error(error);
showToast("Ошибка при извлечении GLB: " + error.message, "error");
} finally {
btnText.style.display = "inline-flex";
spinner.style.display = "none";
btnExtractGlb.disabled = false;
}
});
// Load History list
async function loadHistoryGallery() {
try {
const response = await fetch("/api/history");
const history = await response.json();
// Clear gallery
// Keep empty state element, but hide/show appropriately
const cards = historyGallery.querySelectorAll(".history-card");
cards.forEach(card => card.remove());
if (history.length === 0) {
galleryEmpty.style.display = "flex";
return;
}
galleryEmpty.style.display = "none";
history.forEach(item => {
const card = document.createElement("div");
card.className = "history-card";
card.id = `card-${item.id}`;
card.innerHTML = `
<div class="card-media">
<video src="${item.videoUrl}" loop muted playsinline autoplay></video>
<span class="card-badge">Seed: ${item.seed}</span>
<div class="card-delete" title="Удалить"><i class="fa-solid fa-trash"></i></div>
</div>
<div class="card-info">
<div class="card-title">Генерация #${item.id.slice(0, 8)}</div>
<div class="card-meta">Шаги: ${item.ss_sampling_steps}/${item.slat_sampling_steps}</div>
<div class="card-actions">
<button class="btn btn-secondary btn-sm btn-load-model" data-id="${item.id}" data-video="${item.videoUrl}" data-ply="${item.plyUrl}" data-glb="${item.glbUrl || ''}">
<i class="fa-solid fa-folder-open"></i> Загрузить
</button>
</div>
</div>
`;
// Bind delete event
const btnDelete = card.querySelector(".card-delete");
btnDelete.addEventListener("click", (e) => {
e.stopPropagation();
deleteHistoryItem(item.id);
});
// Bind load event
const btnLoad = card.querySelector(".btn-load-model");
btnLoad.addEventListener("click", () => {
loadModelToWorkspace(item);
});
historyGallery.appendChild(card);
});
} catch (error) {
console.error("Error loading history:", error);
}
}
async function deleteHistoryItem(id) {
if (!confirm("Вы уверены, что хотите удалить эту генерацию?")) return;
const formData = new FormData();
formData.append("id", id);
try {
const response = await fetch("/api/delete", {
method: "POST",
body: formData
});
if (response.ok) {
showToast("Генерация удалена", "info");
document.getElementById(`card-${id}`).remove();
// Check if empty
if (historyGallery.querySelectorAll(".history-card").length === 0) {
galleryEmpty.style.display = "flex";
}
} else {
showToast("Не удалось удалить элемент", "error");
}
} catch (error) {
showToast("Ошибка при удалении: " + error.message, "error");
}
}
function loadModelToWorkspace(item) {
// Load image to preview
imagePreview.src = item.processedUrl;
uploadContent.style.display = "none";
previewContainer.style.display = "block";
sessionIdInput.value = item.id;
btnGenerate.disabled = false;
// Show video preview
videoPlaceholder.style.display = "none";
videoContainer.style.display = "block";
previewVideo.src = item.videoUrl;
previewVideo.play();
// Configure downloads
linkDownloadPly.href = item.plyUrl;
linkDownloadPly.style.display = "inline-flex";
exportControls.style.display = "block";
btnExtractGlb.disabled = false;
// Load GLB if already extracted
if (item.glbUrl) {
glbViewer.src = item.glbUrl;
tab3dViewer.disabled = false;
tab3dViewer.click(); // Switch to 3D tab
linkDownloadGlb.classList.remove("disabled");
linkDownloadGlb.href = item.glbUrl;
} else {
// Clean glb viewer source
glbViewer.removeAttribute("src");
tab3dViewer.disabled = true;
tabPreview.click(); // Go back to video preview
linkDownloadGlb.classList.add("disabled");
linkDownloadGlb.href = "#";
}
showToast(`Загружена генерация #${item.id.slice(0, 8)}`, "info");
}
btnRefreshHistory.addEventListener("click", loadHistoryGallery);
// Initial history load
loadHistoryGallery();
});
|