Add dedicated export progress page with cancel support - #44
Merged
Conversation
Clicking Export on the create-export page now navigates to a new progress page instead of showing progress inline. The page shows a progress bar and a cancel button; export state (start/end date, include-date-stamp, name, selected videos) is passed via a new ExportRequest. Cancelling stops the underlying Media3 Transformer and deletes the partial output file. On success the app automatically navigates to the exported video view page. TODO item completed: - on the create export page, once the user clicks to create the export, open a new page that shows progress and also a cancel button. when progress completes navigate automatically to the video view page Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01NUsgkhSfoS4dTzkASz63ZV
|
App apk at:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Implements the top item from
TODO.md:Transformerand deletes the partial output file, then returns to the create page.ExportRequestmodel.ExportDiaryCreateViewModelno longer performs the export itself — that responsibility moved to the newExportDiaryProgressViewModel, which owns the export/cancel/save-export flow.Test plan
./gradlew assembleDebugbuilds successfully./gradlew testpassesGenerated by Claude Code