-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
replace callbacks in Rendering with an action sink
- Loading branch information
1 parent
2fbfc5e
commit d3fb358
Showing
6 changed files
with
59 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,13 +17,11 @@ | |
import SwiftUI | ||
import WorkflowSwiftUI | ||
|
||
struct LoginScreen: SwiftUIScreen { | ||
struct LoginScreen: SwiftUIScreen, Equatable { | ||
var actionSink: ScreenActionSink<LoginWorkflow.Action> | ||
var title: String | ||
var email: String | ||
var onEmailChanged: (String) -> Void | ||
var password: String | ||
var onPasswordChanged: (String) -> Void | ||
var onLoginTapped: () -> Void | ||
|
||
static func makeView(model: ObservableValue<LoginScreen>) -> some View { | ||
VStack(spacing: 16) { | ||
|
@@ -33,7 +31,7 @@ struct LoginScreen: SwiftUIScreen { | |
"[email protected]", | ||
text: model.binding( | ||
get: \.email, | ||
set: \.onEmailChanged | ||
set: { screen in { screen.actionSink.send(.emailUpdated($0)) } } | ||
) | ||
) | ||
.autocapitalization(.none) | ||
|
@@ -44,12 +42,12 @@ struct LoginScreen: SwiftUIScreen { | |
"password", | ||
text: model.binding( | ||
get: \.password, | ||
set: \.onPasswordChanged | ||
set: { screen in { screen.actionSink.send(.passwordUpdated($0)) } } | ||
), | ||
onCommit: model.onLoginTapped | ||
onCommit: { model.value.actionSink.send(.login) } | ||
) | ||
|
||
Button("Login", action: model.onLoginTapped) | ||
Button("Login", action: { model.value.actionSink.send(.login) }) | ||
} | ||
.frame(maxWidth: 400) | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* Copyright 2023 Square Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import Workflow | ||
|
||
public struct ScreenActionSink<Value>: Equatable { | ||
private let sink: Sink<Value> | ||
|
||
// TODO: Only allow this to be initialized by `WorkflowNode.SubtreeManager.Context`? | ||
public init(_ sink: Sink<Value>) { | ||
self.sink = sink | ||
} | ||
|
||
public static func noop<T>() -> ScreenActionSink<T> { | ||
ScreenActionSink<T>(Sink { _ in }) | ||
} | ||
|
||
public func send(_ value: Value) { | ||
sink.send(value) | ||
} | ||
|
||
public static func == (lhs: ScreenActionSink<Value>, rhs: ScreenActionSink<Value>) -> Bool { | ||
true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters