metatext/ViewModels/Sources/ViewModels/PostingReadingPreferencesViewModel.swift
2020-09-01 00:33:49 -07:00

32 lines
943 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
import Combine
import ServiceLayer
public class PostingReadingPreferencesViewModel: ObservableObject {
@Published public var preferences: Identity.Preferences
@Published public var alertItem: AlertItem?
private let identityService: IdentityService
private var cancellables = Set<AnyCancellable>()
init(identityService: IdentityService) {
self.identityService = identityService
preferences = identityService.identity.preferences
identityService.$identity
.map(\.preferences)
.dropFirst()
.removeDuplicates()
.assign(to: &$preferences)
$preferences
.dropFirst()
.flatMap(identityService.updatePreferences)
.assignErrorsToAlertItem(to: \.alertItem, on: self)
.sink { _ in }
.store(in: &cancellables)
}
}