Files
Oxicloud/static/js/app/ui.js
T

1289 lines
53 KiB
JavaScript
Raw Normal View History

2025-03-19 23:28:29 +01:00
/**
* OxiCloud - UI Module
* This file handles UI-related functions, view toggling, and interface interactions
*/
2026-03-25 18:49:38 +01:00
// @ts-check
import { i18n } from '../core/i18n.js';
import { OxiIcons } from '../core/icons.js';
import * as viewPrefs from '../core/viewPrefs.js';
import { batchToolbar } from '../features/files/batchToolbar.js';
import { contextMenus } from '../features/files/contextMenus.js';
import { fileOps } from '../features/files/fileOperations.js';
import { inlineViewer } from '../features/files/inlineViewer.js';
import { wopiEditor } from '../features/files/wopiEditor.js';
import { recent } from '../features/library/recent.js';
import { loadFiles } from './filesView.js';
import { updateHistory } from './main.js';
2026-05-22 10:15:25 +02:00
import { activateFilesUI, switchToFilesSection, syncViewContainers } from './navigation.js';
import { app } from './state.js';
import { uiFileTypes } from './uiFileTypes.js';
import { uiNotifications } from './uiNotifications.js';
2026-05-07 23:40:02 +02:00
/**
* @import {FileItem, FolderItem} from '../core/types.js'
* @import {BatchResult} from '../features/files/fileOperations.js'
*/
2025-03-19 23:28:29 +01:00
// UI Module
const ui = {
2026-05-07 23:40:02 +02:00
/** @type {HTMLDivElement | null} */
dragPreview: null,
/** @type {HTMLDivElement | null} */
draggedItems: null,
/**
* Whether the Owner column is currently visible.
* Tracked so that newly rendered items can stamp the correct initial class.
*/
_ownerVisible: false,
2025-03-19 23:28:29 +01:00
/**
* Initialize context menus and dialogs
*/
initializeContextMenus() {
// Folder context menu
if (!document.getElementById('folder-context-menu')) {
const folderMenu = document.createElement('div');
2026-04-24 23:37:14 +02:00
folderMenu.classList.add('context-menu', 'hidden');
2025-03-19 23:28:29 +01:00
folderMenu.id = 'folder-context-menu';
folderMenu.innerHTML = `
2025-04-02 01:22:05 +02:00
<div class="context-menu-item" id="download-folder-option">
<i class="fas fa-download"></i> <span data-i18n="actions.download">Download</span>
2025-04-02 01:22:05 +02:00
</div>
2025-04-02 03:43:44 +02:00
<div class="context-menu-item" id="favorite-folder-option">
<i class="fas fa-star"></i> <span data-i18n="actions.favorite">Add to favorites</span>
2025-04-02 03:43:44 +02:00
</div>
2026-02-08 22:44:42 +01:00
<div class="context-menu-item" id="share-folder-option">
2026-05-22 10:15:25 +02:00
<i class="fas fa-oxiexport"></i> <span data-i18n="actions.share">Share</span>
2026-02-08 22:44:42 +01:00
</div>
<div class="context-menu-separator"></div>
2025-03-19 23:28:29 +01:00
<div class="context-menu-item" id="rename-folder-option">
<i class="fas fa-pen"></i> <span data-i18n="actions.rename">Rename</span>
2025-03-19 23:28:29 +01:00
</div>
<div class="context-menu-item" id="move-folder-option">
<i class="fas fa-arrows-alt"></i> <span data-i18n="actions.move">Move to...</span>
2025-03-19 23:28:29 +01:00
</div>
2026-02-08 22:44:42 +01:00
<div class="context-menu-separator"></div>
<div class="context-menu-item context-menu-item-danger" id="delete-folder-option">
<i class="fas fa-trash-alt"></i> <span data-i18n="actions.delete">Delete</span>
2025-03-19 23:28:29 +01:00
</div>
`;
document.body.appendChild(folderMenu);
i18n.translateElement(folderMenu);
2025-03-19 23:28:29 +01:00
}
// File context menu
if (!document.getElementById('file-context-menu')) {
const fileMenu = document.createElement('div');
2026-04-24 23:37:14 +02:00
fileMenu.classList.add('context-menu', 'hidden');
2025-03-19 23:28:29 +01:00
fileMenu.id = 'file-context-menu';
fileMenu.innerHTML = `
2025-04-02 05:08:30 +02:00
<div class="context-menu-item" id="view-file-option">
<i class="fas fa-eye"></i> <span data-i18n="actions.view">View</span>
2025-04-02 05:08:30 +02:00
</div>
<div class="context-menu-item hidden" id="wopi-edit-file-option">
<i class="fas fa-file-word"></i> <span>Edit in Office</span>
</div>
<div class="context-menu-item hidden" id="wopi-edit-file-tab-option">
<i class="fas fa-external-link-alt"></i> <span>Edit in Office (new tab)</span>
</div>
2025-04-02 01:22:05 +02:00
<div class="context-menu-item" id="download-file-option">
<i class="fas fa-download"></i> <span data-i18n="actions.download">Download</span>
2025-04-02 01:22:05 +02:00
</div>
<div class="context-menu-item hidden" id="open-parent-folder-option">
<i class="fas fa-folder-open"></i> <span data-i18n="actions.open_parent_folder">Go to parent folder</span>
</div>
2026-02-08 22:44:42 +01:00
<div class="context-menu-separator"></div>
2025-04-02 03:43:44 +02:00
<div class="context-menu-item" id="favorite-file-option">
<i class="fas fa-star"></i> <span data-i18n="actions.favorite">Add to favorites</span>
2025-04-02 03:43:44 +02:00
</div>
2025-03-28 08:09:18 +01:00
<div class="context-menu-item" id="share-file-option">
2026-05-22 10:15:25 +02:00
<i class="fas fa-oxiexport"></i> <span data-i18n="actions.share">Share</span>
2025-03-28 08:09:18 +01:00
</div>
2026-04-08 15:14:03 +03:00
<div class="context-menu-item hidden" id="add-to-playlist-option">
<i class="fas fa-compact-disc"></i> <span data-i18n="music.add_to_playlist">Add to Playlist</span>
</div>
2026-02-08 22:44:42 +01:00
<div class="context-menu-separator"></div>
<div class="context-menu-item" id="rename-file-option">
<i class="fas fa-pen"></i> <span data-i18n="actions.rename">Rename</span>
2026-02-08 22:44:42 +01:00
</div>
2025-03-19 23:28:29 +01:00
<div class="context-menu-item" id="move-file-option">
<i class="fas fa-arrows-alt"></i> <span data-i18n="actions.move">Move to...</span>
2025-03-19 23:28:29 +01:00
</div>
2026-02-08 22:44:42 +01:00
<div class="context-menu-separator"></div>
<div class="context-menu-item context-menu-item-danger" id="delete-file-option">
<i class="fas fa-trash-alt"></i> <span data-i18n="actions.delete">Delete</span>
2025-03-19 23:28:29 +01:00
</div>
`;
document.body.appendChild(fileMenu);
i18n.translateElement(fileMenu);
2025-03-19 23:28:29 +01:00
}
// Move dialog — modern with navigation
2025-03-19 23:28:29 +01:00
if (!document.getElementById('move-file-dialog')) {
const moveDialog = document.createElement('div');
moveDialog.classList.add('rename-dialog', 'hidden');
2025-03-19 23:28:29 +01:00
moveDialog.id = 'move-file-dialog';
moveDialog.innerHTML = `
<div class="rename-dialog-content">
2026-02-08 22:44:42 +01:00
<div class="rename-dialog-header">
<i class="fas fa-arrows-alt dialog-header-icon"></i>
<span data-i18n="dialogs.move_file">Move</span>
2026-02-08 22:44:42 +01:00
</div>
<div class="rename-dialog-body">
<p class="move-dialog-hint" data-i18n="dialogs.select_destination">Select destination folder:</p>
<div id="move-dialog-breadcrumb" class="move-dialog-breadcrumb"></div>
<div id="folder-select-container" class="folder-select-container">
2025-03-19 23:28:29 +01:00
</div>
</div>
<div class="rename-dialog-buttons">
<button class="btn btn-secondary" id="move-cancel-btn" data-i18n="actions.cancel">Cancel</button>
<button class="btn btn-outline" id="copy-confirm-btn" data-i18n="actions.copy">Copy</button>
<button class="btn btn-primary" id="move-confirm-btn" data-i18n="actions.move_to">Move</button>
2025-03-19 23:28:29 +01:00
</div>
</div>
`;
document.body.appendChild(moveDialog);
}
// Share dialog is now handled by shareModal (components/shareModal.js)
2025-03-28 08:09:18 +01:00
// Notification dialog
if (!document.getElementById('notification-dialog')) {
const notificationDialog = document.createElement('div');
notificationDialog.classList.add('share-dialog', 'hidden');
2025-03-28 08:09:18 +01:00
notificationDialog.id = 'notification-dialog';
notificationDialog.innerHTML = `
<div class="share-dialog-content">
2026-02-08 22:44:42 +01:00
<div class="share-dialog-header">
<i class="fas fa-envelope dialog-header-icon"></i>
<span data-i18n="dialogs.notify">Notify shared link</span>
2026-02-08 22:44:42 +01:00
</div>
2025-03-28 08:09:18 +01:00
<p><strong>URL:</strong> <span id="notification-share-url"></span></p>
2025-03-28 08:09:18 +01:00
<div class="form-group">
<label for="notification-email" data-i18n="dialogs.recipient">Recipient:</label>
<input type="email" id="notification-email" placeholder="Email address">
2025-03-28 08:09:18 +01:00
</div>
2025-03-28 08:09:18 +01:00
<div class="form-group">
<label for="notification-message" data-i18n="dialogs.message">Message (optional):</label>
2025-03-28 08:09:18 +01:00
<textarea id="notification-message" rows="3"></textarea>
</div>
2025-03-28 08:09:18 +01:00
<div class="share-dialog-buttons">
<button class="btn btn-secondary" id="notification-cancel-btn" data-i18n="actions.cancel">Cancel</button>
<button class="btn btn-primary" id="notification-send-btn" data-i18n="actions.send">Send</button>
2025-03-28 08:09:18 +01:00
</div>
</div>
`;
document.body.appendChild(notificationDialog);
2025-03-28 08:09:18 +01:00
// Add event listeners for notification dialog
2026-04-30 02:02:27 +02:00
document.getElementById('notification-cancel-btn')?.addEventListener('click', () => {
2025-03-28 08:09:18 +01:00
contextMenus.closeNotificationDialog();
});
2026-04-30 02:02:27 +02:00
document.getElementById('notification-send-btn')?.addEventListener('click', () => {
2025-03-28 08:09:18 +01:00
contextMenus.sendShareNotification();
});
}
2025-03-19 23:28:29 +01:00
2026-04-08 15:14:03 +03:00
// Playlist selection dialog
if (!document.getElementById('playlist-dialog')) {
const playlistDialog = document.createElement('div');
playlistDialog.classList.add('share-dialog', 'hidden');
2026-04-08 15:14:03 +03:00
playlistDialog.id = 'playlist-dialog';
playlistDialog.innerHTML = `
<div class="share-dialog-content">
<div class="share-dialog-header">
<i class="fas fa-music dialog-header-icon"></i>
<span data-i18n="music.add_to_playlist">Add to Playlist</span>
</div>
<div id="playlist-dialog-files-info" class="shared-item-info"></div>
<div id="playlist-select-container" class="folder-select-container">
</div>
<div class="rename-dialog-buttons">
<button class="btn btn-secondary" id="playlist-cancel-btn" data-i18n="actions.cancel">Cancel</button>
<button class="btn btn-primary" id="playlist-add-btn" data-i18n="music.add">Add</button>
</div>
</div>
`;
document.body.appendChild(playlistDialog);
2026-04-30 02:02:27 +02:00
document.getElementById('playlist-cancel-btn')?.addEventListener('click', () => {
if (contextMenus) contextMenus.closePlaylistDialog();
2026-04-08 15:14:03 +03:00
});
}
2025-03-19 23:28:29 +01:00
// Assign events to menu items
if (contextMenus) {
contextMenus.assignMenuEvents();
2025-03-28 08:09:18 +01:00
} else {
console.warn('contextMenus module not loaded');
}
2025-03-19 23:28:29 +01:00
},
/**
* Set up drag and drop functionality
*/
setupDragAndDrop() {
2026-03-25 18:49:38 +01:00
// prepare area to build dragged elements
2026-04-07 22:48:59 +02:00
this.dragPreview = document.createElement('div');
this.dragPreview.className = 'drag-preview';
2026-03-25 18:49:38 +01:00
document.body.appendChild(this.dragPreview);
this.draggedItems = null;
2025-03-19 23:28:29 +01:00
const dropzone = document.getElementById('dropzone');
2026-05-07 23:40:02 +02:00
/**
*
* @param {DataTransfer} dataTransfer
* @returns {Promise<any[]|null>}
*/
const collectDroppedEntries = async (dataTransfer) => {
const items = Array.from(dataTransfer?.items || []);
2026-04-07 22:48:59 +02:00
const rootEntries = items.map((it) => (typeof it.webkitGetAsEntry === 'function' ? it.webkitGetAsEntry() : null)).filter(Boolean);
if (rootEntries.length === 0) return null;
2026-05-07 23:40:02 +02:00
/** @type {Array<{file: File, relativePath: string}>} */
const out = [];
2026-05-07 23:40:02 +02:00
/**
* @param {FileSystemEntry} entry
* @param {string} prefix
*/
const walkEntry = async (entry, prefix = '') => {
if (!entry) return;
if (entry.isFile) {
await new Promise((resolve) => {
2026-05-07 23:40:02 +02:00
/** @type {FileSystemFileEntry} */ (entry).file(
(/** @type {File} */ file) => {
out.push({ file, relativePath: `${prefix}${file.name}` });
2026-04-30 02:02:27 +02:00
resolve(undefined);
},
2026-04-30 02:02:27 +02:00
() => resolve(undefined)
);
});
return;
}
if (entry.isDirectory) {
const dirPrefix = `${prefix}${entry.name}/`;
2026-05-07 23:40:02 +02:00
const reader = /** @type {FileSystemDirectoryEntry} */ (entry).createReader();
while (true) {
const children = await new Promise((resolve) => {
reader.readEntries(resolve, () => resolve([]));
});
if (!children || children.length === 0) break;
for (const child of children) {
// eslint-disable-next-line no-await-in-loop
await walkEntry(child, dirPrefix);
}
}
}
};
for (const root of rootEntries) {
// eslint-disable-next-line no-await-in-loop
await walkEntry(root, '');
}
return out;
};
2025-03-19 23:28:29 +01:00
// Dropzone events
2026-04-30 02:02:27 +02:00
dropzone?.addEventListener('dragover', (e) => {
2025-03-19 23:28:29 +01:00
e.preventDefault();
dropzone.classList.add('active');
});
2026-04-30 02:02:27 +02:00
dropzone?.addEventListener('dragleave', () => {
2025-03-19 23:28:29 +01:00
dropzone.classList.remove('active');
});
2026-04-30 02:02:27 +02:00
// remove previous hack e._oxiHandled
// WeakSet will automatically garbage collect entry
const handledDropEvents = new WeakSet();
dropzone?.addEventListener('drop', async (e) => {
2025-03-19 23:28:29 +01:00
e.preventDefault();
e.stopPropagation(); // Prevent bubbling to document's drop handler (avoids double upload)
2026-04-30 02:02:27 +02:00
handledDropEvents.add(e); // Mark as handled for document-level fallback
2025-03-19 23:28:29 +01:00
dropzone.classList.remove('active');
2026-04-30 02:02:27 +02:00
if (!e.dataTransfer) return;
2025-03-19 23:28:29 +01:00
if (e.dataTransfer.files.length > 0) {
// First try directory-aware extraction (Finder folder drag & drop)
const droppedEntries = await collectDroppedEntries(e.dataTransfer);
if (droppedEntries && droppedEntries.length > 0) {
2026-04-07 22:50:42 +02:00
const hasFolderStructure = droppedEntries.some((x) => x.relativePath?.includes('/'));
if (hasFolderStructure) {
fileOps.uploadFolderEntries(droppedEntries);
} else {
2026-04-07 22:48:59 +02:00
fileOps.uploadFiles(droppedEntries.map((x) => x.file));
}
setTimeout(() => {
2026-04-24 23:37:14 +02:00
dropzone?.classList.add('hidden');
}, 500);
return;
}
// Detect folder drops: files from folder drops have webkitRelativePath set
2026-04-07 22:50:42 +02:00
const hasRelativePaths = Array.from(e.dataTransfer.files).some((f) => f.webkitRelativePath?.includes('/'));
if (hasRelativePaths) {
fileOps.uploadFolderFiles(e.dataTransfer.files);
} else {
fileOps.uploadFiles(e.dataTransfer.files);
}
2025-03-19 23:28:29 +01:00
}
setTimeout(() => {
2026-04-24 23:37:14 +02:00
dropzone?.classList.add('hidden');
}, 500);
2025-03-19 23:28:29 +01:00
});
// Document-wide drag and drop — only active in the Files section
2025-03-19 23:28:29 +01:00
document.addEventListener('dragover', (e) => {
e.preventDefault();
2026-04-30 02:02:27 +02:00
if (!e.dataTransfer) return;
if (e.dataTransfer.types.includes('Files') && app.currentSection === 'files') {
2026-04-24 23:37:14 +02:00
dropzone?.classList.remove('hidden');
dropzone?.classList.add('active');
2025-03-19 23:28:29 +01:00
}
});
document.addEventListener('dragleave', (e) => {
2026-04-07 22:48:59 +02:00
if (e.clientX <= 0 || e.clientY <= 0 || e.clientX >= window.innerWidth || e.clientY >= window.innerHeight) {
2026-04-30 02:02:27 +02:00
dropzone?.classList.remove('active');
2025-03-19 23:28:29 +01:00
setTimeout(() => {
2026-04-30 02:02:27 +02:00
if (!dropzone?.classList.contains('active')) {
2026-04-24 23:37:14 +02:00
dropzone?.classList.add('hidden');
2025-03-19 23:28:29 +01:00
}
}, 100);
}
});
document.addEventListener('drop', async (e) => {
2025-03-19 23:28:29 +01:00
e.preventDefault();
2026-04-30 02:02:27 +02:00
dropzone?.classList.remove('active');
2025-03-19 23:28:29 +01:00
// Skip if already handled by the dropzone handler (defensive against bubble leaks)
2026-04-30 02:02:27 +02:00
if (handledDropEvents.has(e)) return;
2026-04-30 02:02:27 +02:00
if (!e.dataTransfer) return;
if (app.currentSection !== 'files') {
if (e.dataTransfer.types.includes('Files')) {
this.showNotification(i18n.t('notifications.upload_files_section_title'), i18n.t('notifications.upload_files_section_body'));
}
return;
}
2025-03-19 23:28:29 +01:00
if (e.dataTransfer.files.length > 0) {
// First try directory-aware extraction (Finder folder drag & drop)
const droppedEntries = await collectDroppedEntries(e.dataTransfer);
if (droppedEntries && droppedEntries.length > 0) {
2026-04-07 22:50:42 +02:00
const hasFolderStructure = droppedEntries.some((x) => x.relativePath?.includes('/'));
if (hasFolderStructure) {
fileOps.uploadFolderEntries(droppedEntries);
} else {
2026-04-07 22:48:59 +02:00
fileOps.uploadFiles(droppedEntries.map((x) => x.file));
}
setTimeout(() => {
2026-04-24 23:37:14 +02:00
dropzone?.classList.add('hidden');
}, 500);
return;
}
// Detect folder drops: files from folder drops have webkitRelativePath set
2026-04-07 22:50:42 +02:00
const hasRelativePaths = Array.from(e.dataTransfer.files).some((f) => f.webkitRelativePath?.includes('/'));
if (hasRelativePaths) {
fileOps.uploadFolderFiles(e.dataTransfer.files);
} else {
fileOps.uploadFiles(e.dataTransfer.files);
}
2025-03-19 23:28:29 +01:00
}
setTimeout(() => {
2026-04-24 23:37:14 +02:00
dropzone?.classList.add('hidden');
2025-03-19 23:28:29 +01:00
}, 500);
});
},
/**
* Switch to grid view
*/
switchToGridView() {
app.currentView = 'grid';
2025-03-19 23:28:29 +01:00
localStorage.setItem('oxicloud-view', 'grid');
if (app.currentSection) viewPrefs.saveView(app.currentSection, 'grid');
syncViewContainers();
2025-03-19 23:28:29 +01:00
},
/**
* Switch to list view
*/
switchToListView() {
app.currentView = 'list';
2025-03-19 23:28:29 +01:00
localStorage.setItem('oxicloud-view', 'list');
if (app.currentSection) viewPrefs.saveView(app.currentSection, 'list');
syncViewContainers();
2025-03-19 23:28:29 +01:00
},
/**
* Show or hide the Owner column. When hidden, no name-resolution calls are made.
* Sections that show owner (SharedWithMe, Favorites) pass `true`; all others `false`.
* @param {boolean} visible
*/
setOwnerColumnVisible(visible) {
this._ownerVisible = visible;
document
.getElementById('files-list')
?.querySelectorAll('.owner-cell')
.forEach((cell) => {
cell.classList.toggle('hidden', !visible);
});
},
2025-03-19 23:28:29 +01:00
/**
* Update breadcrumb navigation from the breadcrumbPath array.
* Renders: Home > folder1 > folder2 > ...
* Each segment is clickable to navigate back to that level.
2025-03-19 23:28:29 +01:00
*/
updateBreadcrumb() {
2025-03-19 23:28:29 +01:00
const breadcrumb = document.querySelector('.breadcrumb');
2026-04-30 02:02:27 +02:00
if (breadcrumb) {
breadcrumb.innerHTML = '';
}
const path = app.breadcrumbPath; // [{id, name}, ...]
// -- Home icon (always present, clickable to go to root) --
const homeIcon = document.createElement('span');
homeIcon.className = 'breadcrumb-item breadcrumb-home';
homeIcon.innerHTML = '<i class="fas fa-home"></i>';
homeIcon.title = i18n.t('breadcrumb.home');
// Home is always clickable if we have a home folder
if (app.userHomeFolderId) {
homeIcon.classList.add('breadcrumb-link');
homeIcon.addEventListener('click', () => {
app.breadcrumbPath = [];
app.currentPath = app.userHomeFolderId;
2026-04-07 22:50:42 +02:00
this.updateBreadcrumb();
loadFiles();
2025-03-27 01:13:34 +01:00
});
}
2026-04-30 02:02:27 +02:00
breadcrumb?.appendChild(homeIcon);
// -- Root/Home + Intermediate + current segments --
// NOTE: The home folder entry is added by rebuildBreadCrumb() (filesView.js) when it
// reaches the root folder during traversal. updateBreadcrumb() just renders app.breadcrumbPath
// as-is — no implicit mutation. This allows shared-folder navigation to show only the
// reachable subtree without the home prefix leaking in.
path.forEach((segment, index) => {
const isLast = index === path.length - 1;
// Separator
2025-03-19 23:28:29 +01:00
const separator = document.createElement('span');
separator.className = 'breadcrumb-separator';
separator.textContent = '>';
2026-04-30 02:02:27 +02:00
breadcrumb?.appendChild(separator);
2025-03-19 23:28:29 +01:00
// Segment item
const item = document.createElement('span');
item.className = 'breadcrumb-item';
item.textContent = segment.name;
item.dataset.folderId = segment.id;
if (!isLast) {
// Intermediate segment: clickable – truncate path to this level
item.classList.add('breadcrumb-link');
item.addEventListener('click', () => {
app.breadcrumbPath = path.slice(0, index + 1);
app.currentPath = segment.id;
2026-04-07 22:50:42 +02:00
this.updateBreadcrumb();
loadFiles();
});
// can drag files on this folder
// dragover – only folders are valid drop targets
item.addEventListener('dragover', (e) => {
2026-04-30 02:02:27 +02:00
const card = /** @type {HTMLElement} */ (e.target).closest('span');
2026-04-07 22:50:42 +02:00
if (!card?.dataset.folderId) return;
e.preventDefault();
card.classList.add('drop-target');
});
// dragleave
item.addEventListener('dragleave', (e) => {
2026-04-07 22:48:59 +02:00
console.log('dragleave ', e);
2026-04-30 02:02:27 +02:00
const card = /** @type {HTMLElement} */ (e.target).closest('span');
2026-04-07 22:50:42 +02:00
if (!card?.dataset.folderId) return;
card.classList.remove('drop-target');
});
// drop – only folders accept drops
item.addEventListener('drop', async (e) => {
2026-04-30 02:02:27 +02:00
const card = /** @type {HTMLElement} */ (e.target).closest('span');
if (!card) return;
const targetFolderId = card.dataset.folderId;
if (!targetFolderId) return;
e.preventDefault();
card.classList.remove('drop-target');
2026-03-25 18:49:38 +01:00
const action = e.dataTransfer?.dropEffect;
2026-04-30 02:02:27 +02:00
if (action) {
await this._dropToFolder(action, targetFolderId, e.dataTransfer);
}
});
} else {
// Last segment: current location, not clickable
item.classList.add('breadcrumb-current');
}
2026-04-30 02:02:27 +02:00
breadcrumb?.appendChild(item);
});
2025-03-19 23:28:29 +01:00
},
/**
* Check if a file can be previewed in the viewer
2026-05-07 23:40:02 +02:00
* @param {FileItem} file
* @returns {boolean}
*/
isViewableFile(file) {
return uiFileTypes.isViewableFile(file);
},
/**
* Get FontAwesome icon class for a filename based on its extension.
* Used as fallback when the backend DTO doesn't include icon_class
* (e.g. trash items).
2026-05-07 23:40:02 +02:00
* @param {string} fileName
*/
getIconClass(fileName) {
return uiFileTypes.getIconClass(fileName);
},
/**
* Get CSS special class for icon styling based on filename extension.
* Used as fallback when the backend DTO doesn't include icon_special_class.
2026-05-07 23:40:02 +02:00
* @param {string} fileName
*/
getIconSpecialClass(fileName) {
return uiFileTypes.getIconSpecialClass(fileName);
},
2025-03-19 23:28:29 +01:00
/**
* Show notification
* @param {string} title - Notification title
* @param {string} message - Notification message
*/
showNotification(title, message) {
uiNotifications.show(title, message);
2025-03-19 23:28:29 +01:00
},
/**
* Close folder context menu
*/
closeContextMenu() {
const menu = document.getElementById('folder-context-menu');
if (menu) {
2026-04-24 23:37:14 +02:00
menu.classList.add('hidden');
app.contextMenuTargetFolder = null;
2025-03-19 23:28:29 +01:00
}
},
/**
* Close file context menu
*/
closeFileContextMenu() {
const menu = document.getElementById('file-context-menu');
if (menu) {
2026-04-24 23:37:14 +02:00
menu.classList.add('hidden');
app.contextMenuTargetFile = null;
2025-03-19 23:28:29 +01:00
}
},
_getActiveView() {
if (app && app.currentView === 'list') return 'list';
if (app && app.currentView === 'grid') return 'grid';
const stored = localStorage.getItem('oxicloud-view');
return stored === 'list' ? 'list' : 'grid';
},
2026-03-25 18:49:38 +01:00
/**
* handle the drop
* @param {string} action copy|move
* @param {string} targetFolderId the target
* @param {any} dataTransfer fallback if nothing is selected
*/
async _dropToFolder(action, targetFolderId, dataTransfer) {
const selection = batchToolbar.getSelection(targetFolderId);
batchToolbar.clear();
2026-03-25 18:49:38 +01:00
2026-04-07 22:50:42 +02:00
if (selection.fileIds.length === 0 && selection.folderIds.length === 0) {
2026-03-25 18:49:38 +01:00
// try to use dataTransfer (direct move without selection)
const id = dataTransfer.getData('text/plain');
const isFolder = dataTransfer.getData('application/oxicloud-folder') === 'true';
if (isFolder && id === targetFolderId) {
2026-04-07 22:48:59 +02:00
console.log('nothing to do');
2026-03-25 18:49:38 +01:00
return; //nothing to do
}
// append current item to selection
if (isFolder) {
console.log(`adding ${id} as folder`);
selection.folderIds.push(id);
2026-04-07 22:48:59 +02:00
} else {
2026-03-25 18:49:38 +01:00
console.log(`adding ${id} as file`);
selection.fileIds.push(id);
}
}
console.log(`request ${action} of: `, selection);
/*
TODO do we prefer use atomic operation on 1 item ? like:
await fileOps.moveFolder(sourceId, targetFolderId);
await fileOps.moveFile(sourceId, targetFolderId);
*/
2026-05-07 23:40:02 +02:00
/** @type {BatchResult} */
2026-03-25 18:49:38 +01:00
let result;
switch (action) {
2026-04-07 22:48:59 +02:00
case 'copy':
result = await fileOps.batchCopy(selection.fileIds, selection.folderIds, targetFolderId);
2026-03-25 18:49:38 +01:00
break;
2026-04-07 22:48:59 +02:00
case 'move':
result = await fileOps.batchMove(selection.fileIds, selection.folderIds, targetFolderId);
// redraw directory
if (result.success > 0) loadFiles();
2026-03-25 18:49:38 +01:00
break;
default:
console.error(`drag and drop: action ${action} unknown`);
return;
2026-03-25 18:49:38 +01:00
}
batchToolbar.showBatchResult(action, result);
2026-04-07 22:48:59 +02:00
console.log(result);
2026-03-25 18:49:38 +01:00
},
2025-03-19 23:28:29 +01:00
/**
* Attach delegated drag-and-drop listeners to a files-list container.
* Called once by `filesView.js` after the `ResourceListComponent` is created.
* Idempotent — a second call on the same element is a no-op.
*
* Handles:
* - `dragstart` / `dragend` — visual preview + dataTransfer payload
* - `dragover` / `dragleave` / `drop` — folder drop targets (delegated)
*
* @param {HTMLElement} container The `#files-list` element.
2025-03-19 23:28:29 +01:00
*/
initDragDrop(container) {
if (container.dataset.dragDropReady) return;
container.dataset.dragDropReady = '1';
// ── helpers ────────────────────────────────────────────────────────
/** @param {HTMLElement} card */
const itemInfo = (card) => {
if (!card) return null;
const fileId = card.dataset.fileId;
if (fileId) return { type: 'file', id: fileId, name: card.dataset.fileName ?? '' };
const folderId = card.dataset.folderId;
if (folderId) return { type: 'folder', id: folderId, name: card.dataset.folderName ?? '' };
return null;
};
// ── dragstart ──────────────────────────────────────────────────────
container.addEventListener('dragstart', (e) => {
2026-05-07 23:40:02 +02:00
const card = /** @type {HTMLDivElement | null} */ (/** @type {HTMLElement} */ (e.target).closest('.file-item'));
2026-04-07 22:48:59 +02:00
if (!card) {
e.preventDefault();
return;
}
const info = itemInfo(card);
2026-04-07 22:48:59 +02:00
if (!info) {
e.preventDefault();
return;
}
2026-04-30 02:02:27 +02:00
if (!e.dataTransfer) return;
e.dataTransfer.setData('text/plain', info.id);
if (info.type === 'folder') e.dataTransfer.setData('application/oxicloud-folder', 'true');
2026-04-07 22:48:59 +02:00
e.dataTransfer.effectAllowed = 'copyMove';
2026-04-07 22:50:42 +02:00
this.draggedItems = document.createElement('div');
this.draggedItems.className = 'dragged-items';
2026-04-07 22:48:59 +02:00
let selectedCards = container.querySelectorAll('div.selected > div.name-cell');
if (selectedCards.length === 0) selectedCards = card.querySelectorAll('div.name-cell');
2026-04-07 22:48:59 +02:00
const maxElements = 4;
let lastItemDiv = null;
let index = 0;
while (index < selectedCards.length && index < maxElements) {
2026-04-07 22:50:42 +02:00
const iconCell = document.createElement('div');
const icon = selectedCards[index].getElementsByClassName('file-icon').item(0)?.cloneNode(true);
if (icon) {
2026-04-07 22:48:59 +02:00
iconCell.appendChild(icon);
iconCell.querySelectorAll('img').forEach((img) => {
2026-04-07 22:48:59 +02:00
img.loading = 'eager';
});
}
2026-04-07 22:50:42 +02:00
const nameCell = document.createElement('div');
const name = selectedCards[index].getElementsByTagName('span').item(0)?.cloneNode(true);
if (name) nameCell.appendChild(name);
2026-03-25 18:49:38 +01:00
2026-04-07 22:50:42 +02:00
const div = document.createElement('div');
2026-04-07 22:48:59 +02:00
div.className = 'file-item';
div.appendChild(iconCell);
div.appendChild(nameCell);
2026-04-07 22:50:42 +02:00
this.draggedItems.appendChild(div);
lastItemDiv = div;
index += 1;
}
2026-03-25 18:49:38 +01:00
let nameEncoded;
let downloadUrl;
if (selectedCards.length === 1) {
if (info.type === 'file') {
nameEncoded = info.name.replaceAll(/:/g, '-');
downloadUrl = `${window.location.origin}/api/files/${info.id}`;
} else {
nameEncoded = info.name.replaceAll(/:/g, '-').concat('.zip');
downloadUrl = `${window.location.origin}/api/folders/${info.id}/download?format=zip`;
}
} else {
const now = new Date().toISOString().replace(/T/, ' ').replace(/\..*/, '').replaceAll(/:/g, '-');
nameEncoded = `oxicloud ${now}.zip`;
/** @type {string[]} */ const folderIds = [];
/** @type {string[]} */ const fileIds = [];
/** @type {NodeListOf<HTMLDivElement>} */ (container.querySelectorAll('div.selected')).forEach((el) => {
const item = itemInfo(/** @type {HTMLElement} */ (el));
if (item?.type === 'file') fileIds.push(item.id);
else if (item) folderIds.push(item.id);
});
downloadUrl = `${window.location.origin}/api/batch/download?file_ids=${fileIds.join(',')}&folder_ids=${folderIds.join(',')}`;
}
e.dataTransfer.setData('DownloadURL', `application/octet-stream:${nameEncoded}:${downloadUrl}`);
if (selectedCards.length > 1) {
2026-04-07 22:50:42 +02:00
const badge = document.createElement('span');
2026-04-07 22:48:59 +02:00
badge.className = 'dragged-items-badge';
badge.innerText = `${selectedCards.length}`;
2026-04-07 22:50:42 +02:00
this.draggedItems.appendChild(badge);
}
if (selectedCards.length > maxElements) lastItemDiv?.classList.add('fading');
this.dragPreview?.appendChild(this.draggedItems);
2026-04-07 22:50:42 +02:00
e.dataTransfer.setDragImage(this.draggedItems, 0, 0);
});
2025-03-19 23:28:29 +01:00
// ── dragend ────────────────────────────────────────────────────────
container.addEventListener('dragend', () => {
if (this.draggedItems && this.dragPreview?.contains(this.draggedItems)) {
this.dragPreview.removeChild(this.draggedItems);
}
2026-04-07 22:50:42 +02:00
document.querySelectorAll('.drop-target').forEach((el) => {
el.classList.remove('drop-target');
});
});
2025-03-19 23:28:29 +01:00
// ── dragover — only folder cards are valid drop targets ────────────
container.addEventListener('dragover', (e) => {
2026-04-30 02:02:27 +02:00
const card = /** @type {HTMLElement} */ (/** @type {HTMLElement} */ (e.target).closest('.file-item'));
if (!card || card.dataset.fileId || !card.dataset.folderId) return;
e.preventDefault();
card.classList.add('drop-target');
});
2025-03-19 23:28:29 +01:00
// ── dragleave ──────────────────────────────────────────────────────
container.addEventListener('dragleave', (e) => {
2026-04-30 02:02:27 +02:00
const card = /** @type {HTMLElement} */ (/** @type {HTMLElement} */ (e.target).closest('.file-item'));
if (!card || card.dataset.fileId) return;
card.classList.remove('drop-target');
});
2025-03-19 23:28:29 +01:00
// ── drop ───────────────────────────────────────────────────────────
container.addEventListener('drop', async (e) => {
2026-04-30 02:02:27 +02:00
const card = /** @type {HTMLElement} */ (/** @type {HTMLElement} */ (e.target).closest('.file-item'));
if (!card || card.dataset.fileId || !card.dataset.folderId) return;
e.preventDefault();
card.classList.remove('drop-target');
2026-04-30 02:02:27 +02:00
if (!e.dataTransfer) return;
await this._dropToFolder(e.dataTransfer.dropEffect, card.dataset.folderId, e.dataTransfer);
});
},
2026-05-26 23:21:58 +02:00
/* ================================================================
* Item open / navigate — shared by ui.js delegation and component
* callbacks so the same logic fires regardless of which view renders
* the items.
* ================================================================ */
/**
* Open a file: dispatch a recent-access event, try WOPI, fall back to
* inline viewer or download.
* @param {FileItem} file
*/
async _openFile(file) {
if (!file) return;
if (recent) {
document.dispatchEvent(new CustomEvent('file-accessed', { detail: { file } }));
}
// WOPI editor intercept: open Office documents in the WOPI editor
// But NOT image files - those should be previewed in the inline viewer
const ext = (file.name || '').split('.').pop().toLowerCase();
const imageExts = ['jpg', 'jpeg', 'png', 'gif', 'svg', 'webp', 'bmp', 'ico', 'heic', 'heif', 'avif', 'tiff'];
const isImage = file.mime_type?.startsWith('image/') || imageExts.includes(ext);
try {
if (!isImage && wopiEditor && (await wopiEditor.canEdit(file.name))) {
await wopiEditor.openInModal(file.id, file.name, 'edit');
return;
}
} catch (e) {
console.warn(`WOPI Editor failed, falling back to classic view`, e);
}
if (this.isViewableFile(file) || isImage) {
if (inlineViewer) {
inlineViewer.openFile(file);
app.viewFile = file.id;
updateHistory(false);
} else {
fileOps.downloadFile(file.id, file.name);
}
} else {
fileOps.downloadFile(file.id, file.name);
}
},
/**
* Navigate into a folder, handling section transitions (SharedWithMe,
* Favorites, Recent → Files).
* @param {string|undefined} folderId
* @param {string|undefined} folderName
*/
_navigateToFolder(folderId, folderName) {
if (!folderId) return;
if (app.currentSection === 'favorites' || app.currentSection === 'recent') {
switchToFilesSection();
app.currentPath = folderId;
loadFiles();
return;
}
if (app.currentSection === 'sharedwithme' || app.currentSection === 'shared') {
2026-05-26 23:21:58 +02:00
// Activate Files UI (nav, breadcrumb, actions bar) without
// resetting the path — the shared folder becomes the entry point.
activateFilesUI();
}
app.breadcrumbPath.push({ id: folderId, name: folderName || '' });
app.currentPath = folderId;
this.updateBreadcrumb();
loadFiles();
},
/**
* Open a file or navigate into a folder.
* Used as the `onOpen` callback for `ResourceListComponent`.
* @param {FileItem|FolderItem} item
*/
async openItem(item) {
if ('mime_type' in item) {
await this._openFile(/** @type {FileItem} */ (item));
} else {
const folder = /** @type {FolderItem} */ (item);
this._navigateToFolder(folder.id, folder.name);
}
},
/**
* Set the context-menu target and show the appropriate menu.
* Used as the `onContextMenu` callback for `ResourceListComponent`.
* @param {FileItem|FolderItem} item
* @param {MouseEvent} e
*/
showContextMenuForItem(item, e) {
const trigger = /** @type {HTMLElement | null} */ (/** @type {HTMLElement} */ (e.target).closest('.file-actions'));
if ('mime_type' in item) {
app.contextMenuTargetFile = /** @type {FileItem} */ (item);
if (trigger) {
showContextMenuAtElement(trigger, 'file-context-menu');
} else {
const menu = document.getElementById('file-context-menu');
if (menu) {
menu.style.left = `${e.pageX}px`;
menu.style.top = `${e.pageY}px`;
contextMenus.sync();
menu.classList.remove('hidden');
}
}
} else {
app.contextMenuTargetFolder = /** @type {FolderItem} */ (item);
if (trigger) {
showContextMenuAtElement(trigger, 'folder-context-menu');
} else {
const menu = document.getElementById('folder-context-menu');
if (menu) {
menu.style.left = `${e.pageX}px`;
menu.style.top = `${e.pageY}px`;
contextMenus.sync();
menu.classList.remove('hidden');
}
}
}
},
/**
* Sync favorite visuals for a file/folder across grid and list views.
2026-05-07 23:40:02 +02:00
* @param {string} itemId
* @param {string} itemType
* @param {boolean} isFavorite
*/
setFavoriteVisualState(itemId, itemType, isFavorite) {
2026-04-07 22:48:59 +02:00
const selector = itemType === 'folder' ? `#files-list .file-item[data-folder-id="${itemId}"]` : `#files-list .file-item[data-file-id="${itemId}"]`;
const item = document.querySelector(selector);
const starBtn = item?.querySelector('.favorite-star');
// chzn
if (starBtn) {
starBtn.classList.toggle('active', !!isFavorite);
// SVG icon path (after icons.js replacement)
const svg = starBtn.querySelector('svg');
const filledPath = OxiIcons?.star;
const outlinePath = OxiIcons?.['star-outline'];
const targetPath = isFavorite ? filledPath : outlinePath;
if (svg && targetPath) {
const p = svg.querySelector('path');
2026-04-30 02:02:27 +02:00
if (p) p.setAttribute('d', String(targetPath[1]));
svg.setAttribute('viewBox', `0 0 ${targetPath[0]} 512`);
}
// Fallback <i> icon (before icons.js replacement)
const i = starBtn.querySelector('i');
if (i) {
i.classList.remove('fas', 'far');
i.classList.add(isFavorite ? 'fas' : 'far');
}
}
2026-04-07 22:48:59 +02:00
// toggle favorite's badge
if (item) {
const badgeFavorite = item.querySelector('.file-badge-favorite');
badgeFavorite?.classList.toggle('hidden', !isFavorite);
}
},
2026-05-07 23:40:02 +02:00
/**
* @param {string} itemId
* @param {string} itemType
* @param {boolean} isShared
*/
setSharedVisualState(itemId, itemType, isShared) {
console.log(`setSharedVisual call for ${itemId} ${itemType} to ${isShared}`);
const selector = itemType === 'folder' ? `#files-list .file-item[data-folder-id="${itemId}"]` : `#files-list .file-item[data-file-id="${itemId}"]`;
// toggle favorite's badge
const item = document.querySelector(selector);
if (item) {
const badgeShared = item.querySelector('.file-badge-shared');
badgeShared?.classList.toggle('hidden', !isShared);
}
},
/* ================================================================
* Element-creation helpers
* ================================================================ */
resetFilesList() {
const filesList = document.getElementById('files-list');
2026-04-07 22:48:59 +02:00
const filesContainerError = document.getElementById('files-container-error');
if (!filesList) return;
2026-05-26 23:21:58 +02:00
// Let ui.js delegation handle this container again
delete filesList.dataset.managedBy;
2026-04-07 22:48:59 +02:00
filesList.innerHTML = `
<div class="list-header">
<div class="list-header-checkbox"><input type="checkbox" id="select-all-checkbox" title="Select all"></div>
<div data-i18n="files.name">Name</div>
<div class="owner-cell${this._ownerVisible ? '' : ' hidden'}" data-i18n="files.owner">Owner</div>
<div data-i18n="files.type">Type</div>
<div data-i18n="files.size">Size</div>
<div data-i18n="files.modified">Modified</div>
<div></div><!-- actions -->
</div>`;
i18n.translateElement(filesList);
2026-04-07 22:48:59 +02:00
filesList.classList.remove('hidden');
filesContainerError?.classList.add('hidden');
},
showEmptyList() {
this.showError(`
<i class="fas fa-folder-open empty-state-icon"></i>
<p data-i18n="files.no_files"></p>
<p data-i18n="files.empty_hint"></p>
2026-04-07 22:48:59 +02:00
`);
},
/**
*
* @param {string} content
*
*/
showError(content) {
2026-04-07 22:48:59 +02:00
const filesContainerError = document.getElementById('files-container-error');
const filesList = document.getElementById('files-list');
if (filesContainerError) filesContainerError.innerHTML = content;
i18n.translateElement(filesContainerError);
2026-04-07 22:48:59 +02:00
filesContainerError?.classList.remove('hidden');
filesList?.classList.add('hidden');
2025-03-19 23:28:29 +01:00
}
};
2026-02-08 22:44:42 +01:00
// --- Global helper functions for card interactions ---
/**
* Toggle selection state of a file/folder card.
* Routes through the batchToolbar module so batch actions know about selected items.
2026-05-07 23:40:02 +02:00
* @param {HTMLDivElement} card
* @param {MouseEvent} event
2026-02-08 22:44:42 +01:00
*/
function toggleCardSelection(card, event) {
if (batchToolbar) {
batchToolbar.handleToggleItem(card, event);
} else {
card.classList.toggle('selected');
}
2026-02-08 22:44:42 +01:00
}
/**
* Show the context menu anchored next to a trigger element (the 3-dot button).
2026-05-07 23:40:02 +02:00
* @param {HTMLElement} triggerElement
* @param {string} menuId
2026-02-08 22:44:42 +01:00
*/
function showContextMenuAtElement(triggerElement, menuId) {
// Hide any open menus first
2026-04-07 22:50:42 +02:00
document.querySelectorAll('.context-menu').forEach((m) => {
2026-04-24 23:37:14 +02:00
m.classList.add('hidden');
2026-04-07 22:50:42 +02:00
});
2026-02-08 22:44:42 +01:00
const menu = document.getElementById(menuId);
if (!menu) return;
const rect = triggerElement.getBoundingClientRect();
const menuWidth = 200; // approximate
// Position below the trigger, aligned to the right edge
let left = rect.right - menuWidth + window.scrollX;
let top = rect.bottom + 4 + window.scrollY;
// Keep inside viewport
if (left < 8) left = 8;
if (top + 300 > window.innerHeight + window.scrollY) {
top = rect.top - 4 + window.scrollY; // flip above if no room
}
2026-05-11 22:26:53 +02:00
contextMenus.sync();
2026-02-08 22:44:42 +01:00
menu.style.left = `${left}px`;
menu.style.top = `${top}px`;
2026-04-24 23:37:14 +02:00
menu.classList.remove('hidden');
2026-02-08 22:44:42 +01:00
}
/**
* Rubber band (lasso) selection — click + drag on empty grid area
* to draw a rectangle and select all cards it touches.
*/
function initRubberBandSelection() {
// Create the visual rectangle element once
let selRect = document.getElementById('selection-rect');
if (!selRect) {
selRect = document.createElement('div');
selRect.id = 'selection-rect';
selRect.className = 'selection-rect';
document.body.appendChild(selRect);
}
let active = false;
2026-04-07 22:48:59 +02:00
let startX = 0,
startY = 0;
2026-02-08 22:44:42 +01:00
// We listen on the whole files-container (covers grid + empty space)
const container = document.querySelector('.files-container') || document.getElementById('files-list');
2026-02-08 22:44:42 +01:00
if (!container) return;
container.addEventListener('mousedown', (e) => {
2026-05-07 23:40:02 +02:00
if (!(e instanceof MouseEvent)) return;
2026-02-08 22:44:42 +01:00
// Only start if clicking empty area (not on a card, button, menu, input…)
if (e.button !== 0) return; // left click only
2026-05-07 23:40:02 +02:00
const target = /** @type {Element} */ (e.target);
2026-04-07 22:48:59 +02:00
if (
2026-05-07 23:40:02 +02:00
target.closest('.file-item') ||
target.closest('.context-menu') ||
target.closest('.upload-dropdown') ||
target.closest('button') ||
target.closest('input') ||
target.closest('.breadcrumb') ||
target.closest('.list-header')
2026-04-07 22:48:59 +02:00
)
return;
2026-02-08 22:44:42 +01:00
active = true;
startX = e.clientX;
startY = e.clientY;
selRect.style.left = `${startX}px`;
selRect.style.top = `${startY}px`;
selRect.style.width = '0px';
selRect.style.height = '0px';
selRect.style.display = 'none'; // show only after a small movement
e.preventDefault(); // prevent text selection
});
document.addEventListener('mousemove', (e) => {
if (!active) return;
const curX = e.clientX;
const curY = e.clientY;
const left = Math.min(startX, curX);
const top = Math.min(startY, curY);
const width = Math.abs(curX - startX);
const height = Math.abs(curY - startY);
// Only show the rect after a small threshold to avoid flicker on click
if (width > 5 || height > 5) {
selRect.style.display = 'block';
}
selRect.style.left = `${left}px`;
selRect.style.top = `${top}px`;
selRect.style.width = `${width}px`;
selRect.style.height = `${height}px`;
// Highlight cards that intersect with the rectangle
const rectBounds = { left, top, right: left + width, bottom: top + height };
2026-04-07 22:48:59 +02:00
document.querySelectorAll('#files-list .file-item').forEach((card) => {
2026-02-08 22:44:42 +01:00
const cardRect = card.getBoundingClientRect();
const intersects =
2026-04-07 22:48:59 +02:00
cardRect.left < rectBounds.right && cardRect.right > rectBounds.left && cardRect.top < rectBounds.bottom && cardRect.bottom > rectBounds.top;
2026-02-08 22:44:42 +01:00
if (intersects) {
card.classList.add('selected');
2026-03-25 18:49:38 +01:00
// Sync with batchToolbar module
if (batchToolbar) {
const info = batchToolbar._extractInfo(/** @type {HTMLDivElement} */ (card));
if (info) batchToolbar.select(info.id, info.name, info.type, info.parentId);
}
2026-02-08 22:44:42 +01:00
} else {
card.classList.remove('selected');
// Deselect from batchToolbar module
if (batchToolbar) {
const info = batchToolbar._extractInfo(/** @type {HTMLDivElement} */ (card));
if (info) batchToolbar.deselect(info.id);
}
2026-02-08 22:44:42 +01:00
}
});
});
document.addEventListener('mouseup', () => {
if (!active) return;
active = false;
const hadSelection = selRect.style.display === 'block';
2026-02-08 22:44:42 +01:00
selRect.style.display = 'none';
// Update the batch bar after rubber band selection completes
if (batchToolbar) batchToolbar._syncUI();
// Suppress the click event that follows mouseup so the global
// deselect handler doesn't immediately clear the selection.
if (hadSelection) {
2026-05-07 23:40:02 +02:00
requestAnimationFrame(() => {});
}
2026-02-08 22:44:42 +01:00
});
}
// Initialize rubber band once DOM is ready
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', initRubberBandSelection);
} else {
initRubberBandSelection();
}
/**
* Show a modern confirm dialog (replaces native confirm())
* @param {Object} options
* @param {string} options.title - Dialog title
* @param {string} options.message - Dialog message/body
* @param {string} [options.confirmText='Confirmar'] - Text for confirm button
* @param {string} [options.cancelText='Cancelar'] - Text for cancel button
* @param {boolean} [options.danger=false] - Use danger styling (red)
* @returns {Promise<boolean>} true if confirmed, false if cancelled
*/
2026-04-30 02:02:27 +02:00
function showConfirmDialog({ title, message, confirmText, cancelText, danger = true }) {
const ct = confirmText || i18n.t('actions.delete');
const cc = cancelText || i18n.t('actions.cancel');
const t = title || i18n.t('dialogs.confirm_title');
2026-02-08 22:44:42 +01:00
return new Promise((resolve) => {
// Remove any previous confirm dialog
const prev = document.getElementById('confirm-dialog-overlay');
if (prev) prev.remove();
const overlay = document.createElement('div');
overlay.id = 'confirm-dialog-overlay';
overlay.className = 'confirm-dialog';
overlay.innerHTML = `
<div class="confirm-dialog-content">
<div class="confirm-dialog-icon">
<i class="fas ${danger ? 'fa-exclamation-triangle' : 'fa-question-circle'}"></i>
</div>
<div class="confirm-dialog-title">${t}</div>
<div class="confirm-dialog-message">${message || ''}</div>
<div class="confirm-dialog-buttons">
<button class="btn btn-secondary confirm-dialog-cancel">${cc}</button>
<button class="btn ${danger ? 'btn-danger' : 'btn-primary'} confirm-dialog-ok">${ct}</button>
</div>
</div>
`;
document.body.appendChild(overlay);
// Force layout then show
2026-04-07 22:48:59 +02:00
requestAnimationFrame(() => {
overlay.classList.add('active');
});
2026-02-08 22:44:42 +01:00
2026-05-07 23:40:02 +02:00
/** @param {boolean} result */
2026-02-08 22:44:42 +01:00
const cleanup = (result) => {
overlay.classList.remove('active');
setTimeout(() => overlay.remove(), 200);
resolve(result);
};
2026-04-30 02:02:27 +02:00
overlay.querySelector('.confirm-dialog-cancel')?.addEventListener('click', () => cleanup(false));
overlay.querySelector('.confirm-dialog-ok')?.addEventListener('click', () => cleanup(true));
2026-04-07 22:48:59 +02:00
overlay.addEventListener('click', (e) => {
if (e.target === overlay) cleanup(false);
});
2026-02-08 22:44:42 +01:00
});
}
export { initRubberBandSelection, showConfirmDialog, showContextMenuAtElement, toggleCardSelection, ui };