Fix TestFlight attachment tap handling - #152
Merged
Merged
Conversation
Contributor
Greptile SummaryThe PR restores native SwiftUI attachment controls and moves gesture arbitration into the presentation owner so attachment previews, reactions, reply navigation, and links do not activate simultaneously.
Confidence Score: 5/5The PR appears safe to merge. No blocking failure remains. Important Files Changed
Sequence DiagramsequenceDiagram
actor User
participant Bubble as MessageBubble
participant Timeline as Timeline Controller
participant View as MessagingView
participant Preview as Attachment Preview Store
User->>Bubble: Long hold message content
Bubble->>Timeline: onLongPress(message)
Timeline->>Timeline: Set reactionModeMessageID
Timeline->>View: Present reaction mode
View->>Preview: beginReactionMode()
opt Child link callback also arrives
Bubble->>Timeline: routeMessageLink(messageID, target)
Timeline->>Timeline: Defer and compare reaction message ID
Timeline--xView: Suppress link activation
end
User->>View: Dismiss reactions
View->>Preview: endReactionMode()
View->>Timeline: Clear reactionModeMessageID
Reviews (2): Last reviewed commit: "fix: route external links through reacti..." | Re-trigger Greptile |
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
ButtonbehaviorThis is an additive follow-up to #150 after the merged implementation worked in a development install but failed to activate image attachments in TestFlight.
Verification
Model B was intentionally excluded from this shipping-app fix.
Risk and rollback
The change is limited to attachment/reaction interaction ownership and related tests. It preserves native Quick Look, original-byte staging and cleanup, accessibility labels and identifiers, timeline behavior, and swipe-to-reply. Rollback is the four commits in this PR, though that would restore the TestFlight tap regression.