Add animation

This commit is contained in:
Oliver Foggin
2023-12-14 19:09:13 +00:00
parent b7ac23cb54
commit a8b4c2f7f0

View File

@@ -1,16 +1,19 @@
import ComposableArchitecture
import SwiftUI
extension Reducer {
public func subscribe<TriggerAction, StreamElement>(
to stream: @escaping () async -> AsyncStream<StreamElement>,
on triggerAction: CaseKeyPath<Action, TriggerAction>,
with responseAction: CaseKeyPath<Action, StreamElement>
with responseAction: CaseKeyPath<Action, StreamElement>,
animation: Animation? = nil
) -> _SubscribeReducer<Self, TriggerAction, StreamElement, StreamElement> {
.init(
parent: self,
on: triggerAction,
to: stream,
with: responseAction,
animation: animation,
transform: { $0 }
)
}
@@ -19,6 +22,7 @@ extension Reducer {
to stream: @escaping () async -> AsyncStream<StreamElement>,
on triggerAction: CaseKeyPath<Action, TriggerAction>,
with responseAction: CaseKeyPath<Action, Value>,
animation: Animation? = nil,
transform: @escaping (StreamElement) -> Value
) -> _SubscribeReducer<Self, TriggerAction, StreamElement, Value> {
.init(
@@ -26,6 +30,7 @@ extension Reducer {
on: triggerAction,
to: stream,
with: responseAction,
animation: animation,
transform: transform
)
}
@@ -47,17 +52,22 @@ public struct _SubscribeReducer<Parent: Reducer, TriggerAction, StreamElement, V
@usableFromInline
let transform: (StreamElement) -> Value
@usableFromInline
let animation: Animation?
init(
parent: Parent,
on triggerAction: CaseKeyPath<Parent.Action, TriggerAction>,
to stream: @escaping () async -> AsyncStream<StreamElement>,
with responseAction: CaseKeyPath<Parent.Action, Value>,
animation: Animation?,
transform: @escaping (StreamElement) -> Value
) {
self.parent = parent
self.triggerAction = AnyCasePath(triggerAction)
self.stream = stream
self.responseAction = AnyCasePath(responseAction)
self.animation = animation
self.transform = transform
}
@@ -72,7 +82,7 @@ public struct _SubscribeReducer<Parent: Reducer, TriggerAction, StreamElement, V
effects,
.run { send in
for await value in await stream() {
await send(responseAction.embed(transform(value)))
await send(responseAction.embed(transform(value)), animation: animation)
}
}
)