Skip to content

Commit 9b47671

Browse files
author
Coleton Gorecke
committed
wrapped views in withPerceptionTracking
1 parent 7ad3838 commit 9b47671

4 files changed

+55
-50
lines changed

ComposableArch-Example/AddContactFeature.swift

+14-12
Original file line numberDiff line numberDiff line change
@@ -59,20 +59,22 @@ struct AddContactView: View {
5959
@Perception.Bindable var store: StoreOf<AddContactFeature>
6060

6161
var body: some View {
62-
VStack {
63-
Form {
64-
TextField("Name", text: $store.contact.name.sending(\.setName))
62+
WithPerceptionTracking {
63+
VStack {
64+
Form {
65+
TextField("Name", text: $store.contact.name.sending(\.setName))
66+
}
6567
}
66-
}
67-
.safeAreaInset(edge: .bottom) {
68-
Button("Save") {
69-
store.send(.saveButtonTapped)
68+
.safeAreaInset(edge: .bottom) {
69+
Button("Save") {
70+
store.send(.saveButtonTapped)
71+
}
7072
}
71-
}
72-
.toolbar {
73-
ToolbarItem {
74-
Button("Cancel") {
75-
store.send(.cancelButtonTapped)
73+
.toolbar {
74+
ToolbarItem {
75+
Button("Cancel") {
76+
store.send(.cancelButtonTapped)
77+
}
7678
}
7779
}
7880
}

ComposableArch-Example/ComposableArch_ExampleApp.swift

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import SwiftUI
1212
struct ComposableArch_ExampleApp: App {
1313
static let store = Store(initialState: AppFeature.State()) {
1414
AppFeature()
15-
._printChanges()
1615
}
1716

1817
var body: some Scene {

ComposableArch-Example/ContactDetailFeature.swift

+7-5
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,15 @@ struct ContactDetailView: View {
6868
@Perception.Bindable var store: StoreOf<ContactDetailFeature>
6969

7070
var body: some View {
71-
Form {
72-
Button("Delete") {
73-
store.send(.deleteButtonTapped)
71+
WithPerceptionTracking {
72+
Form {
73+
Button("Delete") {
74+
store.send(.deleteButtonTapped)
75+
}
7476
}
77+
.navigationBarTitle(Text(store.contact.name))
78+
.alert($store.scope(state: \.alert, action: \.alert))
7579
}
76-
.navigationBarTitle(Text(store.contact.name))
77-
.alert($store.scope(state: \.alert, action: \.alert))
7880
}
7981
}
8082

ComposableArch-Example/ContactsFeature.swift

+34-32
Original file line numberDiff line numberDiff line change
@@ -100,47 +100,49 @@ struct ContactsView: View {
100100
@Perception.Bindable var store: StoreOf<ContactsFeature>
101101

102102
var body: some View {
103-
NavigationStack(
104-
path: $store.scope(state: \.path, action: \.path)
105-
) {
106-
List {
107-
ForEach(store.contacts) { contact in
108-
NavigationLink(state: ContactDetailFeature.State(contact: contact)) {
109-
HStack {
110-
Text(contact.name)
111-
Spacer()
112-
Button {
113-
store.send(.deleteButtonTapped(id: contact.id))
114-
} label: {
115-
Image(systemName: "trash")
116-
.foregroundColor(.red)
103+
WithPerceptionTracking {
104+
NavigationStack(
105+
path: $store.scope(state: \.path, action: \.path)
106+
) {
107+
List {
108+
ForEach(store.contacts) { contact in
109+
NavigationLink(state: ContactDetailFeature.State(contact: contact)) {
110+
HStack {
111+
Text(contact.name)
112+
Spacer()
113+
Button {
114+
store.send(.deleteButtonTapped(id: contact.id))
115+
} label: {
116+
Image(systemName: "trash")
117+
.foregroundColor(.red)
118+
}
117119
}
118120
}
121+
.buttonStyle(.borderless)
119122
}
120-
.buttonStyle(.borderless)
121123
}
122-
}
123-
.navigationTitle("Contacts")
124-
.toolbar {
125-
ToolbarItem {
126-
Button {
127-
store.send(.addButtonTapped)
128-
} label: {
129-
Image(systemName: "plus")
124+
.navigationTitle("Contacts")
125+
.toolbar {
126+
ToolbarItem {
127+
Button {
128+
store.send(.addButtonTapped)
129+
} label: {
130+
Image(systemName: "plus")
131+
}
130132
}
131133
}
134+
} destination: { store in
135+
ContactDetailView(store: store)
132136
}
133-
} destination: { store in
134-
ContactDetailView(store: store)
135-
}
136-
.sheet(
137-
item: $store.scope(state: \.destination?.addContact, action: \.destination.addContact)
138-
) { addContactStore in
139-
NavigationStack {
140-
AddContactView(store: addContactStore)
137+
.sheet(
138+
item: $store.scope(state: \.destination?.addContact, action: \.destination.addContact)
139+
) { addContactStore in
140+
NavigationStack {
141+
AddContactView(store: addContactStore)
142+
}
141143
}
144+
.alert($store.scope(state: \.destination?.alert, action: \.destination.alert))
142145
}
143-
.alert($store.scope(state: \.destination?.alert, action: \.destination.alert))
144146
}
145147
}
146148

0 commit comments

Comments
 (0)