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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
|
import MessageUI
import os
import SwiftUI
import UIKit
private let inboxReplyLogger = Logger(subsystem: "net.cleberg.Hutch", category: "InboxReply")
struct ThreadDetailView: View {
let thread: InboxThreadSummary
let onViewed: () -> Void
var onMarkRead: (() -> Void)? = nil
var onMarkUnread: (() -> Void)? = nil
@Environment(AppState.self) private var appState
@State private var viewModel: ThreadViewModel?
@State private var replySuccessMessage: String?
@State private var loadedThreadID: String?
@State private var hasMarkedCurrentThreadViewed = false
@State private var suppressAutoMarkViewed = false
@State private var isUnread: Bool
init(
thread: InboxThreadSummary,
onViewed: @escaping () -> Void,
onMarkRead: (() -> Void)? = nil,
onMarkUnread: (() -> Void)? = nil
) {
self.thread = thread
self.onViewed = onViewed
self.onMarkRead = onMarkRead
self.onMarkUnread = onMarkUnread
self._isUnread = State(initialValue: thread.isUnread)
}
var body: some View {
Group {
if let viewModel {
content(viewModel)
} else {
SRHTLoadingStateView(message: "Loading thread…")
}
}
.navigationTitle("Thread")
.navigationBarTitleDisplayMode(.inline)
.task(id: thread.id) {
guard loadedThreadID != thread.id else { return }
let vm = ThreadViewModel(summary: thread, client: appState.client)
viewModel = vm
loadedThreadID = thread.id
hasMarkedCurrentThreadViewed = false
suppressAutoMarkViewed = false
isUnread = thread.isUnread
await vm.loadThread()
}
.onChange(of: viewModel?.thread?.id) { _, threadID in
guard threadID != nil, !hasMarkedCurrentThreadViewed, !suppressAutoMarkViewed else { return }
hasMarkedCurrentThreadViewed = true
isUnread = false
onViewed()
}
.sheet(item: Binding(
get: { viewModel?.composeDraft },
set: { _ in viewModel?.dismissReply() }
)) { draft in
MailComposeView(draft: draft) { result in
switch result {
case .failed(let message):
inboxReplyLogger.error("Inbox reply failed")
viewModel?.error = message
case .cancelled:
break
case .saved:
break
case .sent:
replySuccessMessage = "Reply handed off to Mail."
Task {
await viewModel?.loadThread()
}
}
}
}
.overlay(alignment: .top) {
if let replySuccessMessage {
Text(replySuccessMessage)
.font(.caption.weight(.medium))
.padding(.horizontal, 12)
.padding(.vertical, 8)
.background(.thinMaterial, in: Capsule())
.padding(.top, 8)
.transition(.move(edge: .top).combined(with: .opacity))
}
}
.animation(.easeInOut(duration: 0.2), value: replySuccessMessage)
.onChange(of: replySuccessMessage) { _, message in
guard message != nil else { return }
Task { @MainActor in
try? await Task.sleep(for: .seconds(2))
if self.replySuccessMessage == message {
self.replySuccessMessage = nil
}
}
}
}
@ViewBuilder
private func content(_ viewModel: ThreadViewModel) -> some View {
@Bindable var vm = viewModel
List {
if let thread = viewModel.thread {
Section {
VStack(alignment: .leading, spacing: 6) {
Text(thread.displaySubject)
.font(.headline)
Text(headerMetadata(thread))
.font(.caption)
.foregroundStyle(.secondary)
}
.padding(.vertical, 4)
}
if let partialWarning = viewModel.partialWarning {
Section {
Text(partialWarning)
.font(.caption)
.foregroundStyle(.secondary)
}
}
ForEach(thread.messages) { message in
InboxMessageRow(message: message)
}
}
}
.listStyle(.plain)
.toolbar {
ToolbarItem(placement: .topBarTrailing) {
HStack {
if onMarkRead != nil || onMarkUnread != nil {
Button(isUnread ? "Mark Read" : "Mark Unread") {
suppressAutoMarkViewed = !isUnread
if isUnread {
onMarkRead?()
isUnread = false
} else {
onMarkUnread?()
isUnread = true
}
}
}
Button("Reply") {
viewModel.prepareReply()
}
}
}
}
.overlay {
if viewModel.isLoading, viewModel.thread == nil {
SRHTLoadingStateView(message: "Loading thread…")
} else if let error = viewModel.error, viewModel.thread == nil {
SRHTErrorStateView(
title: "Failed to load thread",
message: error,
retryAction: { await viewModel.loadThread() }
)
}
}
.srhtErrorBanner(error: $vm.error)
.refreshable {
await viewModel.loadThread()
}
}
private func headerMetadata(_ thread: InboxThreadDetail) -> String {
var parts = [thread.listDisplayName]
if let messageCount = thread.messageCount, messageCount > 1 {
parts.append("\(messageCount) messages")
}
parts.append(thread.lastActivityAt.relativeDescription)
return parts.joined(separator: " • ")
}
}
private struct InboxMessageRow: View {
let message: InboxMessage
var body: some View {
VStack(alignment: .leading, spacing: 10) {
HStack(alignment: .top, spacing: 12) {
VStack(alignment: .leading, spacing: 2) {
Text(senderLine)
.font(.subheadline.weight(.medium))
.lineLimit(2)
Text(message.date.formatted(date: .abbreviated, time: .shortened))
.font(.caption)
.foregroundStyle(.secondary)
}
Spacer()
if message.isPatch {
Text("Patch")
.font(.caption2.weight(.medium))
.foregroundStyle(.secondary)
}
}
ForEach(Array(message.contentBlocks.enumerated()), id: \.offset) { _, block in
switch block {
case .plainText(let text):
Text(text)
.font(.body)
.textSelection(.enabled)
.frame(maxWidth: .infinity, alignment: .leading)
.fixedSize(horizontal: false, vertical: true)
case .diff(let diff):
ScrollView(.horizontal) {
DiffView(diff: diff)
.textSelection(.enabled)
.frame(maxWidth: .infinity, alignment: .leading)
}
}
}
}
.padding(.vertical, 6)
.listRowSeparator(.visible)
}
private var senderLine: String {
if let email = message.senderEmailAddress,
email.caseInsensitiveCompare(message.senderDisplayName) != .orderedSame {
return "\(message.senderDisplayName) <\(email)>"
}
return message.senderDisplayName
}
}
private struct MailComposeView: UIViewControllerRepresentable {
let draft: MailComposeDraft
let onComplete: (Result) -> Void
enum Result {
case cancelled
case saved
case sent
case failed(String)
}
func makeCoordinator() -> Coordinator {
Coordinator(onComplete: onComplete)
}
func makeUIViewController(context: Context) -> UIViewController {
guard MFMailComposeViewController.canSendMail() else {
let controller = UINavigationController(rootViewController: MailUnavailableViewController(onDismiss: {
context.coordinator.onComplete(.failed("Mail is not configured on this device."))
}))
DispatchQueue.main.async {
UIImpactFeedbackGenerator(style: .light).impactOccurred()
}
return controller
}
let controller = MFMailComposeViewController()
controller.mailComposeDelegate = context.coordinator
controller.setToRecipients(draft.recipients)
if !draft.ccRecipients.isEmpty {
controller.setCcRecipients(draft.ccRecipients)
}
if !draft.subject.isEmpty {
controller.setSubject(draft.subject)
}
if !draft.body.isEmpty {
controller.setMessageBody(draft.body, isHTML: false)
}
return controller
}
func updateUIViewController(_ : UIViewController, context _: Context) {
// The view controller is fully configured in makeUIViewController.
// No state-driven updates are required.
}
final class Coordinator: NSObject, MFMailComposeViewControllerDelegate {
let onComplete: (Result) -> Void
init(onComplete: @escaping (Result) -> Void) {
self.onComplete = onComplete
}
func mailComposeController(
_ controller: MFMailComposeViewController,
didFinishWith result: MFMailComposeResult,
error: Error?
) {
if error != nil {
let message = error?.localizedDescription ?? "The reply could not be sent."
presentFailureAlert(on: controller, message: message)
onComplete(.failed(message))
return
}
switch result {
case .cancelled:
controller.dismiss(animated: true)
onComplete(.cancelled)
case .saved:
controller.dismiss(animated: true)
onComplete(.saved)
case .sent:
controller.dismiss(animated: true)
onComplete(.sent)
case .failed:
let message = "Mail could not send the reply from the configured iOS Mail account."
presentFailureAlert(on: controller, message: message)
onComplete(.failed(message))
@unknown default:
let message = "Mail returned an unknown result while sending the reply."
presentFailureAlert(on: controller, message: message)
onComplete(.failed(message))
}
}
private func presentFailureAlert(on controller: UIViewController, message: String) {
guard controller.presentedViewController == nil else { return }
let alert = UIAlertController(title: "Reply Failed", message: message, preferredStyle: .alert)
alert.addAction(UIAlertAction(title: "OK", style: .default))
controller.present(alert, animated: true)
}
}
}
private final class MailUnavailableViewController: UIViewController {
private let onDismiss: () -> Void
init(onDismiss: @escaping () -> Void) {
self.onDismiss = onDismiss
super.init(nibName: nil, bundle: nil)
}
@available(*, unavailable)
required init?(coder _: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
override func viewDidLoad() {
super.viewDidLoad()
view.backgroundColor = .systemBackground
navigationItem.title = "Reply"
navigationItem.rightBarButtonItem = UIBarButtonItem(
barButtonSystemItem: .done,
target: self,
action: #selector(dismissSelf)
)
let label = UILabel()
label.translatesAutoresizingMaskIntoConstraints = false
label.text = "Mail is not configured on this device."
label.textAlignment = .center
label.numberOfLines = 0
label.textColor = .secondaryLabel
view.addSubview(label)
NSLayoutConstraint.activate([
label.leadingAnchor.constraint(equalTo: view.layoutMarginsGuide.leadingAnchor),
label.trailingAnchor.constraint(equalTo: view.layoutMarginsGuide.trailingAnchor),
label.centerYAnchor.constraint(equalTo: view.centerYAnchor)
])
}
@objc
private func dismissSelf() {
dismiss(animated: true)
onDismiss()
}
}
|