mirror of
https://github.com/pointfreeco/swift-composable-architecture.git
synced 2025-12-20 09:11:33 +01:00
139 lines
4.0 KiB
Swift
139 lines
4.0 KiB
Swift
import ComposableArchitecture
|
|
import SwiftUI
|
|
|
|
private let readMe = """
|
|
This file demonstrates how to handle two-way bindings in the Composable Architecture.
|
|
|
|
Two-way bindings in SwiftUI are powerful, but also go against the grain of the "unidirectional \
|
|
data flow" of the Composable Architecture. This is because anything can mutate the value \
|
|
whenever it wants.
|
|
|
|
On the other hand, the Composable Architecture demands that mutations can only happen by sending \
|
|
actions to the store, and this means there is only ever one place to see how the state of our \
|
|
feature evolves, which is the reducer.
|
|
|
|
Any SwiftUI component that requires a Binding to do its job can be used in the Composable \
|
|
Architecture. You can derive a Binding from your ViewStore by using the `binding` method. This \
|
|
will allow you to specify what state renders the component, and what action to send when the \
|
|
component changes, which means you can keep using a unidirectional style for your feature.
|
|
"""
|
|
|
|
// The state for this screen holds a bunch of values that will drive
|
|
struct BindingBasicsState: Equatable {
|
|
var sliderValue = 5.0
|
|
var stepCount = 10
|
|
var text = ""
|
|
var toggleIsOn = false
|
|
}
|
|
|
|
enum BindingBasicsAction {
|
|
case sliderValueChanged(Double)
|
|
case stepCountChanged(Int)
|
|
case textChanged(String)
|
|
case toggleChanged(isOn: Bool)
|
|
}
|
|
|
|
struct BindingBasicsEnvironment {}
|
|
|
|
let bindingBasicsReducer = Reducer<
|
|
BindingBasicsState, BindingBasicsAction, BindingBasicsEnvironment
|
|
> {
|
|
state, action, _ in
|
|
switch action {
|
|
case let .sliderValueChanged(value):
|
|
state.sliderValue = value
|
|
return .none
|
|
|
|
case let .stepCountChanged(count):
|
|
state.sliderValue = .minimum(state.sliderValue, Double(count))
|
|
state.stepCount = count
|
|
return .none
|
|
|
|
case let .textChanged(text):
|
|
state.text = text
|
|
return .none
|
|
|
|
case let .toggleChanged(isOn):
|
|
state.toggleIsOn = isOn
|
|
return .none
|
|
}
|
|
}
|
|
|
|
struct BindingBasicsView: View {
|
|
let store: Store<BindingBasicsState, BindingBasicsAction>
|
|
|
|
var body: some View {
|
|
WithViewStore(self.store) { viewStore in
|
|
Form {
|
|
Section(header: Text(template: readMe, .caption)) {
|
|
HStack {
|
|
TextField(
|
|
"Type here",
|
|
text: viewStore.binding(get: \.text, send: BindingBasicsAction.textChanged)
|
|
)
|
|
.disableAutocorrection(true)
|
|
.foregroundColor(viewStore.toggleIsOn ? .gray : .primary)
|
|
Text(alternate(viewStore.text))
|
|
}
|
|
.disabled(viewStore.toggleIsOn)
|
|
|
|
Toggle(
|
|
isOn: viewStore.binding(get: \.toggleIsOn, send: BindingBasicsAction.toggleChanged)
|
|
) {
|
|
Text("Disable other controls")
|
|
}
|
|
|
|
Stepper(
|
|
value: viewStore.binding(
|
|
get: \.stepCount, send: BindingBasicsAction.stepCountChanged),
|
|
in: 0...100
|
|
) {
|
|
Text("Max slider value: \(viewStore.stepCount)")
|
|
.font(.body.monospacedDigit())
|
|
}
|
|
.disabled(viewStore.toggleIsOn)
|
|
|
|
HStack {
|
|
Text("Slider value: \(Int(viewStore.sliderValue))")
|
|
.font(.body.monospacedDigit())
|
|
Slider(
|
|
value: viewStore.binding(
|
|
get: \.sliderValue,
|
|
send: BindingBasicsAction.sliderValueChanged
|
|
),
|
|
in: 0...Double(viewStore.stepCount)
|
|
)
|
|
}
|
|
.disabled(viewStore.toggleIsOn)
|
|
}
|
|
}
|
|
}
|
|
.navigationBarTitle("Bindings basics")
|
|
}
|
|
}
|
|
|
|
private func alternate(_ string: String) -> String {
|
|
string
|
|
.enumerated()
|
|
.map { idx, char in
|
|
idx.isMultiple(of: 2)
|
|
? char.uppercased()
|
|
: char.lowercased()
|
|
}
|
|
.joined()
|
|
}
|
|
|
|
struct BindingBasicsView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
NavigationView {
|
|
BindingBasicsView(
|
|
store: Store(
|
|
initialState: BindingBasicsState(),
|
|
reducer: bindingBasicsReducer,
|
|
environment: BindingBasicsEnvironment()
|
|
)
|
|
)
|
|
}
|
|
}
|
|
}
|