Spaces:
Sleeping
Sleeping
File size: 20,032 Bytes
2fe2727 ffa0093 2fe2727 ffa0093 61fcdc2 ffa0093 61fcdc2 ffa0093 2fe2727 ffa0093 2fe2727 ffa0093 2fe2727 ffa0093 2fe2727 ffa0093 2fe2727 ffa0093 2fe2727 ffa0093 2fe2727 ffa0093 2fe2727 ffa0093 2fe2727 ffa0093 2fe2727 ffa0093 2fe2727 ffa0093 2fe2727 ffa0093 2fe2727 ffa0093 2fe2727 ffa0093 2fe2727 ffa0093 2fe2727 ffa0093 2fe2727 ffa0093 2fe2727 ffa0093 2fe2727 ffa0093 2fe2727 ffa0093 2fe2727 ffa0093 2fe2727 ffa0093 | 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 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 | import { hfService } from './api/hfService.js?v=6';
import { stateManager } from './state/stateManager.js';
import { UIRenderer } from './ui/uiRenderer.js';
import { getFileUrl, isImage, isPDF, isText } from './utils/formatters.js';
class App {
constructor() {
this.ui = new UIRenderer(stateManager, hfService);
this.state = stateManager;
this.hf = hfService;
this.pendingDelete = null;
this.pendingRename = null;
this.cachedFolders = [];
this.init();
}
async init() {
this.setupEventListeners();
this.setupNetworkHandling();
this.setupDragAndDrop();
this.state.subscribe(() => this.render());
this.fetchAndRender();
}
setupNetworkHandling() {
window.addEventListener('online', () => {
this.ui.showToast('Back online! Syncing...', 'success');
this.fetchAndRender();
});
window.addEventListener('offline', () => {
this.ui.showToast('You are offline. Some features may be limited.', 'warning');
});
}
setupDragAndDrop() {
const area = document.getElementById('contentArea');
if (!area) return;
['dragenter', 'dragover'].forEach(evt => {
area.addEventListener(evt, (e) => {
e.preventDefault();
e.stopPropagation();
area.classList.add('drag-over');
});
});
['dragleave', 'drop'].forEach(evt => {
area.addEventListener(evt, (e) => {
e.preventDefault();
e.stopPropagation();
area.classList.remove('drag-over');
});
});
area.addEventListener('drop', (e) => {
const files = e.dataTransfer.files;
if (files.length > 0) {
this.uploadFiles(files);
}
});
}
setupEventListeners() {
// Nav
document.getElementById('navMyFiles').onclick = (e) => {
e.preventDefault();
this.state.setBrowseMode('files');
this.state.setPath([]);
this.fetchAndRender();
};
document.getElementById('navRecent').onclick = (e) => {
e.preventDefault();
this.state.setBrowseMode('recent');
this.render();
};
document.getElementById('navStarred').onclick = (e) => {
e.preventDefault();
this.state.setBrowseMode('starred');
this.render();
};
// View Toggles
document.getElementById('viewGrid').onclick = () => this.state.setViewMode('grid');
document.getElementById('viewList').onclick = () => this.state.setViewMode('list');
// Search
let searchDebounce;
document.getElementById('searchInput').oninput = (e) => {
clearTimeout(searchDebounce);
searchDebounce = setTimeout(() => {
this.state.setSearchQuery(e.target.value.trim());
this.fetchAndRender();
}, 400);
};
// New actions
document.getElementById('newBtn').onclick = (e) => {
e.stopPropagation();
document.getElementById('newDropdown').classList.toggle('active');
};
document.getElementById('uploadFileBtn').onclick = (e) => {
e.preventDefault();
e.stopPropagation();
document.getElementById('newDropdown').classList.remove('active');
document.getElementById('fileInput').click();
};
document.getElementById('createFolderBtn').onclick = (e) => {
e.preventDefault();
e.stopPropagation();
document.getElementById('newDropdown').classList.remove('active');
document.getElementById('createFolderModal').classList.add('active');
document.getElementById('folderNameInput').value = '';
document.getElementById('folderNameInput').focus();
};
// File Input
document.getElementById('fileInput').onchange = (e) => {
this.uploadFiles(e.target.files);
e.target.value = '';
};
// Create Folder Modal
document.getElementById('confirmFolderBtn').onclick = () => this.createFolder();
document.getElementById('cancelFolderBtn').onclick = () => document.getElementById('createFolderModal').classList.remove('active');
// Enter on folder name input
document.getElementById('folderNameInput').addEventListener('keydown', (e) => {
if (e.key === 'Enter') this.createFolder();
});
// Delete Modal
document.getElementById('confirmDeleteBtn').onclick = () => this.confirmDelete();
document.getElementById('cancelDeleteBtn').onclick = () => document.getElementById('deleteModal').classList.remove('active');
// Rename Modal
document.getElementById('confirmRenameBtn').onclick = () => this.renameItem();
document.getElementById('cancelRenameBtn').onclick = () => document.getElementById('renameModal').classList.remove('active');
// Enter on rename input
document.getElementById('renameInput').addEventListener('keydown', (e) => {
if (e.key === 'Enter') this.renameItem();
if (e.key === 'Escape') document.getElementById('renameModal').classList.remove('active');
});
document.addEventListener('click', () => {
document.getElementById('newDropdown').classList.remove('active');
// Close all dropdown menus
document.querySelectorAll('.dropdown-menu.open').forEach(m => m.classList.remove('open'));
});
// Mobile Toggle
const menuToggle = document.getElementById('menuToggle');
const sidebar = document.querySelector('.sidebar');
if (menuToggle && sidebar) {
menuToggle.onclick = (e) => {
e.stopPropagation();
sidebar.classList.toggle('mobile-open');
};
}
// Close sidebar on navigation (mobile)
document.querySelectorAll('.nav-item').forEach(item => {
item.addEventListener('click', () => {
sidebar.classList.remove('mobile-open');
});
});
// Modals Close via X button
document.querySelectorAll('.close-modal').forEach(btn => {
btn.onclick = () => {
btn.closest('.modal-overlay').classList.remove('active');
};
});
// Modals close on overlay click
document.querySelectorAll('.modal-overlay').forEach(overlay => {
overlay.addEventListener('click', (e) => {
if (e.target === overlay) {
overlay.classList.remove('active');
sidebar.classList.remove('mobile-open');
}
});
});
}
async fetchAndRender() {
if (this.state.isFetching) return;
this.state.isFetching = true;
this.ui.showSkeletons();
try {
const path = this.state.getFolderPath();
const { files, folders } = await this.hf.listFiles(path);
this.state.cachedFiles = files;
this.cachedFolders = folders;
this.render();
this.updateStorageStats();
} catch (err) {
console.error('Fetch error:', err);
this.state.cachedFiles = [];
this.cachedFolders = [];
this.render();
this.ui.showError(err.message || 'Failed to reach the DocVault backend. Start the Flask server or open the app through the backend URL.');
this.ui.showToast(err.message || 'Failed to load files', 'error');
} finally {
this.state.isFetching = false;
}
}
async updateStorageStats() {
try {
const { files } = await this.hf.listFiles('', true);
const totalSize = files.reduce((sum, f) => sum + (f.size || 0), 0);
const count = files.length;
document.getElementById('storageUsageText').textContent = `${count} files • ${this.formatSize(totalSize)} used`;
const MAX_STORAGE = 10 * 1024 * 1024 * 1024; // 10GB
const pct = Math.min((totalSize / MAX_STORAGE) * 100, 100);
document.getElementById('storageProgress').style.width = pct + '%';
} catch (err) {
console.error('Storage stats error:', err);
}
}
formatSize(bytes) {
if (!bytes || bytes === 0) return '0 B';
const k = 1024;
const sizes = ['B', 'KB', 'MB', 'GB', 'TB'];
const i = Math.floor(Math.log(bytes) / Math.log(k));
return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i];
}
render() {
const browseMode = this.state.currentBrowse;
let displayFiles = [];
let displayFolders = [];
if (browseMode === 'files') {
displayFiles = this.state.cachedFiles;
displayFolders = this.cachedFolders;
this.ui.renderBreadcrumbs((path) => {
this.state.setPath(path);
this.fetchAndRender();
});
} else if (browseMode === 'recent') {
displayFiles = this.state.recent;
document.getElementById('breadcrumbs').innerHTML = '<span class="breadcrumb-item active">Recent</span>';
} else if (browseMode === 'starred') {
displayFiles = this.state.cachedFiles.filter(f => this.state.starred.includes(f.path));
document.getElementById('breadcrumbs').innerHTML = '<span class="breadcrumb-item active">Starred</span>';
}
// Filter by search
if (this.state.searchQuery) {
const q = this.state.searchQuery.toLowerCase();
displayFiles = displayFiles.filter(f => f.name.toLowerCase().includes(q));
displayFolders = displayFolders.filter(f => f.name.toLowerCase().includes(q));
}
this.ui.renderFolders(displayFolders, (name) => {
this.state.setPath([...this.state.currentPath, name]);
this.fetchAndRender();
}, (path, name) => this.openRenameModal(path, name), (path, name) => this.openDeleteModal(path, name));
this.ui.renderFiles(displayFiles, {
onPreview: (file) => this.openPreview(file),
onDownload: (url, name) => this.downloadFile(url, name),
onRename: (path, name) => this.openRenameModal(path, name),
onStar: (path) => this.state.toggleStar(path),
onDelete: (path, name) => this.openDeleteModal(path, name),
onHistory: (path, name) => this.openHistory(path, name),
getUrl: (path) => getFileUrl(this.hf.apiBase || '/api', path)
});
this.updateActiveNavItem();
}
updateActiveNavItem() {
const items = {
files: 'navMyFiles',
recent: 'navRecent',
starred: 'navStarred'
};
Object.values(items).forEach(id => document.getElementById(id).classList.remove('active'));
document.getElementById(items[this.state.currentBrowse]).classList.add('active');
}
async uploadFiles(fileList) {
const files = Array.from(fileList);
const MAX_SIZE = 10 * 1024 * 1024; // 10MB limit for simple API
for (const file of files) {
// 1. Validation
if (!this.isValidName(file.name)) {
this.ui.showToast(`Invalid file name: ${file.name}`, 'error');
continue;
}
if (file.size > MAX_SIZE) {
this.ui.showToast(`File too large: ${file.name} (Max 10MB)`, 'warning');
continue;
}
const path = this.state.getFolderPath();
const destPath = path ? `${path}/${file.name}` : file.name;
// 2. Duplicate Check
if (this.state.cachedFiles.some(f => f.path === destPath)) {
this.ui.showToast(`File already exists: ${file.name}`, 'warning');
continue;
}
this.ui.showProgress(`Uploading ${file.name}...`);
try {
await this.hf.uploadFile(file, destPath);
this.ui.showToast(`Uploaded ${file.name}`, 'success');
} catch (err) {
this.ui.showToast(err.message, 'error');
}
}
this.ui.hideProgress();
this.fetchAndRender();
}
async createFolder() {
const name = document.getElementById('folderNameInput').value.trim();
if (!name) return;
if (!this.isValidName(name)) {
this.ui.showToast('Invalid folder name', 'error');
return;
}
const path = this.state.getFolderPath();
const destPath = path ? `${path}/${name}` : name;
// Check if folder name is already taken
if (this.cachedFolders.some(f => f.name === name)) {
this.ui.showToast(`Folder already exists: ${name}`, 'warning');
return;
}
document.getElementById('createFolderModal').classList.remove('active');
this.ui.showProgress(`Creating folder ${name}...`);
try {
await this.hf.createFolder(destPath);
this.ui.showToast(`Folder "${name}" created`, 'success');
this.fetchAndRender();
} catch (err) {
this.ui.showToast(err.message, 'error');
} finally {
this.ui.hideProgress();
}
}
isValidName(name) {
const forbidden = /[<>:"\\|?*\x00-\x1F]/;
return name && name.length > 0 && !forbidden.test(name) && name.length < 255;
}
openDeleteModal(path, name) {
this.pendingDelete = path;
const strong = document.querySelector('#deleteModal p strong');
if (strong) strong.textContent = name;
document.getElementById('deleteModal').classList.add('active');
}
openRenameModal(path, name) {
const renameModal = document.getElementById('renameModal');
const renameInput = document.getElementById('renameInput');
const renameTitle = document.querySelector('#renameModal h3');
const isFolder = this.cachedFolders.some(folder => folder.path === path);
this.pendingRename = {
path,
originalName: name,
itemType: isFolder ? 'folder' : 'file'
};
if (renameTitle) {
renameTitle.innerHTML = `<i class="ph-fill ph-pencil-simple" style="color:var(--primary-color)"></i> Rename ${isFolder ? 'Folder' : 'File'}`;
}
if (renameInput) {
renameInput.value = name;
}
renameModal.classList.add('active');
setTimeout(() => {
renameInput.focus();
renameInput.select();
}, 100);
}
async confirmDelete() {
if (!this.pendingDelete) return;
const path = this.pendingDelete;
const btn = document.getElementById('confirmDeleteBtn');
// Check if item still exists in local set to avoid stale deletes
const exists = this.state.cachedFiles.some(f => f.path === path) || this.cachedFolders.some(f => f.path === path);
if (!exists) {
this.ui.showToast('Item no longer exists', 'warning');
this.pendingDelete = null;
document.getElementById('deleteModal').classList.remove('active');
return;
}
if (btn) btn.classList.add('loading');
try {
const isFolder = this.cachedFolders.some(f => f.path === path);
if (isFolder) {
await this.hf.deleteFolder(path);
} else {
await this.hf.deleteFile(path);
}
this.ui.showToast('Deleted successfully', 'success');
document.getElementById('deleteModal').classList.remove('active');
this.pendingDelete = null;
this.fetchAndRender();
} catch (err) {
this.ui.showToast(err.message || 'Delete failed', 'error');
} finally {
if (btn) btn.classList.remove('loading');
}
}
async renameItem() {
if (!this.pendingRename) return;
const newNameInput = document.getElementById('renameInput');
const btn = document.getElementById('confirmRenameBtn');
if (!newNameInput || !btn) return;
const newName = newNameInput.value.trim();
if (!newName) {
this.ui.showToast('Please enter a new name', 'warning');
return;
}
if (newName === this.pendingRename.originalName) {
document.getElementById('renameModal').classList.remove('active');
this.pendingRename = null;
return;
}
if (!this.isValidName(newName)) {
this.ui.showToast('Invalid name format (avoid < > : " / \\ | ? *)', 'error');
return;
}
// Client-side Conflict Check
const isConflict = this.state.cachedFiles.some(f => f.name.toLowerCase() === newName.toLowerCase()) ||
this.cachedFolders.some(f => f.name.toLowerCase() === newName.toLowerCase());
if (isConflict) {
this.ui.showToast(`An item with name "${newName}" already exists in this folder`, 'warning');
return;
}
const path = this.pendingRename.path;
const oldName = this.pendingRename.originalName;
btn.classList.add('loading');
try {
const res = await this.hf.renameItem(path, newName);
if (res.success) {
this.ui.showToast(`Renamed "${oldName}" to "${newName}"`, 'success');
document.getElementById('renameModal').classList.remove('active');
this.pendingRename = null;
this.fetchAndRender();
} else {
throw new Error(res.error || 'Rename failed');
}
} catch (err) {
this.ui.showToast(err.message, 'error');
} finally {
btn.classList.remove('loading');
}
}
async openPreview(file) {
const modal = document.getElementById('previewModal');
const body = document.getElementById('previewBody');
const title = document.getElementById('previewFileName');
const renameBtn = document.getElementById('renameFromPreview');
const downloadBtn = document.getElementById('downloadFromPreview');
if (!modal || !body || !title) return;
this.state.addToRecent(file);
let apiBase = this.hf.apiBase;
if (!apiBase) {
apiBase = await this.hf.getApiBase();
}
const url = getFileUrl(apiBase, file.path);
title.textContent = file.name;
body.innerHTML = '<div class="loading-state"><div class="spinner"></div><p>Loading preview...</p></div>';
modal.classList.add('active');
if (downloadBtn) {
downloadBtn.onclick = () => this.downloadFile(`${url}?download=true`, file.name);
}
if (renameBtn) {
renameBtn.onclick = () => this.openRenameModal(file.path, file.name);
}
if (isImage(file.name)) {
const img = new Image();
img.src = url;
img.className = 'preview-image';
img.onload = () => {
body.innerHTML = '';
body.appendChild(img);
};
img.onerror = () => {
body.innerHTML = this.previewFallback(file.name, `${url}?download=true`, 'Image preview failed to load.');
};
return;
}
if (isPDF(file.name)) {
body.innerHTML = `<iframe src="${url}" class="preview-iframe" title="${file.name}"></iframe>`;
return;
}
if (isText(file.name)) {
try {
const response = await fetch(url, { headers: { 'X-User-ID': 'default_user' } });
if (!response.ok) {
throw new Error(`Preview failed: ${response.status}`);
}
const text = await response.text();
const pre = document.createElement('pre');
pre.className = 'preview-text';
pre.textContent = text;
body.innerHTML = '';
body.appendChild(pre);
} catch (err) {
body.innerHTML = this.previewFallback(file.name, `${url}?download=true`, err.message || 'Could not load text preview.');
}
return;
}
body.innerHTML = this.previewFallback(
file.name,
`${url}?download=true`,
'Preview is not available for this file type yet.'
);
}
previewFallback(name, url, message) {
return `
<div class="preview-fallback">
<i class="ph-fill ph-file"></i>
<p>${message}</p>
<a href="${url}" class="btn-primary" style="padding: 10px 24px; text-decoration: none; border-radius: 8px; margin-top: 12px;">
Download ${name}
</a>
</div>
`;
}
downloadFile(url, name) {
const link = document.createElement('a');
link.href = url;
link.download = name;
link.target = '_blank';
document.body.appendChild(link);
link.click();
link.remove();
}
async openHistory(path, name) {
this.ui.showHistoryModal(name);
try {
const history = await this.hf.getHistory(path);
this.ui.renderHistory(history, async (revision, asCopy) => {
try {
const result = await this.hf.restoreVersion(path, revision, asCopy);
if (!result.success) {
throw new Error(result.error || 'Restore failed');
}
this.ui.showToast(asCopy ? 'Version restored as a copy' : 'Version restored', 'success');
document.getElementById('historyModal').classList.remove('active');
this.fetchAndRender();
} catch (err) {
this.ui.showToast(err.message || 'Restore failed', 'error');
}
});
} catch (err) {
this.ui.renderHistory([], () => {});
this.ui.showToast(err.message || 'Failed to load history', 'error');
}
}
}
new App();
|