Skip to content
Snippets Groups Projects
Commit b20b5af8 authored by Kateryna Kostiuk's avatar Kateryna Kostiuk
Browse files

conversations: load profiles on background thread

Change-Id: I9cd1054a1498bc49afdc4b59e5be84987ec571b8
parent 4b098fba
No related branches found
No related tags found
No related merge requests found
......@@ -187,17 +187,10 @@ class ConversationViewModel: Stateable, ViewModel {
.disposed(by: self.disposeBag)
} else {
let filterParicipants = conversation.value.getParticipants()
if let contact = self.contactsService.contact(withHash: filterParicipants.first?.jamiId ?? "") {
if let profile = self.contactsService.getProfile(uri: "ring:" + (filterParicipants.first?.jamiId ?? ""), accountId: self.conversation.value.accountId),
let alias = profile.alias, let photo = profile.photo {
if !alias.isEmpty {
self.displayName.accept(alias)
}
if !photo.isEmpty {
let data = NSData(base64Encoded: photo, options: NSData.Base64DecodingOptions.ignoreUnknownCharacters) as Data? // {
self.profileImageData.accept(data)
}
}
if let participantId = filterParicipants.first?.jamiId,
let contact = self.contactsService.contact(withHash: participantId) {
self.subscribeNonSwarmProfiles(uri: "ring:" + participantId,
accountId: self.conversation.value.accountId)
if let contactUserName = contact.userName {
self.userName.accept(contactUserName)
} else if self.userName.value.isEmpty {
......@@ -232,6 +225,25 @@ class ConversationViewModel: Stateable, ViewModel {
.disposed(by: self.disposeBag)
}
private func subscribeNonSwarmProfiles(uri: String, accountId: String) {
self.profileService
.getProfile(uri: uri, createIfNotexists: false, accountId: accountId)
.subscribe(on: ConcurrentDispatchQueueScheduler(qos: .background))
.subscribe { profile in
if let alias = profile.alias, let photo = profile.photo {
if !alias.isEmpty {
self.displayName.accept(alias)
}
if !photo.isEmpty {
let data = NSData(base64Encoded: photo, options: NSData.Base64DecodingOptions.ignoreUnknownCharacters) as Data? // {
self.profileImageData.accept(data)
}
}
} onError: { _ in
}
.disposed(by: self.disposeBag)
}
private func subscribeLastMessagesUpdate() {
conversation.value.newMessages
.subscribe { [weak self] _ in
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment