2021-04-01 08:39:15 +02:00
//
// M e P r o f i l e V i e w M o d e l . s w i f t
// M a s t o d o n
//
// C r e a t e d b y M a i n a s u K C i r n o o n 2 0 2 1 - 3 - 3 0 .
//
import os . log
import UIKit
import Combine
import CoreData
import CoreDataStack
import MastodonSDK
final class MeProfileViewModel : ProfileViewModel {
init ( context : AppContext ) {
super . init (
context : context ,
optionalMastodonUser : context . authenticationService . activeMastodonAuthentication . value ? . user
)
self . currentMastodonUser
. sink { [ weak self ] currentMastodonUser in
2021-04-07 08:24:28 +02:00
os_log ( " %{public}s[%{public}ld], %{public}s: current active mastodon user: %s " , ( ( #file as NSString ) . lastPathComponent ) , #line , #function , currentMastodonUser ? . username ? ? " <nil> " )
2021-04-01 08:39:15 +02:00
guard let self = self else { return }
self . mastodonUser . value = currentMastodonUser
}
. store ( in : & disposeBag )
}
}