-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathSettingsView.swift
237 lines (208 loc) · 8.37 KB
/
SettingsView.swift
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
//
// SettingsView.swift
// TidepoolServiceKitUI
//
// Created by Pete Schwamb on 1/27/23.
// Copyright © 2023 LoopKit Authors. All rights reserved.
//
import SwiftUI
import TidepoolKit
import TidepoolServiceKit
public struct SettingsView: View {
@Environment(\.allowDebugFeatures) var allowDebugFeatures
@State private var isEnvironmentActionSheetPresented = false
@State private var showingDeletionConfirmation = false
@State private var error: Error?
@State private var isLoggingIn = false
@State private var selectedEnvironment: TEnvironment
@State private var environments: [TEnvironment] = [TEnvironment.productionEnvironment]
@State private var environmentFetchError: Error?
@ObservedObject private var service: TidepoolService
private let login: ((TEnvironment) async throws -> Void)?
private let dismiss: (() -> Void)?
private let onboarding: Bool
var isLoggedIn: Bool {
service.session != nil
}
var canDeleteService: Bool {
guard !allowDebugFeatures else { return true }
return !service.isDependency
}
public init(service: TidepoolService, login: ((TEnvironment) async throws -> Void)?, dismiss: (() -> Void)?, onboarding: Bool)
{
let tapi = service.tapi
self.service = service
let defaultEnvironment = tapi.defaultEnvironment
self._selectedEnvironment = State(initialValue: service.session?.environment ?? defaultEnvironment ?? TEnvironment.productionEnvironment)
self.login = login
self.dismiss = dismiss
self.onboarding = onboarding
}
public var body: some View {
ZStack {
Color(.secondarySystemBackground)
.edgesIgnoringSafeArea(.all)
GeometryReader { geometry in
ScrollView {
VStack(spacing: 20) {
HStack() {
Spacer()
closeButton
.padding()
}
Spacer()
logo
.padding(.horizontal, 30)
.padding(.bottom)
if selectedEnvironment != TEnvironment.productionEnvironment {
VStack {
Text(LocalizedString("Environment", comment: "Label title for displaying selected Tidepool server environment."))
.bold()
Text(selectedEnvironment.description)
if isLoggedIn {
Button(LocalizedString("Revoke token", comment: "Button title to revoke oauth tokens"), action: {
Task {
do {
try await service.tapi.revokeTokens()
} catch {
self.error = error
}
}
})
}
}
}
if let username = service.session?.username {
VStack {
Text(LocalizedString("Logged in as", comment: "LoginViewModel description text when logged in"))
.bold()
Text(username)
}
} else {
Text(LocalizedString("You are not logged in.", comment: "LoginViewModel description text when not logged in"))
.padding()
}
if let error {
VStack(alignment: .leading) {
Text(error.localizedDescription)
.font(.callout)
.foregroundColor(.red)
}
.padding()
}
Spacer()
if isLoggedIn && !onboarding && canDeleteService {
deleteServiceButton
} else if isLoggedIn && onboarding {
continueButton
} else if !isLoggedIn {
loginButton
}
}
.padding()
.frame(minHeight: geometry.size.height)
}
}
}
.alert(LocalizedString("Are you sure you want to delete this service?", comment: "Confirmation message for deleting a service"), isPresented: $showingDeletionConfirmation)
{
Button(LocalizedString("Delete Service", comment: "Button title to delete a service"), role: .destructive) {
service.deleteService()
dismiss?()
}
}
.task {
do {
environments = try await TEnvironment.fetchEnvironments()
} catch {
}
}
}
private var logo: some View {
Image(frameworkImage: "Tidepool Logo", decorative: true)
.resizable()
.aspectRatio(contentMode: .fit)
.frame(maxWidth: 150)
.onLongPressGesture(minimumDuration: 2) {
if !isLoggedIn {
UINotificationFeedbackGenerator().notificationOccurred(.warning)
isEnvironmentActionSheetPresented = true
}
}
.actionSheet(isPresented: $isEnvironmentActionSheetPresented) { environmentActionSheet }
}
private var environmentActionSheet: ActionSheet {
var buttons: [ActionSheet.Button] = environments.map { environment in
.default(Text(environment.description)) {
error = nil
selectedEnvironment = environment
}
}
buttons.append(.cancel())
return ActionSheet(title: Text(LocalizedString("Environment", comment: "Tidepool login environment action sheet title")),
message: Text(selectedEnvironment.description), buttons: buttons)
}
private var loginButton: some View {
Button(action: {
loginButtonTapped()
}) {
if isLoggingIn {
ProgressView()
.progressViewStyle(CircularProgressViewStyle())
} else {
Text(LocalizedString("Login", comment: "Tidepool login button title"))
}
}
.buttonStyle(ActionButtonStyle())
.disabled(isLoggingIn)
}
private var deleteServiceButton: some View {
Button(action: {
showingDeletionConfirmation = true
}) {
Text(LocalizedString("Delete Service", comment: "Delete Tidepool service button title"))
}
.buttonStyle(ActionButtonStyle(.secondary))
.disabled(isLoggingIn)
}
private var continueButton: some View {
Button(action: {
dismiss?()
}) {
Text(LocalizedString("Continue", comment: "Delete Tidepool service button title"))
}
.buttonStyle(ActionButtonStyle(.primary))
.disabled(isLoggingIn)
}
private func loginButtonTapped() {
guard !isLoggingIn else {
return
}
error = nil
isLoggingIn = true
Task {
do {
try await login?(selectedEnvironment)
isLoggingIn = false
} catch {
self.error = error
isLoggingIn = false
}
}
}
private var closeButton: some View {
Button(action: {
dismiss?()
}) {
Text(closeButtonTitle)
.fontWeight(.regular)
}
}
private var closeButtonTitle: String { LocalizedString("Close", comment: "Close navigation button title of an onboarding section page view") }
}
struct SettingsView_Previews: PreviewProvider {
@MainActor
static var previews: some View {
SettingsView(service: TidepoolService(hostIdentifier: "Previews", hostVersion: "1.0"), login: nil, dismiss: nil, onboarding: false)
}
}