ChatListView.swift 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. //
  2. // ChatListView.swift
  3. // Chat
  4. //
  5. // Created by Sergey Tarasov on 24.07.2022.
  6. //
  7. import SwiftUI
  8. import XMPPFramework
  9. import XMPPFrameworkSwift
  10. struct ChatListView: View {
  11. @Environment(\.colorScheme) var colorScheme
  12. @StateObject var viewModel: ChatListViewModel = ChatListViewModel()
  13. var body: some View {
  14. Group {
  15. if viewModel.users.isEmpty {
  16. ProgressView()
  17. } else {
  18. List {
  19. ForEach(viewModel.users.indices, id: \.self) { index in
  20. ZStack {
  21. HStack {
  22. Image(systemName: "person.crop.circle")
  23. .resizable()
  24. .scaledToFit()
  25. .foregroundColor(.secondary.opacity(0.5))
  26. Text(viewModel.nicknames[index])
  27. Spacer()
  28. }
  29. .foregroundColor(.primary)
  30. .frame(height: 30)
  31. NavigationLink {
  32. ChatView(viewModel: ChatViewModel(with: viewModel.users[index].jidString))
  33. } label: {
  34. EmptyView()
  35. }
  36. .opacity(0.0)
  37. }
  38. }
  39. }
  40. .listStyle(.plain)
  41. }
  42. }
  43. .onAppear {
  44. viewModel.fetchChatList()
  45. }
  46. .navigationBarTitleDisplayMode(.inline)
  47. }
  48. }
  49. struct ChatListView_Previews: PreviewProvider {
  50. static var viewModel: ChatListViewModel = ChatListViewModel()
  51. static var previews: some View {
  52. Group {
  53. NavigationView {
  54. ChatListView()
  55. }
  56. NavigationView {
  57. ChatListView()
  58. }
  59. .preferredColorScheme(.dark)
  60. }
  61. }
  62. }