You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
It's not possible to tell what's inside of a zip file without downloading the whole thing and opening it. This can take a lot of time depending on the size of the zip.
Describe the solution you'd like
We should have a way to preview the zip folder contents in the media manager interface
For frontend: could be part of the details sidebar, with a little scrollable area, kind of like google drive does it
For backend: we should add a new api route that reads the file with ZipArchive and recursively gets all the contents with getNameIndex()
Describe alternatives you've considered
Downloading it
Extracting it and displaying all files in a folder
Additional context
Should be tackled after we nail the core functionality and do the first release.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
It's not possible to tell what's inside of a zip file without downloading the whole thing and opening it. This can take a lot of time depending on the size of the zip.
Describe the solution you'd like
We should have a way to preview the zip folder contents in the media manager interface
For frontend: could be part of the details sidebar, with a little scrollable area, kind of like google drive does it
For backend: we should add a new api route that reads the file with
ZipArchive
and recursively gets all the contents withgetNameIndex()
Describe alternatives you've considered
Additional context
Should be tackled after we nail the core functionality and do the first release.
The text was updated successfully, but these errors were encountered: