ChatListView.swift 920 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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(viewModel.users.indices, id: \.self) { index in
  19. ChatListCellView(
  20. nickname: viewModel.nicknames[index],
  21. jid: viewModel.users[index].jidString
  22. )
  23. }
  24. .listStyle(.plain)
  25. }
  26. }
  27. .onAppear {
  28. viewModel.fetchChatList()
  29. }
  30. .navigationBarTitleDisplayMode(.inline)
  31. }
  32. }
  33. struct ChatListView_Previews: PreviewProvider {
  34. static var viewModel: ChatListViewModel = ChatListViewModel()
  35. static var previews: some View {
  36. NavigationView {
  37. ChatListView()
  38. }
  39. }
  40. }