FluxorOrg/Fluxor

View on GitHub
Sources/Fluxor/Operators/ActionPublisher+WithIdentifier.swift

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
/*
 * Fluxor
 *  Copyright (c) Morten Bjerg Gregersen 2020
 *  MIT license, see LICENSE file for details
 */

#if canImport(Combine)
import Combine
#else
import OpenCombine
#endif

/// Operators for narrowing down `Action`s in Publisher streams.
public extension Publisher where Output == Action {
    /**
     Only lets `AnonymousAction`s with a certain identifier get through the stream.

         actions
             .withIdentifier("FetchTodosAction")
             .sink(receiveValue: { action in
                 print("This is an AnonymousAction with the id 'FetchTodosAction': \(action)")
             })

     - Parameter identifierToMatch: A identifier to match
     */
    func withIdentifier(_ identifierToMatch: String) -> AnyPublisher<Action, Self.Failure> {
        filter { ($0 as? IdentifiableAction)?.id == identifierToMatch }
            .eraseToAnyPublisher()
    }
}