mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-22 08:10:59 +00:00
Renaming
This commit is contained in:
parent
649a146e8f
commit
c3ca23d736
2 changed files with 7 additions and 7 deletions
|
@ -5,7 +5,7 @@ import UIKit
|
||||||
|
|
||||||
final class AppDelegate: NSObject {
|
final class AppDelegate: NSObject {
|
||||||
@Published private var application: UIApplication?
|
@Published private var application: UIApplication?
|
||||||
private let remoteNotificationDeviceTokens = PassthroughSubject<Data, Error>()
|
private let deviceTokenSubject = PassthroughSubject<Data, Error>()
|
||||||
}
|
}
|
||||||
|
|
||||||
extension AppDelegate {
|
extension AppDelegate {
|
||||||
|
@ -14,7 +14,7 @@ extension AppDelegate {
|
||||||
.compactMap { $0 }
|
.compactMap { $0 }
|
||||||
.handleEvents(receiveOutput: { $0.registerForRemoteNotifications() })
|
.handleEvents(receiveOutput: { $0.registerForRemoteNotifications() })
|
||||||
.setFailureType(to: Error.self)
|
.setFailureType(to: Error.self)
|
||||||
.zip(remoteNotificationDeviceTokens)
|
.zip(deviceTokenSubject)
|
||||||
.first()
|
.first()
|
||||||
.map { $1 }
|
.map { $1 }
|
||||||
.eraseToAnyPublisher()
|
.eraseToAnyPublisher()
|
||||||
|
@ -32,11 +32,11 @@ extension AppDelegate: UIApplicationDelegate {
|
||||||
|
|
||||||
func application(_ application: UIApplication,
|
func application(_ application: UIApplication,
|
||||||
didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
|
didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
|
||||||
remoteNotificationDeviceTokens.send(deviceToken)
|
deviceTokenSubject.send(deviceToken)
|
||||||
}
|
}
|
||||||
|
|
||||||
func application(_ application: UIApplication,
|
func application(_ application: UIApplication,
|
||||||
didFailToRegisterForRemoteNotificationsWithError error: Error) {
|
didFailToRegisterForRemoteNotificationsWithError error: Error) {
|
||||||
remoteNotificationDeviceTokens.send(completion: .failure(error))
|
deviceTokenSubject.send(completion: .failure(error))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,14 +16,14 @@ public final class EditFilterViewModel: ObservableObject {
|
||||||
}
|
}
|
||||||
|
|
||||||
private let identification: Identification
|
private let identification: Identification
|
||||||
private let saveCompletedInput = PassthroughSubject<Void, Never>()
|
private let saveCompletedSubject = PassthroughSubject<Void, Never>()
|
||||||
private var cancellables = Set<AnyCancellable>()
|
private var cancellables = Set<AnyCancellable>()
|
||||||
|
|
||||||
public init(filter: Filter, identification: Identification) {
|
public init(filter: Filter, identification: Identification) {
|
||||||
self.filter = filter
|
self.filter = filter
|
||||||
self.identification = identification
|
self.identification = identification
|
||||||
date = filter.expiresAt ?? Date()
|
date = filter.expiresAt ?? Date()
|
||||||
saveCompleted = saveCompletedInput.eraseToAnyPublisher()
|
saveCompleted = saveCompletedSubject.eraseToAnyPublisher()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -51,7 +51,7 @@ public extension EditFilterViewModel {
|
||||||
self.saving = false
|
self.saving = false
|
||||||
|
|
||||||
if case .finished = $0 {
|
if case .finished = $0 {
|
||||||
self.saveCompletedInput.send(())
|
self.saveCompletedSubject.send()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.sink { _ in }
|
.sink { _ in }
|
||||||
|
|
Loading…
Reference in a new issue