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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
|
import SwiftUI
/// Settings → App Info. Shows app/build metadata and links out to docs, source,
/// privacy, support, and the App Store. The actionable rows are driven by a
/// single declarative `AppInfoRow` model so titles, icons, and destinations live
/// in one place; only the Share row is special-cased (a `ShareLink` view).
struct AppInfoView: View {
@Environment(\.openURL) private var openURL
@State private var cloudSyncService = CloudSyncService.shared
@State private var activeSheet: AppInfoSheet?
#if DEBUG
@State private var developerRecordName: String?
#endif
var body: some View {
Form {
Section("About") {
LabeledContent("Version", value: AppInfo.versionDisplay)
LabeledContent("Storage", value: cloudSyncService.isEnabled ? "Local-first + iCloud" : "Local-only")
LabeledContent("Backup Schema", value: "v\(DomainDigBackup.currentSchemaVersion)")
LabeledContent("Minimum iOS", value: AppInfo.minimumOS)
}
Section("Resources") {
ForEach(resourceRows) { row($0) }
}
Section("Support") {
ForEach(supportRows) { row($0) }
}
Section {
Button {
openURL(AppLinks.writeReview)
} label: {
Label("Rate DomainDig", systemImage: "star")
}
.accessibilityHint("Opens the App Store")
ShareLink(item: AppLinks.appStoreListing) {
Label("Share DomainDig", systemImage: "square.and.arrow.up")
}
.accessibilityHint("Opens the share sheet")
} header: {
Text("Support the App")
} footer: {
Text(AppLinks.copyright)
.frame(maxWidth: .infinity, alignment: .center)
}
#if DEBUG
Section {
HStack(alignment: .top, spacing: 8) {
Text(developerRecordName ?? "Fetching…")
.font(.system(.footnote, design: .monospaced))
.textSelection(.enabled)
Spacer(minLength: 8)
if let developerRecordName {
AppCopyButton(value: developerRecordName, label: "Copy iCloud record ID")
}
}
} header: {
Text("Developer")
} footer: {
Text("Your CloudKit user-record ID for this app, used to configure the owner allowlist. DEBUG builds only.")
}
.task {
developerRecordName = await OwnerAccess.currentUserRecordName() ?? "Unavailable (sign into iCloud)"
}
#endif
}
.navigationTitle("App Info")
.task {
await cloudSyncService.refreshAvailability()
}
.sheet(item: $activeSheet) { sheet in
NavigationStack {
switch sheet {
case .whatsNew:
WhatsNewView()
case .acknowledgements:
AcknowledgementsView()
case .reportIssue:
ReportIssueView()
}
}
}
}
private var resourceRows: [AppInfoRow] {
[
AppInfoRow(title: "What's New", systemImage: "sparkles", action: .sheet(.whatsNew)),
AppInfoRow(title: "Documentation & FAQ", systemImage: "book", action: .openURL(AppLinks.documentation)),
AppInfoRow(title: "Source Code", systemImage: "chevron.left.forwardslash.chevron.right", action: .openURL(AppLinks.sourceCode)),
AppInfoRow(title: "Privacy Policy", systemImage: "hand.raised", action: .openURL(AppLinks.privacyPolicy)),
AppInfoRow(title: "Acknowledgements", systemImage: "checkmark.seal", action: .sheet(.acknowledgements))
]
}
private var supportRows: [AppInfoRow] {
[
AppInfoRow(title: "Report an Issue", systemImage: "ladybug", action: .sheet(.reportIssue)),
AppInfoRow(
title: "Contact",
systemImage: "envelope",
action: .mail(address: AppLinks.supportEmail, subject: "DomainDig", body: "")
)
]
}
@ViewBuilder
private func row(_ item: AppInfoRow) -> some View {
switch item.action {
case .openURL(let url):
Link(destination: url) {
Label(item.title, systemImage: item.systemImage)
}
.accessibilityHint("Opens outside the app")
case .mail(let address, let subject, let body):
Button {
if let url = Self.mailURL(to: address, subject: subject, body: body) {
openURL(url)
}
} label: {
Label(item.title, systemImage: item.systemImage)
}
.accessibilityHint("Opens your mail app")
case .sheet(let sheet):
Button {
activeSheet = sheet
} label: {
Label(item.title, systemImage: item.systemImage)
}
}
}
static func mailURL(to address: String, subject: String, body: String) -> URL? {
var components = URLComponents()
components.scheme = "mailto"
components.path = address
var query: [URLQueryItem] = []
if !subject.isEmpty { query.append(URLQueryItem(name: "subject", value: subject)) }
if !body.isEmpty { query.append(URLQueryItem(name: "body", value: body)) }
components.queryItems = query.isEmpty ? nil : query
return components.url
}
}
private struct AppInfoRow: Identifiable {
enum Action {
case openURL(URL)
case mail(address: String, subject: String, body: String)
case sheet(AppInfoSheet)
}
let id = UUID()
let title: String
let systemImage: String
let action: Action
}
private enum AppInfoSheet: String, Identifiable {
case whatsNew
case acknowledgements
case reportIssue
var id: String { rawValue }
}
// MARK: - Sheets
private struct WhatsNewView: View {
@Environment(\.dismiss) private var dismiss
private let notes = ReleaseNotes.bundled()
var body: some View {
Form {
if let notes {
Section {
ForEach(Array(notes.highlights.enumerated()), id: \.offset) { _, highlight in
Label(highlight, systemImage: "sparkle")
.labelStyle(.titleAndIcon)
}
} header: {
Text("Version \(notes.version)")
}
} else {
Section {
Text("Release notes are unavailable.")
.foregroundStyle(Color(.appTextSecondary))
}
}
}
.navigationTitle("What's New")
.navigationBarTitleDisplayMode(.inline)
.toolbar {
ToolbarItem(placement: .confirmationAction) {
Button("Done") { dismiss() }
}
}
}
}
private struct AcknowledgementsView: View {
@Environment(\.dismiss) private var dismiss
var body: some View {
Form {
Section("Dependencies") {
Text("DomainDig has no third-party dependencies. It is built entirely on Apple's frameworks.")
}
Section("License") {
Text("DomainDig is released under the MIT License.")
Text(AppLinks.copyright)
.foregroundStyle(Color(.appTextSecondary))
}
}
.navigationTitle("Acknowledgements")
.navigationBarTitleDisplayMode(.inline)
.toolbar {
ToolbarItem(placement: .confirmationAction) {
Button("Done") { dismiss() }
}
}
}
}
private struct ReportIssueView: View {
@Environment(\.dismiss) private var dismiss
@Environment(\.openURL) private var openURL
private let diagnostics = AppInfo.diagnosticsReport
var body: some View {
Form {
Section {
Text("These details are included so issues can be reproduced. They are only added when you send a report — nothing is collected in the background.")
.foregroundStyle(Color(.appTextSecondary))
}
Section("Included Diagnostics") {
Text(diagnostics)
.font(.system(.footnote, design: .monospaced))
.textSelection(.enabled)
}
Section {
Button {
if let url = AppInfoView.mailURL(
to: AppLinks.supportEmail,
subject: "DomainDig Issue Report",
body: "\n\n---\n\(diagnostics)"
) {
openURL(url)
}
} label: {
Label("Email Report", systemImage: "envelope")
}
.accessibilityHint("Opens your mail app with the diagnostics prefilled")
Link(destination: AppLinks.sourceCode.appendingPathComponent("issues/new")) {
Label("Open on GitHub", systemImage: "chevron.left.forwardslash.chevron.right")
}
.accessibilityHint("Opens outside the app")
}
}
.navigationTitle("Report an Issue")
.navigationBarTitleDisplayMode(.inline)
.toolbar {
ToolbarItem(placement: .cancellationAction) {
Button("Done") { dismiss() }
}
}
}
}
|