Started room separation
This commit is contained in:
357
static/js/rooms/viewManager.js
Normal file
357
static/js/rooms/viewManager.js
Normal file
@@ -0,0 +1,357 @@
|
||||
export class ViewManager {
|
||||
constructor(roomManager) {
|
||||
console.log('[ViewManager] Initializing...');
|
||||
this.roomManager = roomManager;
|
||||
this.currentView = 'grid';
|
||||
this.sortColumn = 'name';
|
||||
this.sortDirection = 'asc';
|
||||
console.log('[ViewManager] Initialized with roomManager:', roomManager);
|
||||
}
|
||||
|
||||
async initializeView() {
|
||||
console.log('[ViewManager] Initializing view...');
|
||||
try {
|
||||
const response = await fetch('/api/user/preferred_view');
|
||||
console.log('[ViewManager] Preferences response status:', response.status);
|
||||
|
||||
if (response.ok) {
|
||||
const data = await response.json();
|
||||
console.log('[ViewManager] User preferences:', data);
|
||||
this.currentView = data.preferred_view || 'grid';
|
||||
}
|
||||
|
||||
this.toggleView(this.currentView);
|
||||
console.log('[ViewManager] View initialized with:', this.currentView);
|
||||
} catch (error) {
|
||||
console.error('[ViewManager] Error initializing view:', error);
|
||||
this.currentView = 'grid';
|
||||
this.toggleView('grid');
|
||||
}
|
||||
}
|
||||
|
||||
async toggleView(view) {
|
||||
console.log('[ViewManager] Toggling view to:', view);
|
||||
this.currentView = view;
|
||||
|
||||
// Update UI
|
||||
document.getElementById('gridViewBtn').classList.toggle('active', view === 'grid');
|
||||
document.getElementById('listViewBtn').classList.toggle('active', view === 'list');
|
||||
document.getElementById('fileGrid').classList.toggle('list-view', view === 'list');
|
||||
|
||||
// Save preference
|
||||
try {
|
||||
const response = await fetch('/api/user/preferred_view', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'X-CSRF-Token': document.querySelector('meta[name="csrf-token"]').getAttribute('content')
|
||||
},
|
||||
body: JSON.stringify({ preferred_view: view })
|
||||
});
|
||||
console.log('[ViewManager] Save preferences response status:', response.status);
|
||||
} catch (error) {
|
||||
console.error('[ViewManager] Error saving view preference:', error);
|
||||
}
|
||||
|
||||
// Re-render files if we have any
|
||||
if (this.roomManager.fileManager.currentFiles.length > 0) {
|
||||
console.log('[ViewManager] Re-rendering files with new view');
|
||||
await this.renderFiles(this.roomManager.fileManager.currentFiles);
|
||||
}
|
||||
}
|
||||
|
||||
async renderFiles(files) {
|
||||
console.log('[ViewManager] Rendering files:', files);
|
||||
const fileGrid = document.getElementById('fileGrid');
|
||||
|
||||
if (!files || files.length === 0) {
|
||||
console.log('[ViewManager] No files to render');
|
||||
fileGrid.innerHTML = '<div class="col"><div class="text-muted">No files in this folder</div></div>';
|
||||
return;
|
||||
}
|
||||
|
||||
// Sort files
|
||||
const sortedFiles = this.sortFiles(files);
|
||||
console.log('[ViewManager] Sorted files:', sortedFiles);
|
||||
|
||||
if (this.currentView === 'list') {
|
||||
console.log('[ViewManager] Rendering list view');
|
||||
await this.renderListView(sortedFiles);
|
||||
} else {
|
||||
console.log('[ViewManager] Rendering grid view');
|
||||
await this.renderGridView(sortedFiles);
|
||||
}
|
||||
}
|
||||
|
||||
renderBreadcrumb() {
|
||||
console.log('[ViewManager] Rendering breadcrumb');
|
||||
const breadcrumb = document.getElementById('breadcrumb');
|
||||
const upBtn = document.getElementById('upBtn');
|
||||
const path = this.roomManager.currentPath;
|
||||
|
||||
if (!path) {
|
||||
console.log('[ViewManager] No path, hiding breadcrumb');
|
||||
breadcrumb.innerHTML = '';
|
||||
upBtn.style.display = 'none';
|
||||
return;
|
||||
}
|
||||
|
||||
console.log('[ViewManager] Building breadcrumb for path:', path);
|
||||
const parts = path.split('/').filter(Boolean);
|
||||
let html = '';
|
||||
let currentPath = '';
|
||||
|
||||
parts.forEach((part, index) => {
|
||||
currentPath += '/' + part;
|
||||
html += `
|
||||
<span class="d-flex align-items-center">
|
||||
${index > 0 ? '<i class="fas fa-chevron-right mx-2 text-muted"></i>' : ''}
|
||||
<a href="?path=${encodeURIComponent(currentPath)}" class="text-decoration-none">
|
||||
${part}
|
||||
</a>
|
||||
</span>
|
||||
`;
|
||||
});
|
||||
|
||||
breadcrumb.innerHTML = html;
|
||||
upBtn.style.display = 'inline-block';
|
||||
console.log('[ViewManager] Breadcrumb rendered');
|
||||
}
|
||||
|
||||
async renderListView(files) {
|
||||
console.log('[ViewManager] Rendering list view');
|
||||
const fileGrid = document.getElementById('fileGrid');
|
||||
|
||||
// Create table structure
|
||||
let html = `
|
||||
<table class="table table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="width: 40px;"></th>
|
||||
<th style="width: 40px;"></th>
|
||||
<th>Name</th>
|
||||
<th>Size</th>
|
||||
<th>Modified</th>
|
||||
<th style="width: 100px;">Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
`;
|
||||
|
||||
files.forEach((file, index) => {
|
||||
console.log('[ViewManager] Rendering list item:', file);
|
||||
html += this.renderFileRow(file, index);
|
||||
});
|
||||
|
||||
html += '</tbody></table>';
|
||||
fileGrid.innerHTML = html;
|
||||
console.log('[ViewManager] List view rendered');
|
||||
}
|
||||
|
||||
async renderGridView(files) {
|
||||
console.log('[ViewManager] Rendering grid view');
|
||||
const fileGrid = document.getElementById('fileGrid');
|
||||
let html = '';
|
||||
|
||||
files.forEach((file, index) => {
|
||||
console.log('[ViewManager] Rendering grid item:', file);
|
||||
html += this.renderFileCard(file, index);
|
||||
});
|
||||
|
||||
fileGrid.innerHTML = html;
|
||||
console.log('[ViewManager] Grid view rendered');
|
||||
}
|
||||
|
||||
renderFileRow(file, index) {
|
||||
console.log('[ViewManager] Rendering file row:', { file, index });
|
||||
const isFolder = file.type === 'folder';
|
||||
const icon = isFolder ? 'fa-folder' : this.getFileIcon(file.name);
|
||||
const size = isFolder ? '-' : this.formatFileSize(file.size);
|
||||
const modified = new Date(file.modified).toLocaleString();
|
||||
|
||||
return `
|
||||
<tr data-index="${index}" class="file-row" style="cursor: pointer;">
|
||||
<td>
|
||||
<input type="checkbox" class="form-check-input select-item-checkbox"
|
||||
data-index="${index}" style="margin: 0;">
|
||||
</td>
|
||||
<td>
|
||||
<i class="fas ${icon}" style="font-size:1.5rem;color:${isFolder ? 'var(--primary-color)' : 'var(--secondary-color)'}"></i>
|
||||
</td>
|
||||
<td>
|
||||
<span class="file-name">${file.name}</span>
|
||||
</td>
|
||||
<td class="text-muted">${size}</td>
|
||||
<td class="text-muted">${modified}</td>
|
||||
<td>
|
||||
<div class="d-flex justify-content-end gap-1">
|
||||
${this.renderFileActions(file, index)}
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
`;
|
||||
}
|
||||
|
||||
renderFileCard(file, index) {
|
||||
console.log('[ViewManager] Rendering file card:', { file, index });
|
||||
const isFolder = file.type === 'folder';
|
||||
const icon = isFolder ? 'fa-folder' : this.getFileIcon(file.name);
|
||||
const size = isFolder ? '-' : this.formatFileSize(file.size);
|
||||
const modified = new Date(file.modified).toLocaleString();
|
||||
|
||||
return `
|
||||
<div class="col-12 col-sm-6 col-md-4 col-lg-3 mb-3">
|
||||
<div class="card file-card h-100 border-0 shadow-sm position-relative" data-index="${index}">
|
||||
<div class="card-body d-flex flex-column align-items-center justify-content-center text-center p-4">
|
||||
<div class="mb-2">
|
||||
<i class="fas ${icon}" style="font-size:2.5rem;color:${isFolder ? 'var(--primary-color)' : 'var(--secondary-color)'};"></i>
|
||||
</div>
|
||||
<div class="fw-bold file-name-ellipsis mb-1" title="${file.name}">${file.name}</div>
|
||||
<div class="text-muted" style="font-size:0.85rem;">${modified}</div>
|
||||
<div class="text-muted mb-2" style="font-size:0.85rem;">${size}</div>
|
||||
</div>
|
||||
<div class="card-footer bg-white border-0 d-flex justify-content-center gap-2">
|
||||
${this.renderFileActions(file, index)}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
`;
|
||||
}
|
||||
|
||||
renderFileActions(file, index) {
|
||||
console.log('[ViewManager] Rendering file actions:', { file, index });
|
||||
const actions = [];
|
||||
|
||||
if (file.type === 'folder') {
|
||||
actions.push(`
|
||||
<button class="btn btn-sm file-action-btn" title="Open" onclick="window.roomManager.navigateToFolder('${file.name}')"
|
||||
style="background-color:var(--primary-opacity-8);color:var(--primary-color);">
|
||||
<i class="fas fa-folder-open"></i>
|
||||
</button>
|
||||
`);
|
||||
} else {
|
||||
if (this.roomManager.canDownload) {
|
||||
actions.push(`
|
||||
<button class="btn btn-sm file-action-btn" title="Download" onclick="window.roomManager.fileManager.downloadFile('${file.id}')"
|
||||
style="background-color:var(--primary-opacity-8);color:var(--primary-color);">
|
||||
<i class="fas fa-download"></i>
|
||||
</button>
|
||||
`);
|
||||
}
|
||||
}
|
||||
|
||||
if (this.roomManager.canRename) {
|
||||
actions.push(`
|
||||
<button class="btn btn-sm file-action-btn" title="Rename" onclick="window.roomManager.modalManager.showRenameModal('${file.id}')"
|
||||
style="background-color:var(--primary-opacity-8);color:var(--primary-color);">
|
||||
<i class="fas fa-edit"></i>
|
||||
</button>
|
||||
`);
|
||||
}
|
||||
|
||||
if (this.roomManager.canMove) {
|
||||
actions.push(`
|
||||
<button class="btn btn-sm file-action-btn" title="Move" onclick="window.roomManager.modalManager.showMoveModal('${file.id}')"
|
||||
style="background-color:var(--primary-opacity-8);color:var(--primary-color);">
|
||||
<i class="fas fa-arrows-alt"></i>
|
||||
</button>
|
||||
`);
|
||||
}
|
||||
|
||||
actions.push(`
|
||||
<button class="btn btn-sm file-action-btn" title="${file.is_starred ? 'Unstar' : 'Star'}" onclick="window.roomManager.fileManager.toggleStar('${file.id}')"
|
||||
style="background-color:${file.is_starred ? 'var(--warning-opacity-15)' : 'var(--primary-opacity-8)'};color:${file.is_starred ? 'var(--warning-color)' : 'var(--primary-color)'};">
|
||||
<i class="fas fa-star"></i>
|
||||
</button>
|
||||
`);
|
||||
|
||||
if (this.roomManager.canDelete) {
|
||||
actions.push(`
|
||||
<button class="btn btn-sm file-action-btn" title="Delete" onclick="window.roomManager.modalManager.showDeleteModal('${file.id}')"
|
||||
style="background-color:var(--danger-opacity-15);color:var(--danger-color);">
|
||||
<i class="fas fa-trash"></i>
|
||||
</button>
|
||||
`);
|
||||
}
|
||||
|
||||
return actions.join('');
|
||||
}
|
||||
|
||||
sortFiles(files) {
|
||||
console.log('[ViewManager] Sorting files:', {
|
||||
column: this.sortColumn,
|
||||
direction: this.sortDirection
|
||||
});
|
||||
|
||||
return [...files].sort((a, b) => {
|
||||
let comparison = 0;
|
||||
|
||||
if (this.sortColumn === 'name') {
|
||||
comparison = a.name.localeCompare(b.name);
|
||||
} else if (this.sortColumn === 'size') {
|
||||
comparison = (a.size || 0) - (b.size || 0);
|
||||
} else if (this.sortColumn === 'modified') {
|
||||
comparison = new Date(a.modified) - new Date(b.modified);
|
||||
}
|
||||
|
||||
return this.sortDirection === 'asc' ? comparison : -comparison;
|
||||
});
|
||||
}
|
||||
|
||||
getFileIcon(filename) {
|
||||
const extension = filename.split('.').pop().toLowerCase();
|
||||
console.log('[ViewManager] Getting icon for file:', { filename, extension });
|
||||
|
||||
const iconMap = {
|
||||
pdf: 'fa-file-pdf',
|
||||
doc: 'fa-file-word',
|
||||
docx: 'fa-file-word',
|
||||
xls: 'fa-file-excel',
|
||||
xlsx: 'fa-file-excel',
|
||||
ppt: 'fa-file-powerpoint',
|
||||
pptx: 'fa-file-powerpoint',
|
||||
txt: 'fa-file-alt',
|
||||
jpg: 'fa-file-image',
|
||||
jpeg: 'fa-file-image',
|
||||
png: 'fa-file-image',
|
||||
gif: 'fa-file-image',
|
||||
zip: 'fa-file-archive',
|
||||
rar: 'fa-file-archive',
|
||||
mp3: 'fa-file-audio',
|
||||
mp4: 'fa-file-video'
|
||||
};
|
||||
|
||||
return iconMap[extension] || 'fa-file';
|
||||
}
|
||||
|
||||
formatFileSize(bytes) {
|
||||
if (!bytes) return '0 B';
|
||||
|
||||
const units = ['B', 'KB', 'MB', 'GB', 'TB'];
|
||||
let size = bytes;
|
||||
let unitIndex = 0;
|
||||
|
||||
while (size >= 1024 && unitIndex < units.length - 1) {
|
||||
size /= 1024;
|
||||
unitIndex++;
|
||||
}
|
||||
|
||||
return `${size.toFixed(1)} ${units[unitIndex]}`;
|
||||
}
|
||||
|
||||
updateMultiSelectUI() {
|
||||
console.log('[ViewManager] Updating multi-select UI');
|
||||
const selectedItems = this.roomManager.fileManager.getSelectedItems();
|
||||
const hasSelection = selectedItems.length > 0;
|
||||
|
||||
document.getElementById('downloadSelectedBtn').style.display =
|
||||
hasSelection && this.roomManager.canDownload ? 'flex' : 'none';
|
||||
document.getElementById('deleteSelectedBtn').style.display =
|
||||
hasSelection && this.roomManager.canDelete ? 'flex' : 'none';
|
||||
|
||||
console.log('[ViewManager] Multi-select UI updated:', {
|
||||
hasSelection,
|
||||
selectedCount: selectedItems.length
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user