@ -29,7 +29,6 @@ final class ConversationVC: BaseVC, SessionUtilRespondingViewController, Convers
var focusedInteractionInfo : Interaction . TimestampInfo ?
var focusedInteractionInfo : Interaction . TimestampInfo ?
var focusBehaviour : ConversationViewModel . FocusBehaviour = . none
var focusBehaviour : ConversationViewModel . FocusBehaviour = . none
var shouldHighlightNextScrollToInteraction : Bool = false
// S e a r c h
// S e a r c h
var isShowingSearchUI = false
var isShowingSearchUI = false
@ -1058,7 +1057,7 @@ final class ConversationVC: BaseVC, SessionUtilRespondingViewController, Convers
self ? . searchController . resultsBar . stopLoading ( )
self ? . searchController . resultsBar . stopLoading ( )
self ? . scrollToInteractionIfNeeded (
self ? . scrollToInteractionIfNeeded (
with : focusedInteractionInfo ,
with : focusedInteractionInfo ,
focusBehaviour : ( self ? . shouldHighlightNextScrollToInteraction = = true ? . highlight : . none ) ,
focusBehaviour : ( self ? . focusBehaviour ? ? . none ) ,
isAnimated : true
isAnimated : true
)
)
@ -1135,7 +1134,7 @@ final class ConversationVC: BaseVC, SessionUtilRespondingViewController, Convers
self ? . searchController . resultsBar . stopLoading ( )
self ? . searchController . resultsBar . stopLoading ( )
self ? . scrollToInteractionIfNeeded (
self ? . scrollToInteractionIfNeeded (
with : focusedInteractionInfo ,
with : focusedInteractionInfo ,
focusBehaviour : ( self ? . shouldHighlightNextScrollToInteraction = = true ? . highlight : . none ) ,
focusBehaviour : ( self ? . focusBehaviour ? ? . none ) ,
isAnimated : true
isAnimated : true
)
)
}
}
@ -1155,7 +1154,7 @@ final class ConversationVC: BaseVC, SessionUtilRespondingViewController, Convers
self ? . searchController . resultsBar . stopLoading ( )
self ? . searchController . resultsBar . stopLoading ( )
self ? . scrollToInteractionIfNeeded (
self ? . scrollToInteractionIfNeeded (
with : focusedInteractionInfo ,
with : focusedInteractionInfo ,
focusBehaviour : ( self ? . shouldHighlightNextScrollToInteraction = = true ? . highlight : . none ) ,
focusBehaviour : ( self ? . focusBehaviour ? ? . none ) ,
isAnimated : true
isAnimated : true
)
)
@ -1660,17 +1659,15 @@ final class ConversationVC: BaseVC, SessionUtilRespondingViewController, Convers
}
}
func scrollViewDidEndScrollingAnimation ( _ scrollView : UIScrollView ) {
func scrollViewDidEndScrollingAnimation ( _ scrollView : UIScrollView ) {
guard
guard let focusedInteractionInfo : Interaction . TimestampInfo = self . focusedInteractionInfo else {
let focusedInteractionInfo : Interaction . TimestampInfo = self . focusedInteractionInfo ,
self . shouldHighlightNextScrollToInteraction
else {
self . focusedInteractionInfo = nil
self . focusedInteractionInfo = nil
self . focusBehaviour = . none
self . focusBehaviour = . none
self . shouldHighlightNextScrollToInteraction = false
return
return
}
}
let behaviour : ConversationViewModel . FocusBehaviour = self . focusBehaviour
let behaviour : ConversationViewModel . FocusBehaviour = self . focusBehaviour
self . focusedInteractionInfo = nil
self . focusBehaviour = . none
DispatchQueue . main . async { [ weak self ] in
DispatchQueue . main . async { [ weak self ] in
self ? . markFullyVisibleAndOlderCellsAsRead ( interactionInfo : focusedInteractionInfo )
self ? . markFullyVisibleAndOlderCellsAsRead ( interactionInfo : focusedInteractionInfo )
@ -1832,8 +1829,8 @@ final class ConversationVC: BaseVC, SessionUtilRespondingViewController, Convers
isAnimated : Bool = true
isAnimated : Bool = true
) {
) {
// S t o r e t h e i n f o i n c a s e w e n e e d t o l o a d m o r e d a t a ( c a l l w i l l b e r e - t r i g g e r e d )
// S t o r e t h e i n f o i n c a s e w e n e e d t o l o a d m o r e d a t a ( c a l l w i l l b e r e - t r i g g e r e d )
self . focusBehaviour = focusBehaviour
self . focusedInteractionInfo = interactionInfo
self . focusedInteractionInfo = interactionInfo
self . shouldHighlightNextScrollToInteraction = ( focusBehaviour = = . highlight )
// E n s u r e t h e t a r g e t i n t e r a c t i o n h a s b e e n l o a d e d
// E n s u r e t h e t a r g e t i n t e r a c t i o n h a s b e e n l o a d e d
guard
guard
@ -1920,7 +1917,6 @@ final class ConversationVC: BaseVC, SessionUtilRespondingViewController, Convers
self ? . updateScrollToBottom ( force : true )
self ? . updateScrollToBottom ( force : true )
}
}
self . shouldHighlightNextScrollToInteraction = false
self . focusedInteractionInfo = nil
self . focusedInteractionInfo = nil
self . focusBehaviour = . none
self . focusBehaviour = . none
return
return
@ -1935,6 +1931,8 @@ final class ConversationVC: BaseVC, SessionUtilRespondingViewController, Convers
guard ! self . tableView . bounds . contains ( targetRect ) else {
guard ! self . tableView . bounds . contains ( targetRect ) else {
self . markFullyVisibleAndOlderCellsAsRead ( interactionInfo : interactionInfo )
self . markFullyVisibleAndOlderCellsAsRead ( interactionInfo : interactionInfo )
self . highlightCellIfNeeded ( interactionId : interactionInfo . id , behaviour : focusBehaviour )
self . highlightCellIfNeeded ( interactionId : interactionInfo . id , behaviour : focusBehaviour )
self . focusedInteractionInfo = nil
self . focusBehaviour = . none
return
return
}
}
@ -1999,7 +1997,6 @@ final class ConversationVC: BaseVC, SessionUtilRespondingViewController, Convers
}
}
func highlightCellIfNeeded ( interactionId : Int64 , behaviour : ConversationViewModel . FocusBehaviour ) {
func highlightCellIfNeeded ( interactionId : Int64 , behaviour : ConversationViewModel . FocusBehaviour ) {
self . shouldHighlightNextScrollToInteraction = false
self . focusedInteractionInfo = nil
self . focusedInteractionInfo = nil
self . focusBehaviour = . none
self . focusBehaviour = . none