Search filters fixes

This commit is contained in:
Ilya Laktyushin
2020-09-27 23:35:05 +04:00
parent bf1489eef8
commit 8e22244eab
10 changed files with 142 additions and 18 deletions

View File

@@ -442,6 +442,13 @@ public final class ChatListNode: ListView {
private let viewProcessingQueue = Queue()
private var chatListView: ChatListNodeView?
var entriesCount: Int {
if let chatListView = self.chatListView {
return chatListView.filteredEntries.count
} else {
return 0
}
}
private var interaction: ChatListNodeInteraction?
private var dequeuedInitialTransitionOnLayout = false