import { eventSource, this_chid, characters, getRequestHeaders, } from '../../../script.js'; import { selected_group } from '../../group-chats.js'; import { loadFileToDocument, delay } from '../../utils.js'; import { loadMovingUIState } from '../../power-user.js'; import { dragElement } from '../../RossAscends-mods.js'; import { registerSlashCommand } from '../../slash-commands.js'; const extensionName = 'gallery'; const extensionFolderPath = `scripts/extensions/${extensionName}/`; let firstTime = true; // Exposed defaults for future tweaking let thumbnailHeight = 150; let paginationVisiblePages = 10; let paginationMaxLinesPerPage = 2; let galleryMaxRows = 3; /** * Retrieves a list of gallery items based on a given URL. This function calls an API endpoint * to get the filenames and then constructs the item list. * * @param {string} url - The base URL to retrieve the list of images. * @returns {Promise} - Resolves with an array of gallery item objects, rejects on error. */ async function getGalleryItems(url) { const response = await fetch(`/listimgfiles/${url}`, { method: 'POST', headers: getRequestHeaders(), }); const data = await response.json(); const items = data.map((file) => ({ src: `user/images/${url}/${file}`, srct: `user/images/${url}/${file}`, title: '', // Optional title for each item })); return items; } /** * Initializes a gallery using the provided items and sets up the drag-and-drop functionality. * It uses the nanogallery2 library to display the items and also initializes * event listeners to handle drag-and-drop of files onto the gallery. * * @param {Array} items - An array of objects representing the items to display in the gallery. * @param {string} url - The URL to use when a file is dropped onto the gallery for uploading. * @returns {Promise} - Promise representing the completion of the gallery initialization. */ async function initGallery(items, url) { $('#dragGallery').nanogallery2({ 'items': items, thumbnailWidth: 'auto', thumbnailHeight: thumbnailHeight, paginationVisiblePages: paginationVisiblePages, paginationMaxLinesPerPage: paginationMaxLinesPerPage, galleryMaxRows: galleryMaxRows, galleryPaginationTopButtons: false, galleryNavigationOverlayButtons: true, galleryTheme: { navigationBar: { background: 'none', borderTop: '', borderBottom: '', borderRight: '', borderLeft: '' }, navigationBreadcrumb: { background: '#111', color: '#fff', colorHover: '#ccc', borderRadius: '4px' }, navigationFilter: { color: '#ddd', background: '#111', colorSelected: '#fff', backgroundSelected: '#111', borderRadius: '4px' }, navigationPagination: { background: '#111', color: '#fff', colorHover: '#ccc', borderRadius: '4px' }, thumbnail: { background: '#444', backgroundImage: 'linear-gradient(315deg, #111 0%, #445 90%)', borderColor: '#000', borderRadius: '0px', labelOpacity: 1, labelBackground: 'rgba(34, 34, 34, 0)', titleColor: '#fff', titleBgColor: 'transparent', titleShadow: '', descriptionColor: '#ccc', descriptionBgColor: 'transparent', descriptionShadow: '', stackBackground: '#aaa' }, thumbnailIcon: { padding: '5px', color: '#fff', shadow: '' }, pagination: { background: '#181818', backgroundSelected: '#666', color: '#fff', borderRadius: '2px', shapeBorder: '3px solid var(--SmartThemeQuoteColor)', shapeColor: '#444', shapeSelectedColor: '#aaa' }, }, galleryDisplayMode: 'pagination', fnThumbnailOpen: viewWithDragbox, }); eventSource.on('resizeUI', function (elmntName) { jQuery('#dragGallery').nanogallery2('resize'); }); const dropZone = $('#dragGallery'); //remove any existing handlers dropZone.off('dragover'); dropZone.off('dragleave'); dropZone.off('drop'); // Set dropzone height to be the same as the parent dropZone.css('height', dropZone.parent().css('height')); // Initialize dropzone handlers dropZone.on('dragover', function (e) { e.stopPropagation(); // Ensure this event doesn't propagate e.preventDefault(); $(this).addClass('dragging'); // Add a CSS class to change appearance during drag-over }); dropZone.on('dragleave', function (e) { e.stopPropagation(); // Ensure this event doesn't propagate $(this).removeClass('dragging'); }); dropZone.on('drop', function (e) { e.stopPropagation(); // Ensure this event doesn't propagate e.preventDefault(); $(this).removeClass('dragging'); let file = e.originalEvent.dataTransfer.files[0]; uploadFile(file, url); // Added url parameter to know where to upload }); //let images populate first await delay(100); //unset the height (which must be getting set by the gallery library at some point) $('#dragGallery').css('height', 'unset'); //force a resize to make images display correctly jQuery('#dragGallery').nanogallery2('resize'); } /** * Displays a character gallery using the nanogallery2 library. * * This function takes care of: * - Loading necessary resources for the gallery on the first invocation. * - Preparing gallery items based on the character or group selection. * - Handling the drag-and-drop functionality for image upload. * - Displaying the gallery in a popup. * - Cleaning up resources when the gallery popup is closed. * * @returns {Promise} - Promise representing the completion of the gallery display process. */ async function showCharGallery() { // Load necessary files if it's the first time calling the function if (firstTime) { await loadFileToDocument( `${extensionFolderPath}nanogallery2.woff.min.css`, 'css', ); await loadFileToDocument( `${extensionFolderPath}jquery.nanogallery2.min.js`, 'js', ); firstTime = false; toastr.info('Images can also be found in the folder `user/images`', 'Drag and drop images onto the gallery to upload them', { timeOut: 6000 }); } try { let url = selected_group || this_chid; if (!selected_group && this_chid) { const char = characters[this_chid]; url = char.avatar.replace('.png', ''); } const items = await getGalleryItems(url); // if there already is a gallery, destroy it and place this one in its place if ($('#dragGallery').length) { $('#dragGallery').nanogallery2('destroy'); initGallery(items, url); } else { makeMovable(); setTimeout(async () => { await initGallery(items, url); }, 100); } } catch (err) { console.trace(); console.error(err); } } /** * Uploads a given file to a specified URL. * Once the file is uploaded, it provides a success message using toastr, * destroys the existing gallery, fetches the latest items, and reinitializes the gallery. * * @param {File} file - The file object to be uploaded. * @param {string} url - The URL indicating where the file should be uploaded. * @returns {Promise} - Promise representing the completion of the file upload and gallery refresh. */ async function uploadFile(file, url) { // Convert the file to a base64 string const reader = new FileReader(); reader.onloadend = async function () { const base64Data = reader.result; // Create the payload const payload = { image: base64Data, }; // Add the ch_name from the provided URL (assuming it's the character name) payload.ch_name = url; try { const headers = await getRequestHeaders(); // Merge headers with content-type for JSON Object.assign(headers, { 'Content-Type': 'application/json', }); const response = await fetch('/uploadimage', { method: 'POST', headers: headers, body: JSON.stringify(payload), }); if (!response.ok) { throw new Error(`HTTP error! Status: ${response.status}`); } const result = await response.json(); toastr.success('File uploaded successfully. Saved at: ' + result.path); // Refresh the gallery $('#dragGallery').nanogallery2('destroy'); // Destroy old gallery const newItems = await getGalleryItems(url); // Fetch the latest items initGallery(newItems, url); // Reinitialize the gallery with new items and pass 'url' } catch (error) { console.error('There was an issue uploading the file:', error); // Replacing alert with toastr error notification toastr.error('Failed to upload the file.'); } }; reader.readAsDataURL(file); } $(document).ready(function () { // Register an event listener eventSource.on('charManagementDropdown', (selectedOptionId) => { if (selectedOptionId === 'show_char_gallery') { showCharGallery(); } }); // Add an option to the dropdown $('#char-management-dropdown').append( $('