aboutsummaryrefslogtreecommitdiff
path: root/Hotline/macOS/Chat/ChatView.swift
blob: 65087c69e5df83a515dcb2f7b87b8a77f1206680 (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
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
import SwiftUI

enum FocusedField: Int, Hashable {
  case chatInput
}

struct ChatJoinedMessageView: View {
  let message: ChatMessage
  
  var body: some View {
    HStack(alignment: .center, spacing: 4) {
      Image(systemName: "arrow.right")
        .resizable()
        .scaledToFit()
        .fontWeight(.semibold)
        .foregroundStyle(.primary)
        .frame(width: 12, height: 12)
      
      Text(message.text)
        .lineLimit(1)
        .truncationMode(.middle)
        .fontWeight(.semibold)
        .textSelection(.disabled)

      Spacer()
    }
    .opacity(0.3)
  }
}

struct ChatLeftMessageView: View {
  let message: ChatMessage
  
  var body: some View {
    HStack(alignment: .center, spacing: 4) {
      Image(systemName: "arrow.left")
        .resizable()
        .scaledToFit()
        .fontWeight(.semibold)
        .foregroundStyle(.primary)
        .frame(width: 12, height: 12)
      
      Text(message.text)
        .lineLimit(1)
        .truncationMode(.middle)
        .fontWeight(.semibold)
        .textSelection(.disabled)

      Spacer()
    }
    .opacity(0.3)
  }
}


struct ChatDisconnectedMessageView: View {
  let message: ChatMessage
  
  var body: some View {
    HStack {
      Spacer()
    }
    .frame(height: 5)
    .background(Color.primary)
    .clipShape(.capsule)
    .opacity(0.1)
  }
}

struct ChatMessageView: View {
  let message: ChatMessage

  var body: some View {
    HStack(alignment: .firstTextBaseline) {
      if let username = message.username {
        Text("\(username): ").fontWeight(.semibold) + Text(message.text.markdownToAttributedString())
      }
      else {
        Text(message.text)
      }
      Spacer()
    }
    .lineSpacing(4)
    .multilineTextAlignment(.leading)
    .textSelection(.enabled)
    .tint(Color("Link Color"))
  }
}

struct ChatView: View {
  @Environment(Hotline.self) private var model: Hotline
  @Environment(\.colorScheme) var colorScheme
  @Environment(\.dismiss) var dismiss

  @State private var scrollPos: Int?
  @State private var contentHeight: CGFloat = 0

  @State private var searchQuery: String = ""
  @State private var searchResults: [ChatMessage] = []
  @State private var isSearching: Bool = false

  @FocusState private var focusedField: FocusedField?

  @Namespace var bottomID

  private var bindableModel: Bindable<Hotline> {
    Bindable(model)
  }

//  @State private var showingExporter: Bool = false
//
//  @State private var chatDocument: TextFile = TextFile()

  var displayedMessages: [ChatMessage] {
    searchQuery.isEmpty ? model.chat : searchResults
  }

  var body: some View {
    @Bindable var bindModel = model
    
    NavigationStack {
      ScrollViewReader { reader in
        VStack(alignment: .leading, spacing: 0) {

          // MARK: Scroll View
            ScrollView(.vertical) {
              LazyVStack(alignment: .leading, spacing: 8) {

                ForEach(displayedMessages) { msg in
                  if msg.type == .agreement {
                    VStack(alignment: .center, spacing: 16) {
                      if let bannerImage = self.model.bannerImage {
                        HStack(spacing: 0) {
                          Spacer(minLength: 0)
                          ZStack {
                            Image(nsImage: bannerImage)
                              .resizable()
                              .scaledToFit()
                              .frame(maxWidth: 468.0)
                              .clipShape(RoundedRectangle(cornerRadius: 8, style: .continuous))
                              .offset(y: 1.5)
                              .blur(radius: 4)
                              .opacity(0.2)
                            
                            Image(nsImage: bannerImage)
                              .resizable()
                              .scaledToFit()
                              .frame(maxWidth: 468.0)
                              .clipShape(RoundedRectangle(cornerRadius: 8, style: .continuous))
                          }
                          
                          Spacer(minLength: 0)
                        }
                      }

                      ServerAgreementView(text: msg.text)
                    }
                    .padding(.vertical, 24)
                  }
                  else if msg.type == .server {
                    ServerMessageView(message: msg.text)
                  }
                  else if msg.type == .joined {
                    ChatJoinedMessageView(message: msg)
                  }
                  else if msg.type == .left {
                    ChatLeftMessageView(message: msg)
                  }
                  else if msg.type == .signOut {
                    ChatDisconnectedMessageView(message: msg)
                      .padding(.vertical, 24)
                  }
                  else {
                    ChatMessageView(message: msg)
                  }
                }
              }
              .padding()
              
              VStack(spacing: 0) {}.id(bottomID)
            }
            .frame(maxWidth: .infinity, maxHeight: .infinity)
//            .defaultScrollAnchor(.bottom, for: .initialOffset)
            .defaultScrollAnchor(.bottom, for: .alignment)
            .defaultScrollAnchor(.bottom, for: .sizeChanges)
            .onChange(of: model.chat.count) {
              // Re-run search when new messages arrive to keep filter active
              if !searchQuery.isEmpty {
                performSearch()
              }
              reader.scrollTo(bottomID, anchor: .bottom)
              model.markPublicChatAsRead()
            }
            .onAppear {
              reader.scrollTo(bottomID, anchor: .bottom)
              self.focusedField = .chatInput
            }
            .onChange(of: self.model.bannerImage) {
              reader.scrollTo(bottomID, anchor: .bottom)
            }
            .onChange(of: searchQuery) {
              reader.scrollTo(bottomID, anchor: .bottom)
            }
            .onChange(of: isSearching) {
              reader.scrollTo(bottomID, anchor: .bottom)
            }
          
          // MARK: Input Divider
          Divider()
          
          // MARK: Input Bar
          HStack(alignment: .lastTextBaseline, spacing: 0) {
            TextField("", text: $bindModel.chatInput, axis: .vertical)
              .focused($focusedField, equals: .chatInput)
              .textFieldStyle(.plain)
              .lineLimit(1...5)
              .multilineTextAlignment(.leading)
              .onSubmit {
                if !model.chatInput.isEmpty {
                  model.sendChat(model.chatInput, announce: NSEvent.modifierFlags.contains(.shift))
                }
                model.chatInput = ""
              }
              .frame(maxWidth: .infinity)
              .padding()
          }
          .frame(maxWidth: .infinity, minHeight: 28)
          .padding(EdgeInsets(top: 4, leading: 16, bottom: 4, trailing: 16))
          .overlay(alignment: .leadingLastTextBaseline) {
            Image(systemName: "chevron.right").fontWeight(.semibold).opacity(0.4).offset(x: 16)
          }
          .onContinuousHover { phase in
            switch phase {
            case .active(_):
              NSCursor.iBeam.set()
            case .ended:
              NSCursor.arrow.set()
              break
            }
          }
          .onTapGesture(count: 1) {
            focusedField = .chatInput
          }
        }
      }
      .searchable(text: $searchQuery, isPresented: $isSearching, placement: .toolbar, prompt: "Search")
      .background(Button("", action: { isSearching = true }).keyboardShortcut("f").hidden())
    }
    .background(Color(nsColor: .textBackgroundColor))
//    .navigationTitle(model.serverTitle)
    .onChange(of: searchQuery) {
      performSearch()
    }
//    .toolbar {
//      ToolbarItem(placement: .primaryAction) {
//        Button {
//          showingExporter = true
//        } label: {
//          Image(systemName: "square.and.arrow.up")
//        }.help("Save Chat...")
//      }
//    }
//    .fileExporter(isPresented: $showingExporter, document: self.chatDocument, contentType: .utf8PlainText, defaultFilename: "\(self.model.serverTitle) Chat.txt") { result in
//      switch result {
//      case .success(let url):
//        print("Saved to \(url)")
//        
//      case .failure(let error):
//        print(error.localizedDescription)
//      }
//      self.chatDocument.text = ""
//    }
  }

  private func performSearch() {
    guard !searchQuery.isEmpty else {
      searchResults = []
      return
    }

    searchResults = model.searchChat(query: searchQuery)
  }

//  private func prepareChatDocument() -> Bool {
//    var text: String = String()
//    
//    self.chatDocument.text = ""
//    for msg in model.chat {
//      if msg.type == .agreement {
//        text.append(msg.text)
//        text.append("\n\n")
//      }
//      else if msg.type == .message {
//        if let username = msg.username {
//          text.append("\(username): \(msg.text)")
//        }
//        else {
//          text.append(msg.text)
//        }
//        text.append("\n")
//      }
//      else if msg.type == .status {
//        text.append(msg.text)
//        text.append("\n")
//      }
//    }
//    
//    if text.isEmpty {
//      return false
//    }
//    
//    self.chatDocument.text = text
//    
//    return true
//  }
}

#Preview {
  ChatView()
    .environment(Hotline(trackerClient: HotlineTrackerClient(), client: HotlineClient()))
}