omeka / Omeka

A flexible web publishing platform for the display of library, museum and scholarly collections, archives and exhibitions.
http://omeka.org
GNU General Public License v3.0
472 stars 193 forks source link

Testing: Add multiple files in one action #1018

Closed jimsafley closed 5 months ago

jimsafley commented 5 months ago

The multiple-file-input branch allows users to add multiple files in one action. There are two ways to do this:

Once added, the file inputs should contain the file size and a thumbnail (for browser-compatible images). Make sure all files are uploaded.

allanaaa commented 5 months ago

@katknow will take a look at this one.

katknow commented 5 months ago

For the most part this seems to be working! The one thing is that images are the only thumbnail that see to appear prior to pressing save (and this is the same across browsers):

image

However, all render perfectly fine after saving.

For dragging the files to "Browse", you just have to be careful because if I accidentally was over "Add Another File" too long it just opened all the files in my browser and took me away from the page.

kimisgold commented 5 months ago

That's all as expected. We don't create file derivatives on upload: those come after saving the form, so we can only provide previews for files the browser can render. Looks good then!