Fix UI delay when sending a reply in chat.
The UI updates (including adding a new message to conversation) were being blocked for 1 second because of the animated dismissal of message quote panel attached to the input field. The fix is to block UI updates just for the duration of keyboard animations.
This commit is contained in:
parent
e6e09c83e7
commit
e6552c79ec
@ -1,5 +1,5 @@
|
||||
//
|
||||
// Copyright (c) 2021 Open Whisper Systems. All rights reserved.
|
||||
// Copyright (c) 2022 Open Whisper Systems. All rights reserved.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
@ -377,8 +377,7 @@ extension ConversationViewController: InputAccessoryViewPlaceholderDelegate {
|
||||
// loads from landing during the keyboard animation.
|
||||
// It isn't safe to block loads for long, so we cap
|
||||
// how long they will be blocked for.
|
||||
let keyboardAnimationBlockLoadInterval: TimeInterval = kSecondInterval * 1.0
|
||||
let animationCompletionDate = Date().addingTimeInterval(keyboardAnimationBlockLoadInterval)
|
||||
let animationCompletionDate = Date().addingTimeInterval(duration)
|
||||
let lastKeyboardAnimationDate = Date().addingTimeInterval(-1.0)
|
||||
if viewState.lastKeyboardAnimationDate == nil ||
|
||||
viewState.lastKeyboardAnimationDate?.isBefore(lastKeyboardAnimationDate) == true {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user