|
|
|
@ -115,6 +115,7 @@ public class ConversationViewModel: OWSAudioPlayerDelegate {
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
.populatingCurrentUserBlindedKey()
|
|
|
|
|
|
|
|
|
|
/// This is all the data the screen needs to populate itself, please see the following link for tips to help optimise
|
|
|
|
|
/// performance https://github.com/groue/GRDB.swift#valueobservation-performance
|
|
|
|
@ -130,7 +131,7 @@ public class ConversationViewModel: OWSAudioPlayerDelegate {
|
|
|
|
|
|
|
|
|
|
private func setupObservableThreadData(for threadId: String) -> ValueObservation<ValueReducers.RemoveDuplicates<ValueReducers.Fetch<SessionThreadViewModel?>>> {
|
|
|
|
|
return ValueObservation
|
|
|
|
|
.trackingConstantRegion { db -> SessionThreadViewModel? in
|
|
|
|
|
.trackingConstantRegion { [weak self] db -> SessionThreadViewModel? in
|
|
|
|
|
let userPublicKey: String = getUserHexEncodedPublicKey(db)
|
|
|
|
|
let recentReactionEmoji: [String] = try Emoji.getRecent(db, withDefaultEmoji: true)
|
|
|
|
|
let threadViewModel: SessionThreadViewModel? = try SessionThreadViewModel
|
|
|
|
@ -139,6 +140,11 @@ public class ConversationViewModel: OWSAudioPlayerDelegate {
|
|
|
|
|
|
|
|
|
|
return threadViewModel
|
|
|
|
|
.map { $0.with(recentReactionEmoji: recentReactionEmoji) }
|
|
|
|
|
.map { viewModel -> SessionThreadViewModel in
|
|
|
|
|
viewModel.populatingCurrentUserBlindedKey(
|
|
|
|
|
currentUserBlindedPublicKeyForThisThread: self?.threadData.currentUserBlindedPublicKey
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.removeDuplicates()
|
|
|
|
|
}
|
|
|
|
|