12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- //
- // ChatListView.swift
- // Chat
- //
- // Created by Sergey Tarasov on 24.07.2022.
- //
- import SwiftUI
- import XMPPFramework
- import XMPPFrameworkSwift
- struct ChatListView: View {
- @Environment(\.colorScheme) var colorScheme
- @StateObject var viewModel: ChatListViewModel = ChatListViewModel()
- var body: some View {
- Group {
- if viewModel.users.isEmpty {
- ProgressView()
- } else {
- List {
- ForEach(viewModel.users.indices, id: \.self) { index in
- ZStack {
- HStack {
- Image(systemName: "person.crop.circle")
- .resizable()
- .scaledToFit()
- .foregroundColor(.secondary.opacity(0.5))
- Text(viewModel.nicknames[index])
- Spacer()
- }
- .foregroundColor(.primary)
- .frame(height: 30)
- NavigationLink {
- ChatView(viewModel: ChatViewModel(with: viewModel.users[index].jidString))
- } label: {
- EmptyView()
- }
- .opacity(0.0)
- }
- }
- }
- .listStyle(.plain)
- }
- }
- .onAppear {
- viewModel.fetchChatList()
- }
- .navigationBarTitleDisplayMode(.inline)
- }
- }
- struct ChatListView_Previews: PreviewProvider {
- static var viewModel: ChatListViewModel = ChatListViewModel()
- static var previews: some View {
- Group {
- NavigationView {
- ChatListView()
- }
- NavigationView {
- ChatListView()
- }
- .preferredColorScheme(.dark)
- }
- }
- }
|