mirror of
https://github.com/pointfreeco/swift-composable-architecture.git
synced 2025-12-20 09:11:33 +01:00
* wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * Silence test warnings * wip * wip * wip * update a bunch of docs * wip * wip * fix * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * Kill integration tests for now * wip * wip * wip * wip * updating docs for @Reducer macro * replaced more Reducer protocols with @Reducer * Fixed some broken docc references * wip * Some @Reducer docs * more docs * convert some old styles to new style * wip * wip * wip * wip * wip * wip * wip * bump * update tutorials to use body * update tutorials to use DML on destination state enum * Add diagnostic * wip * updated a few more tests * wip * wip * Add another gotcha * wip * wip * wip * fixes * wip * wip * wip * wip * wip * fix * wip * remove for now * wip * wip * updated some docs * migration guides * more migration guide * fix ci * fix * soft deprecate all apis using AnyCasePath * wip * Fix * fix tests * swift-format 509 compatibility * wip * wip * Update Sources/ComposableArchitecture/Macros.swift Co-authored-by: Mateusz Bąk <bakmatthew@icloud.com> * wip * wip * update optional state case study * remove initializer * Don't use @State for BasicsView integration demo * fix tests * remove reduce diagnostics for now * diagnose error not warning * Update Sources/ComposableArchitecture/Macros.swift Co-authored-by: Jesse Tipton <jesse@jessetipton.com> * wip * move integration tests to cron * Revert "move integration tests to cron" This reverts commitf9bdf2f04b. * disable flakey tests on CI * wip * wip * Revert "Revert "move integration tests to cron"" This reverts commit66aafa7327. * fix * wip * fix --------- Co-authored-by: Brandon Williams <mbrandonw@hey.com> Co-authored-by: Mateusz Bąk <bakmatthew@icloud.com> Co-authored-by: Brandon Williams <135203+mbrandonw@users.noreply.github.com> Co-authored-by: Jesse Tipton <jesse@jessetipton.com>
141 lines
3.8 KiB
Swift
141 lines
3.8 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.
|
|
"""
|
|
|
|
// MARK: - Feature domain
|
|
|
|
@Reducer
|
|
struct BindingBasics {
|
|
struct State: Equatable {
|
|
var sliderValue = 5.0
|
|
var stepCount = 10
|
|
var text = ""
|
|
var toggleIsOn = false
|
|
}
|
|
|
|
enum Action {
|
|
case sliderValueChanged(Double)
|
|
case stepCountChanged(Int)
|
|
case textChanged(String)
|
|
case toggleChanged(isOn: Bool)
|
|
}
|
|
|
|
var body: some Reducer<State, Action> {
|
|
Reduce { 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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// MARK: - Feature view
|
|
|
|
struct BindingBasicsView: View {
|
|
@State var store = Store(initialState: BindingBasics.State()) {
|
|
BindingBasics()
|
|
}
|
|
|
|
var body: some View {
|
|
WithViewStore(self.store, observe: { $0 }) { viewStore in
|
|
Form {
|
|
Section {
|
|
AboutView(readMe: readMe)
|
|
}
|
|
|
|
HStack {
|
|
TextField(
|
|
"Type here",
|
|
text: viewStore.binding(get: \.text, send: { .textChanged($0) })
|
|
)
|
|
.disableAutocorrection(true)
|
|
.foregroundStyle(viewStore.toggleIsOn ? Color.secondary : .primary)
|
|
Text(alternate(viewStore.text))
|
|
}
|
|
.disabled(viewStore.toggleIsOn)
|
|
|
|
Toggle(
|
|
"Disable other controls",
|
|
isOn: viewStore.binding(get: \.toggleIsOn, send: { .toggleChanged(isOn: $0) })
|
|
.resignFirstResponder()
|
|
)
|
|
|
|
Stepper(
|
|
"Max slider value: \(viewStore.stepCount)",
|
|
value: viewStore.binding(get: \.stepCount, send: { .stepCountChanged($0) }),
|
|
in: 0...100
|
|
)
|
|
.disabled(viewStore.toggleIsOn)
|
|
|
|
HStack {
|
|
Text("Slider value: \(Int(viewStore.sliderValue))")
|
|
Slider(
|
|
value: viewStore.binding(get: \.sliderValue, send: { .sliderValueChanged($0) }),
|
|
in: 0...Double(viewStore.stepCount)
|
|
)
|
|
.tint(.accentColor)
|
|
}
|
|
.disabled(viewStore.toggleIsOn)
|
|
}
|
|
}
|
|
.monospacedDigit()
|
|
.navigationTitle("Bindings basics")
|
|
}
|
|
}
|
|
|
|
private func alternate(_ string: String) -> String {
|
|
string
|
|
.enumerated()
|
|
.map { idx, char in
|
|
idx.isMultiple(of: 2)
|
|
? char.uppercased()
|
|
: char.lowercased()
|
|
}
|
|
.joined()
|
|
}
|
|
|
|
// MARK: - SwiftUI previews
|
|
|
|
struct BindingBasicsView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
NavigationView {
|
|
BindingBasicsView(
|
|
store: Store(initialState: BindingBasics.State()) {
|
|
BindingBasics()
|
|
}
|
|
)
|
|
}
|
|
}
|
|
}
|