Description:
Currently, our application's dropzone functionality allows users to drag and drop individual files for upload. However, this becomes cumbersome when users need to import a large number of images, as they must select each file individually. To streamline the workflow and improve user experience, we need to enhance the dropzone to support the drag-and-drop import of entire folders.
Acceptance Criteria:
[x] Users can drag and drop a folder into the dropzone.
[x] The dropzone will recognize the folder and recursively extract the image files contained within it.
[x] All valid image files within the folder (and any subfolders) are queued for upload.
[x] Error handling is in place for non-image files or unsupported formats within the folder.
[x] If no valid images are found in the folder, an appropriate error message is displayed to the user.
Description: Currently, our application's dropzone functionality allows users to drag and drop individual files for upload. However, this becomes cumbersome when users need to import a large number of images, as they must select each file individually. To streamline the workflow and improve user experience, we need to enhance the dropzone to support the drag-and-drop import of entire folders.
Acceptance Criteria: