ll5tut015l_bh / static /preview.html
ishworrsubedii's picture
add: prodctpage batch cto, mto, nto, video and static file
21ba534
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Preview</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f9fa;
min-height: 100vh;
}
.navbar {
background-color: #007bff;
color: white;
width: 100%;
padding: 15px 0;
text-align: center;
font-size: 20px;
font-weight: bold;
position: fixed;
top: 0;
left: 0;
z-index: 1000;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.navbar a {
color: white;
text-decoration: none;
margin: 0 15px;
font-size: 16px;
}
.navbar a:hover {
text-decoration: underline;
}
.form-container {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
max-width: 450px;
width: 90%;
margin: 100px auto 50px;
text-align: center;
}
.form-group {
margin-bottom: 20px;
display: flex;
gap: 15px;
}
.form-container select {
flex: 1;
padding: 12px;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 16px;
background-color: white;
}
.button-group {
display: flex;
gap: 10px;
justify-content: center;
margin-top: 20px;
}
.btn {
padding: 12px 24px;
border: none;
border-radius: 6px;
font-size: 16px;
cursor: pointer;
transition: all 0.3s ease;
}
.btn-primary {
background-color: #007bff;
color: white;
}
.btn-success {
background-color: #28a745;
color: white;
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Rest of the styles remain the same */
.content-grid {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.section {
margin-bottom: 40px;
}
.section-title {
font-size: 24px;
color: #333;
margin-bottom: 20px;
text-align: center;
font-weight: bold;
position: relative;
padding-bottom: 10px;
}
.section-title:after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background-color: #007bff;
border-radius: 2px;
}
.image-row {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
margin-bottom: 30px;
}
.image-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
width: 300px;
height: 300px;
}
.image-card img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.image-card:hover img {
transform: scale(1.05);
}
.video-container {
width: 100%;
max-width: 800px;
margin: 0 auto;
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.video-container video {
width: 100%;
display: block;
}
.loading {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(255, 255, 255, 0.9);
padding: 20px 40px;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
z-index: 1000;
}
.success-message {
position: fixed;
top: 20px;
right: 20px;
background: #28a745;
color: white;
padding: 15px 25px;
border-radius: 6px;
animation: slideIn 0.3s ease-out;
z-index: 1001;
}
@keyframes slideIn {
from { transform: translateX(100%); }
to { transform: translateX(0); }
}
</style>
</head>
<body>
<div class="navbar">
<a href="index.html">Generation</a>
<a href="preview.html">Preview</a>
</div>
<div class="form-container">
<h2>Preview Content</h2>
<div class="form-group">
<select id="necklaceSelect">
<option value="">Select Necklace ID</option>
</select>
<select id="modelSelect" disabled>
<option value="">Select Model</option>
</select>
</div>
<div class="button-group">
<button class="btn btn-primary" id="previewBtn">Preview</button>
<button class="btn btn-success" id="approveBtn">Approve</button>
</div>
</div>
<div id="contentContainer" class="content-grid"></div>
<div id="loading" class="loading" style="display: none;">Loading...</div>
<script>
let necklaceData = {};
async function fetchNecklaceIds() {
try {
const response = await fetch('http://0.0.0.0:7860/list_necklace_id');
necklaceData = await response.json();
const select = document.getElementById('necklaceSelect');
Object.keys(necklaceData).forEach(id => {
const option = document.createElement('option');
option.value = id;
option.textContent = id;
select.appendChild(option);
});
} catch (error) {
console.error('Error fetching necklace IDs:', error);
alert('Failed to load necklace IDs');
}
}
document.getElementById('necklaceSelect').addEventListener('change', function() {
const modelSelect = document.getElementById('modelSelect');
modelSelect.innerHTML = '<option value="">Select Model</option>';
if (this.value) {
const models = necklaceData[this.value];
models.forEach(model => {
const option = document.createElement('option');
option.value = model;
option.textContent = model;
modelSelect.appendChild(option);
});
modelSelect.disabled = false;
} else {
modelSelect.disabled = true;
}
});
function showLoading(show) {
document.getElementById('loading').style.display = show ? 'block' : 'none';
}
function showSuccessMessage(message) {
const messageDiv = document.createElement('div');
messageDiv.className = 'success-message';
messageDiv.textContent = message;
document.body.appendChild(messageDiv);
setTimeout(() => messageDiv.remove(), 3000);
}
function createSection(title) {
const section = document.createElement('div');
section.className = 'section';
const titleElement = document.createElement('h2');
titleElement.className = 'section-title';
titleElement.textContent = title;
section.appendChild(titleElement);
return section;
}
function createImageCard(url) {
const card = document.createElement('div');
card.className = 'image-card';
const img = document.createElement('img');
img.src = url;
img.alt = 'Preview Image';
img.loading = 'lazy';
card.appendChild(img);
return card;
}
function displayContent(data) {
const container = document.getElementById('contentContainer');
container.innerHTML = '';
// NTO Section
if (data.nto && data.nto.length > 0) {
const ntoSection = createSection('Necklace Try-On (NTO)');
const ntoRow = document.createElement('div');
ntoRow.className = 'image-row';
data.nto.forEach(url => {
ntoRow.appendChild(createImageCard(url));
});
ntoSection.appendChild(ntoRow);
container.appendChild(ntoSection);
}
// CTO Section
if (data.cto && data.cto.length > 0) {
const ctoSection = createSection('Clothing Try-On (CTO)');
for (let i = 0; i < data.cto.length; i += 2) {
const row = document.createElement('div');
row.className = 'image-row';
row.appendChild(createImageCard(data.cto[i]));
if (data.cto[i + 1]) {
row.appendChild(createImageCard(data.cto[i + 1]));
}
ctoSection.appendChild(row);
}
container.appendChild(ctoSection);
}
// MTO Section
if (data.mto && data.mto.length > 0) {
const mtoSection = createSection('Makeup Try-On (MTO)');
for (let i = 0; i < data.mto.length; i += 2) {
const row = document.createElement('div');
row.className = 'image-row';
row.appendChild(createImageCard(data.mto[i]));
if (data.mto[i + 1]) {
row.appendChild(createImageCard(data.mto[i + 1]));
}
mtoSection.appendChild(row);
}
container.appendChild(mtoSection);
}
// Video Section
if (data.video && data.video.length > 0) {
const videoSection = createSection('Video Preview');
const videoContainer = document.createElement('div');
videoContainer.className = 'video-container';
const video = document.createElement('video');
video.src = data.video[0];
video.controls = true;
videoContainer.appendChild(video);
videoSection.appendChild(videoContainer);
container.appendChild(videoSection);
}
}
document.getElementById('previewBtn').addEventListener('click', async () => {
const necklaceId = document.getElementById('necklaceSelect').value;
const modelName = document.getElementById('modelSelect').value;
if (!necklaceId || !modelName) {
alert('Please select both Necklace ID and Model');
return;
}
showLoading(true);
try {
const response = await fetch(
`http://0.0.0.0:7860/image_fetch_product_page?necklace_id=${necklaceId}&model_name=${modelName}`,
{ method: 'POST' }
);
const data = await response.json();
displayContent(data);
} catch (error) {
console.error('Error:', error);
alert('Error fetching preview data');
} finally {
showLoading(false);
}
});
document.getElementById('approveBtn').addEventListener('click', async () => {
const necklaceId = document.getElementById('necklaceSelect').value;
if (!necklaceId) {
alert('Please select a necklace ID');
return;
}
showLoading(true);
try {
const response = await fetch(
`http://0.0.0.0:7860/approve?necklace_id=${necklaceId}&model_name=${document.getElementById('modelSelect').value}`,
{ method: 'POST' }
);
const data = await response.json();
showSuccessMessage('Necklace approved successfully!');
} catch (error) {
console.error('Error:', error);
alert('Error approving necklace');
} finally {
showLoading(false);
}
});
// Initialize page
fetchNecklaceIds();
</script>
</body>
</html>