blob: 65a947f205fdc701e1867b160e32fcd96103a4d5 (
plain)
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
|
import SwiftUI
struct MessageBoardView: View {
@Environment(Hotline.self) private var model: Hotline
@State private var initialLoadComplete = false
var body: some View {
NavigationStack {
ScrollView {
LazyVStack(alignment: .leading) {
ForEach(model.messageBoard, id: \.self) {
Text($0)
.lineLimit(100)
.padding()
.textSelection(.enabled)
Divider()
}
}
Spacer()
}
.task {
if !model.messageBoardLoaded {
let _ = await model.getMessageBoard()
}
}
.overlay {
if !model.messageBoardLoaded {
VStack {
ProgressView()
.controlSize(.large)
}
.frame(maxWidth: .infinity)
}
}
.background(Color(nsColor: .textBackgroundColor))
}
.toolbar {
ToolbarItem(placement:.primaryAction) {
Button {
} label: {
Image(systemName: "square.and.pencil")
}
}
}
}
}
#Preview {
MessageBoardView()
.environment(Hotline(trackerClient: HotlineTrackerClient(), client: HotlineClient()))
}
|