37 lines
995 B
Swift
37 lines
995 B
Swift
//
|
|
// MeProfileViewModel.swift
|
|
// Mastodon
|
|
//
|
|
// Created by MainasuK Cirno on 2021-3-30.
|
|
//
|
|
|
|
import os.log
|
|
import UIKit
|
|
import Combine
|
|
import CoreData
|
|
import CoreDataStack
|
|
import MastodonCore
|
|
import MastodonSDK
|
|
|
|
final class MeProfileViewModel: ProfileViewModel {
|
|
|
|
init(context: AppContext, authContext: AuthContext) {
|
|
let user = authContext.mastodonAuthenticationBox.authenticationRecord.object(in: context.managedObjectContext)?.user
|
|
super.init(
|
|
context: context,
|
|
authContext: authContext,
|
|
optionalMastodonUser: user
|
|
)
|
|
|
|
$me
|
|
.sink { [weak self] me in
|
|
os_log("%{public}s[%{public}ld], %{public}s: current active mastodon user: %s", ((#file as NSString).lastPathComponent), #line, #function, me?.username ?? "<nil>")
|
|
|
|
guard let self = self else { return }
|
|
self.user = me
|
|
}
|
|
.store(in: &disposeBag)
|
|
}
|
|
|
|
}
|