2020-09-27 03:44:33 +02:00
|
|
|
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
|
|
|
|
import SwiftUI
|
|
|
|
import ViewModels
|
|
|
|
|
|
|
|
struct TableView: UIViewControllerRepresentable {
|
2020-10-07 02:31:29 +02:00
|
|
|
@EnvironmentObject var identification: Identification
|
2020-12-02 19:59:02 +01:00
|
|
|
let viewModelClosure: () -> CollectionViewModel
|
2020-09-27 03:44:33 +02:00
|
|
|
|
|
|
|
func makeUIViewController(context: Context) -> TableViewController {
|
2020-12-02 19:59:02 +01:00
|
|
|
TableViewController(viewModel: viewModelClosure(), identification: identification)
|
2020-09-27 03:44:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func updateUIViewController(_ uiViewController: TableViewController, context: Context) {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if DEBUG
|
|
|
|
import PreviewViewModels
|
|
|
|
|
|
|
|
struct StatusListView_Previews: PreviewProvider {
|
|
|
|
static var previews: some View {
|
2020-12-02 19:59:02 +01:00
|
|
|
TableView { NavigationViewModel(identification: .preview).timelineViewModel }
|
2020-09-27 03:44:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|