mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-22 16:21:00 +00:00
28 lines
849 B
Swift
28 lines
849 B
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import Foundation
|
|
|
|
class SecondaryNavigationViewModel: ObservableObject {
|
|
@Published private(set) var identity: Identity
|
|
private let identityService: IdentityService
|
|
|
|
init(identityService: IdentityService) {
|
|
self.identityService = identityService
|
|
identity = identityService.identity
|
|
identityService.$identity.dropFirst().assign(to: &$identity)
|
|
}
|
|
}
|
|
|
|
extension SecondaryNavigationViewModel {
|
|
func identitiesViewModel() -> IdentitiesViewModel {
|
|
IdentitiesViewModel(identityService: identityService)
|
|
}
|
|
|
|
func listsViewModel() -> ListsViewModel {
|
|
ListsViewModel(identityService: identityService)
|
|
}
|
|
|
|
func preferencesViewModel() -> PreferencesViewModel {
|
|
PreferencesViewModel(identityService: identityService)
|
|
}
|
|
}
|