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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
|
import SwiftUI
struct HomeView: View {
@Environment(AppState.self) private var appState
@State private var viewModel: HomeViewModel?
private let previewLimit = 4
private let projectPreviewLimit = 3
var body: some View {
Group {
if let viewModel {
content(viewModel)
} else {
SRHTLoadingStateView(message: "Loading Home…")
}
}
.navigationTitle("Home")
.toolbar {
ToolbarItem(placement: .topBarTrailing) {
NavigationLink {
InboxView()
} label: {
HomeInboxToolbarIcon(hasUnreadThreads: viewModel?.hasUnreadInboxThreads == true)
}
}
}
.task {
if viewModel == nil, let currentUser = appState.currentUser {
let vm = HomeViewModel(currentUser: currentUser, client: appState.client)
viewModel = vm
await vm.loadDashboard()
}
}
}
@ViewBuilder
private func content(_ viewModel: HomeViewModel) -> some View {
List {
projectsSection(viewModel)
assignedTicketsSection(viewModel)
recentBuildsSection(viewModel)
}
.listStyle(.insetGrouped)
.overlay {
if viewModel.isLoadingProjects && viewModel.isLoadingAssignedTickets && viewModel.isLoadingRecentBuilds &&
viewModel.projects.isEmpty && viewModel.assignedTickets.isEmpty && viewModel.recentBuilds.isEmpty {
SRHTLoadingStateView(message: "Loading Home…")
} else if !viewModel.isLoadingProjects && !viewModel.isLoadingAssignedTickets && !viewModel.isLoadingRecentBuilds &&
viewModel.projects.isEmpty && viewModel.assignedTickets.isEmpty && viewModel.recentBuilds.isEmpty &&
viewModel.assignedTicketsError == nil && viewModel.recentBuildsError == nil {
ContentUnavailableView(
"All Clear",
systemImage: "checkmark.circle",
description: Text("There are no assigned tickets or recent builds right now.")
)
}
}
.refreshable {
await viewModel.loadDashboard()
}
}
@ViewBuilder
private func projectsSection(_ viewModel: HomeViewModel) -> some View {
if !viewModel.projects.isEmpty {
Section {
ForEach(viewModel.projects.prefix(projectPreviewLimit)) { project in
NavigationLink {
ProjectDetailView(project: project)
} label: {
HomeProjectRow(project: project)
}
}
} header: {
HomeSectionHeader("Projects") {
HomeProjectsListView(viewModel: viewModel)
}
}
}
}
@ViewBuilder
private func assignedTicketsSection(_ viewModel: HomeViewModel) -> some View {
Section {
if viewModel.isLoadingAssignedTickets && viewModel.assignedTickets.isEmpty {
HomeSectionLoadingRow(label: "Loading assigned tickets")
} else if let error = viewModel.assignedTicketsError, viewModel.assignedTickets.isEmpty {
HomeSectionMessageRow(
text: "Couldn’t load assigned tickets.",
systemImage: "exclamationmark.triangle",
emphasized: true,
accessibilityHint: error
)
} else if viewModel.assignedTickets.isEmpty {
HomeSectionMessageRow(
text: "No open tickets assigned to you.",
systemImage: "person.crop.circle.badge.checkmark"
)
} else {
ForEach(viewModel.assignedTickets.prefix(previewLimit)) { ticket in
NavigationLink {
TicketDetailView(
ownerUsername: ticket.ownerUsername,
trackerName: ticket.trackerName,
trackerId: ticket.trackerId,
trackerRid: ticket.trackerRid,
ticketId: ticket.ticket.id
)
} label: {
HomeAssignedTicketRow(ticket: ticket)
}
}
}
} header: {
HomeSectionHeader("Assigned Tickets") {
HomeAssignedTicketsListView(viewModel: viewModel)
}
}
}
@ViewBuilder
private func recentBuildsSection(_ viewModel: HomeViewModel) -> some View {
Section {
if viewModel.isLoadingRecentBuilds && viewModel.recentBuilds.isEmpty {
HomeSectionLoadingRow(label: "Loading recent builds")
} else if let error = viewModel.recentBuildsError, viewModel.recentBuilds.isEmpty {
HomeSectionMessageRow(
text: "Couldn’t load recent builds.",
systemImage: "exclamationmark.triangle",
emphasized: true,
accessibilityHint: error
)
} else if viewModel.recentBuilds.isEmpty {
HomeSectionMessageRow(
text: "No recent builds.",
systemImage: "clock"
)
} else {
ForEach(viewModel.recentBuilds.prefix(previewLimit)) { build in
NavigationLink {
BuildDetailView(jobId: build.job.id)
} label: {
HomeBuildRow(build: build)
}
}
}
} header: {
HomeSectionActionHeader("Recent Builds") {
appState.selectedTab = .builds
}
}
}
}
private struct HomeInboxToolbarIcon: View {
let hasUnreadThreads: Bool
var body: some View {
ZStack(alignment: .topTrailing) {
Image(systemName: hasUnreadThreads ? "tray.fill" : "tray")
if hasUnreadThreads {
Circle()
.fill(.blue)
.frame(width: 9, height: 9)
.offset(x: 4, y: -2)
}
}
.accessibilityLabel(hasUnreadThreads ? "Inbox, unread messages" : "Inbox")
}
}
private struct HomeProjectRow: View {
let project: Project
var body: some View {
VStack(alignment: .leading, spacing: 4) {
Text(project.name)
.font(.subheadline.weight(.medium))
.lineLimit(1)
if let description = project.description, !description.isEmpty {
Text(description)
.font(.caption)
.foregroundStyle(.secondary)
.lineLimit(1)
}
if let summary = project.resourceSummary {
Text(summary)
.font(.caption)
.foregroundStyle(.tertiary)
.lineLimit(1)
}
}
.padding(.vertical, 2)
}
}
private struct HomeProjectsListView: View {
let viewModel: HomeViewModel
var body: some View {
List {
ForEach(viewModel.projects) { project in
NavigationLink {
ProjectDetailView(project: project)
} label: {
HomeProjectRow(project: project)
}
}
}
.navigationTitle("Projects")
.navigationBarTitleDisplayMode(.inline)
.refreshable {
await viewModel.loadDashboard()
}
.overlay {
if viewModel.isLoadingProjects && viewModel.projects.isEmpty {
SRHTLoadingStateView(message: "Loading projects…")
}
}
}
}
private struct HomeBuildRow: View {
let build: HomeBuildItem
var body: some View {
HStack(spacing: 12) {
JobStatusIcon(status: build.job.status)
.frame(width: 20)
VStack(alignment: .leading, spacing: 4) {
Text(primaryTitle)
.font(.subheadline.weight(.medium))
.lineLimit(1)
HStack(spacing: 8) {
Text("Job #\(build.job.id)")
.font(.caption)
.foregroundStyle(.secondary)
Text("•")
.font(.caption)
.foregroundStyle(.tertiary)
Text(build.job.status.rawValue.capitalized)
.font(.caption)
.foregroundStyle(.secondary)
Text("•")
.font(.caption)
.foregroundStyle(.tertiary)
Text(build.job.created.relativeDescription)
.font(.caption)
.foregroundStyle(.tertiary)
Spacer()
}
}
}
.padding(.vertical, 2)
}
private var primaryTitle: String {
if let repositoryDisplayName = build.repositoryDisplayName {
return repositoryDisplayName
}
return build.job.displayLabel
}
}
private struct HomeAssignedTicketRow: View {
let ticket: HomeAssignedTicket
var body: some View {
HStack(alignment: .top, spacing: 12) {
TicketStatusIcon(status: ticket.ticket.status)
.frame(width: 20)
VStack(alignment: .leading, spacing: 4) {
Text(ticket.ticket.title)
.font(.subheadline.weight(.medium))
.lineLimit(2)
Text("\(ticket.ownerCanonicalName)/\(ticket.trackerName) • #\(ticket.ticket.id) • \(ticket.ticket.created.relativeDescription)")
.font(.caption)
.foregroundStyle(.secondary)
.lineLimit(1)
.truncationMode(.tail)
}
Spacer(minLength: 8)
Text(ticket.ticket.status.displayName)
.font(.caption2.weight(.medium))
.foregroundStyle(.secondary)
.lineLimit(1)
.fixedSize()
}
.padding(.vertical, 2)
}
}
private struct HomeSectionLoadingRow: View {
let label: String
var body: some View {
HStack(spacing: 10) {
ProgressView()
.controlSize(.small)
Text(label)
.foregroundStyle(.secondary)
}
.frame(maxWidth: .infinity, alignment: .leading)
}
}
private struct HomeSectionHeader<Destination: View>: View {
let title: String
let destination: Destination
init(_ title: String, @ViewBuilder destination: () -> Destination) {
self.title = title
self.destination = destination()
}
var body: some View {
HStack {
Text(title)
Spacer()
NavigationLink {
destination
} label: {
Text("See All")
.font(.caption.weight(.medium))
}
.buttonStyle(.plain)
}
.textCase(nil)
}
}
private struct HomeSectionActionHeader: View {
let title: String
let action: () -> Void
init(_ title: String, action: @escaping () -> Void) {
self.title = title
self.action = action
}
var body: some View {
HStack {
Text(title)
Spacer()
Button("See All", action: action)
.font(.caption.weight(.medium))
.buttonStyle(.plain)
}
.textCase(nil)
}
}
private struct HomeAssignedTicketsListView: View {
let viewModel: HomeViewModel
var body: some View {
List {
ForEach(viewModel.assignedTickets) { ticket in
NavigationLink {
TicketDetailView(
ownerUsername: ticket.ownerUsername,
trackerName: ticket.trackerName,
trackerId: ticket.trackerId,
trackerRid: ticket.trackerRid,
ticketId: ticket.ticket.id
)
} label: {
HomeAssignedTicketRow(ticket: ticket)
}
}
if !viewModel.isLoadingAssignedTickets && viewModel.assignedTickets.isEmpty {
HomeSectionMessageRow(
text: "No open tickets assigned to you.",
systemImage: "person.crop.circle.badge.checkmark"
)
}
}
.navigationTitle("Assigned Tickets")
.navigationBarTitleDisplayMode(.inline)
.refreshable {
await viewModel.loadDashboard()
}
.overlay {
if viewModel.isLoadingAssignedTickets && viewModel.assignedTickets.isEmpty {
SRHTLoadingStateView(message: "Loading assigned tickets…")
}
}
}
}
private struct HomeSectionMessageRow: View {
let text: String
let systemImage: String
var emphasized = false
var accessibilityHint: String? = nil
var body: some View {
Label(text, systemImage: systemImage)
.font(.subheadline)
.foregroundStyle(emphasized ? .secondary : .tertiary)
.accessibilityHint(accessibilityHint ?? "")
}
}
|