Spaces:
Sleeping
Sleeping
File size: 10,105 Bytes
c001f24 | 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 | <!doctype html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>DocuPDF - Upload</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap Icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<style>
#preview-grid .preview-card {
position: relative;
border: 2px dashed #495057;
border-radius: .5rem;
overflow: hidden;
aspect-ratio: 1 / 1;
}
#preview-grid .preview-img {
width: 100%;
height: 100%;
object-fit: cover;
}
#preview-grid .preview-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.7);
color: white;
padding: 0.5rem;
font-size: 0.8rem;
text-align: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
#preview-grid .remove-btn {
position: absolute;
top: 5px;
right: 5px;
width: 24px;
height: 24px;
border-radius: 50%;
background: rgba(0, 0, 0, 0.6);
color: white;
border: none;
font-weight: bold;
display: flex;
align-items: center;
justify-content: center;
line-height: 1;
z-index: 2;
}
/* Drag and Drop Styling */
.preview-card.dragging {
opacity: 0.5;
transform: scale(0.95);
}
.preview-card.drag-over {
border-color: #0d6efd;
background-color: rgba(13, 110, 253, 0.1);
}
</style>
</head>
<body>
<div class="container mt-5">
<div class="card bg-dark text-white">
<div class="card-header">
<h1>Step 1: Select Your Questions</h1>
</div>
<div class="card-body">
<!-- Hidden file input that does all the work -->
<input type="file" id="image-input" multiple accept="image/*" class="d-none">
<!-- Action Buttons -->
<div class="d-grid gap-3 d-sm-flex mb-4">
<button type="button" id="choose-files-btn" class="btn btn-primary btn-lg flex-grow-1">
<i class="bi bi-folder2-open me-2"></i> Choose Files
</button>
<button type="button" id="take-photo-btn" class="btn btn-secondary btn-lg flex-grow-1">
<i class="bi bi-camera-fill me-2"></i> Take a Photo
</button>
</div>
<!-- Preview Area -->
<div id="preview-container" class="d-none">
<h5 class="text-white-50 border-bottom border-secondary pb-2 mb-3">Preview & Order <small>(Drag to reorder)</small></h5>
<div id="preview-grid" class="row g-3">
<!-- Preview cards will be injected here by JavaScript -->
</div>
</div>
<!-- Upload Button -->
<button id="upload-btn" class="btn btn-success w-100 mt-4 py-3 fs-5" disabled>
<i class="bi bi-cloud-upload me-2"></i> Upload and Start Processing
</button>
<div id="upload-status" class="mt-3"></div>
</div>
</div>
</div>
<script>
const imageInput = document.getElementById('image-input');
const chooseFilesBtn = document.getElementById('choose-files-btn');
const takePhotoBtn = document.getElementById('take-photo-btn');
const previewContainer = document.getElementById('preview-container');
const previewGrid = document.getElementById('preview-grid');
const uploadBtn = document.getElementById('upload-btn');
const uploadStatus = document.getElementById('upload-status');
let fileList = []; // This array will hold our File objects in the correct order
// --- Event Listeners for Buttons ---
chooseFilesBtn.addEventListener('click', () => {
imageInput.removeAttribute('capture');
imageInput.click();
});
takePhotoBtn.addEventListener('click', () => {
imageInput.setAttribute('capture', 'environment');
imageInput.click();
});
imageInput.addEventListener('change', (e) => {
const newFiles = Array.from(e.target.files);
fileList = [...fileList, ...newFiles];
intelligentSortFiles(fileList);
renderPreviews();
e.target.value = ''; // Clear the input so the change event fires again
});
// --- File Handling and Sorting ---
function intelligentSortFiles(files) {
const extractNumber = (filename) => {
const numbers = filename.match(/\d+/g);
return numbers ? parseInt(numbers.join('')) : 0;
};
files.sort((a, b) => extractNumber(a.name) - extractNumber(b.name));
}
// --- Rendering Previews ---
function renderPreviews() {
previewGrid.innerHTML = '';
if (fileList.length > 0) {
previewContainer.classList.remove('d-none');
uploadBtn.disabled = false;
} else {
previewContainer.classList.add('d-none');
uploadBtn.disabled = true;
}
fileList.forEach((file, index) => {
const col = document.createElement('div');
col.className = 'col-6 col-md-4 col-lg-3';
const card = document.createElement('div');
card.className = 'preview-card';
card.setAttribute('draggable', 'true');
card.dataset.index = index;
const img = document.createElement('img');
img.src = URL.createObjectURL(file);
img.className = 'preview-img';
const overlay = document.createElement('div');
overlay.className = 'preview-overlay';
overlay.textContent = file.name;
const removeBtn = document.createElement('button');
removeBtn.className = 'remove-btn';
removeBtn.innerHTML = '×';
removeBtn.onclick = (e) => {
e.stopPropagation();
fileList.splice(index, 1);
renderPreviews();
};
card.appendChild(img);
card.appendChild(overlay);
card.appendChild(removeBtn);
col.appendChild(card);
previewGrid.appendChild(col);
});
addDragAndDropListeners();
}
// --- Drag and Drop Logic ---
let draggedIndex = null;
function addDragAndDropListeners() {
const cards = document.querySelectorAll('.preview-card');
cards.forEach(card => {
card.addEventListener('dragstart', (e) => {
draggedIndex = parseInt(e.target.dataset.index);
e.target.classList.add('dragging');
});
card.addEventListener('dragend', (e) => {
e.target.classList.remove('dragging');
draggedIndex = null;
});
card.addEventListener('dragover', (e) => {
e.preventDefault();
if (e.target !== card) card.classList.add('drag-over');
});
card.addEventListener('dragleave', (e) => {
card.classList.remove('drag-over');
});
card.addEventListener('drop', (e) => {
e.preventDefault();
card.classList.remove('drag-over');
const droppedOnIndex = parseInt(e.currentTarget.dataset.index);
if (draggedIndex !== droppedOnIndex) {
const draggedItem = fileList.splice(draggedIndex, 1)[0];
fileList.splice(droppedOnIndex, 0, draggedItem);
renderPreviews();
}
});
});
}
// --- Upload Logic ---
uploadBtn.addEventListener('click', async () => {
if (fileList.length === 0) return;
uploadStatus.innerHTML = `<div class="alert alert-info">Uploading ${fileList.length} images...</div>`;
uploadBtn.disabled = true;
const formData = new FormData();
fileList.forEach(file => {
formData.append('images', file);
});
try {
const response = await fetch('/upload', { method: 'POST', body: formData });
const result = await response.json();
if (result.error) {
uploadStatus.innerHTML = `<div class="alert alert-danger">${result.error}</div>`;
} else {
uploadStatus.innerHTML = `<div class="alert alert-success">Upload successful! Redirecting...</div>`;
window.location.href = `/crop/${result.session_id}/0`;
}
} catch (error) {
uploadStatus.innerHTML = `<div class="alert alert-danger">An error occurred: ${error}</div>`;
} finally {
uploadBtn.disabled = false;
}
});
</script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>
|