[Enhancement]: Dialog for 'Sort into Folders' #50
Labels
No labels
Kind/Bug
Kind/Feature
Priority/High
Priority/Medium
Reviewed/Confirmed
Compat/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
ai-collab/bulk-image-organizer#50
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Affected area
Apply a 'Sort Into Folders' operation
Current behavior
sorting happens in the background then a dialog appears when complete
Desired improvement
When the 'confirm' button is pressed from the
Sort into Folders by Tagdialog:References
No response
Implemented on branch
0.1.43/issue-40-50-80-sort-into-folders(queued for PR tomain, not yet opened; version bumped to 0.1.44), alongside #40 and #80.New modal
SortProgressDialog(ui/sort_progress_dialog.py, same pattern as the existingSubdirTagBuildDialogused for Create from Sub-directories) shown right after confirming the sort, with a count/status label and a working Cancel button, locking the rest of the application. It's updated via the existingSortWorkerprogress signal and closed right before the pre-existing completion summary dialog is shown — matching the two-step flow requested in the issue.As part of this,
execute_sort_moves()now accepts anis_cancelledcallback checked once per move (previously cancellation only took effect between planning and execution — a Cancel button during the actual file-move loop would have done nothing), so the new Cancel button is actually responsive mid-operation. Covered bytest_sort_worker_cancel_mid_execution_stops_remaining_movesandtests/test_sort_progress_dialog.py.Closing as implemented.