metatext-app-ios-iphone-ipad/ViewModels/Sources/ViewModels/Extensions/Publisher+Extensions.swift

20 lines
550 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import Combine
import Foundation
extension Publisher {
func assignErrorsToAlertItem<Root: AnyObject>(
to keyPath: ReferenceWritableKeyPath<Root, AlertItem?>,
on object: Root) -> AnyPublisher<Output, Never> {
self.catch { [weak object] error -> Empty<Output, Never> in
DispatchQueue.main.async {
object?[keyPath: keyPath] = AlertItem(error: error)
}
return Empty()
}
.eraseToAnyPublisher()
}
}