forked from pointfreeco/swift-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path06-NavigationDestinations.swift
More file actions
119 lines (105 loc) · 2.8 KB
/
Copy path06-NavigationDestinations.swift
File metadata and controls
119 lines (105 loc) · 2.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
import SwiftUI
import SwiftUINavigation
@available(iOS 16, *)
struct NavigationDestinations: View {
@ObservedObject private var model = FeatureModel()
var body: some View {
List {
Section {
Stepper("Number: \(self.model.count)", value: self.$model.count)
HStack {
Button("Get number fact") {
self.model.numberFactButtonTapped()
}
if self.model.isLoading {
Spacer()
ProgressView()
}
}
} header: {
Text("Fact Finder")
}
Section {
ForEach(self.model.savedFacts) { fact in
Text(fact.description)
}
.onDelete { self.model.removeSavedFacts(atOffsets: $0) }
} header: {
Text("Saved Facts")
}
}
.navigationTitle("Destinations")
.navigationDestination(unwrapping: self.$model.fact) { $fact in
FactEditor(fact: $fact.description)
.disabled(self.model.isLoading)
.foregroundColor(self.model.isLoading ? .gray : nil)
.navigationBarBackButtonHidden(true)
.toolbar {
ToolbarItem(placement: .cancellationAction) {
Button("Cancel") {
self.model.cancelButtonTapped()
}
}
ToolbarItem(placement: .confirmationAction) {
Button("Save") {
self.model.saveButtonTapped(fact: fact)
}
}
}
}
}
}
private struct FactEditor: View {
@Binding var fact: String
var body: some View {
VStack {
if #available(iOS 14, *) {
TextEditor(text: self.$fact)
} else {
TextField("Untitled", text: self.$fact)
}
}
.padding()
.navigationBarTitle("Fact Editor")
}
}
@MainActor
private class FeatureModel: ObservableObject {
@Published var count = 0
@Published var fact: Fact?
@Published var isLoading = false
@Published var savedFacts: [Fact] = []
private var task: Task<Void, Error>?
deinit {
self.task?.cancel()
}
func setFactNavigation(isActive: Bool) {
if isActive {
self.isLoading = true
self.fact = Fact(description: "\(self.count) is still loading...", number: self.count)
self.task = Task {
let fact = await getNumberFact(self.count)
self.isLoading = false
try Task.checkCancellation()
self.fact = fact
}
} else {
self.task?.cancel()
self.task = nil
self.fact = nil
}
}
func numberFactButtonTapped() {
self.setFactNavigation(isActive: true)
}
func cancelButtonTapped() {
self.setFactNavigation(isActive: false)
}
func saveButtonTapped(fact: Fact) {
self.savedFacts.append(fact)
self.setFactNavigation(isActive: false)
}
func removeSavedFacts(atOffsets offsets: IndexSet) {
self.savedFacts.remove(atOffsets: offsets)
}
}