2021-01-21 00:33:53 +01:00
|
|
|
// Copyright © 2021 Metabolist. All rights reserved.
|
|
|
|
|
2021-01-21 09:45:09 +01:00
|
|
|
import Combine
|
|
|
|
import SwiftUI
|
2021-01-21 00:33:53 +01:00
|
|
|
import ViewModels
|
|
|
|
|
|
|
|
final class MainNavigationViewController: UITabBarController {
|
|
|
|
private let viewModel: NavigationViewModel
|
|
|
|
private let rootViewModel: RootViewModel
|
2021-01-21 09:45:09 +01:00
|
|
|
private var cancellables = Set<AnyCancellable>()
|
2021-01-21 00:33:53 +01:00
|
|
|
|
|
|
|
init(viewModel: NavigationViewModel, rootViewModel: RootViewModel) {
|
|
|
|
self.viewModel = viewModel
|
|
|
|
self.rootViewModel = rootViewModel
|
|
|
|
|
|
|
|
super.init(nibName: nil, bundle: nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
@available(*, unavailable)
|
|
|
|
required init?(coder: NSCoder) {
|
|
|
|
fatalError("init(coder:) has not been implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
override func viewDidLoad() {
|
|
|
|
super.viewDidLoad()
|
|
|
|
|
2021-01-21 09:45:09 +01:00
|
|
|
viewModel.$presentingSecondaryNavigation.sink { [weak self] in
|
|
|
|
if $0 {
|
|
|
|
self?.presentSecondaryNavigation()
|
|
|
|
} else {
|
|
|
|
self?.dismissSecondaryNavigation()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.store(in: &cancellables)
|
|
|
|
|
2021-01-27 23:23:52 +01:00
|
|
|
viewModel.identityContext.$identity.map(\.pending)
|
|
|
|
.removeDuplicates()
|
|
|
|
.sink { [weak self] in self?.setupViewControllers(pending: $0) }
|
|
|
|
.store(in: &cancellables)
|
|
|
|
|
2021-01-28 00:49:13 +01:00
|
|
|
viewModel.navigations
|
|
|
|
.sink { [weak self] in self?.handle(navigation: $0) }
|
2021-01-21 09:45:09 +01:00
|
|
|
.store(in: &cancellables)
|
2021-01-27 23:23:52 +01:00
|
|
|
|
|
|
|
NotificationCenter.default.publisher(for: UIScene.willEnterForegroundNotification)
|
|
|
|
.sink { [weak self] _ in self?.viewModel.refreshIdentity() }
|
|
|
|
.store(in: &cancellables)
|
2021-01-21 09:45:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
override func viewWillAppear(_ animated: Bool) {
|
|
|
|
super.viewWillAppear(animated)
|
|
|
|
|
|
|
|
viewModel.refreshIdentity()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private extension MainNavigationViewController {
|
2021-01-28 04:58:23 +01:00
|
|
|
static let secondaryNavigationViewTag = UUID().hashValue
|
|
|
|
|
2021-01-27 23:23:52 +01:00
|
|
|
func setupViewControllers(pending: Bool) {
|
2021-01-23 04:48:33 +01:00
|
|
|
var controllers: [UIViewController] = [
|
|
|
|
TimelinesViewController(
|
|
|
|
viewModel: viewModel,
|
2021-01-26 01:45:18 +01:00
|
|
|
rootViewModel: rootViewModel)
|
2021-01-23 04:48:33 +01:00
|
|
|
]
|
2021-01-21 09:45:09 +01:00
|
|
|
|
2021-01-27 23:23:52 +01:00
|
|
|
if viewModel.identityContext.identity.authenticated && !pending {
|
2021-01-29 07:14:48 +01:00
|
|
|
tabBar.isHidden = false
|
|
|
|
controllers.append(ExploreViewController(viewModel: viewModel.exploreViewModel(),
|
|
|
|
rootViewModel: rootViewModel))
|
2021-01-26 03:10:24 +01:00
|
|
|
controllers.append(NotificationsViewController(viewModel: viewModel, rootViewModel: rootViewModel))
|
2021-01-21 00:33:53 +01:00
|
|
|
|
|
|
|
let conversationsViewController = TableViewController(
|
2021-01-27 23:23:52 +01:00
|
|
|
viewModel: viewModel.conversationsViewModel(),
|
2021-01-26 01:45:18 +01:00
|
|
|
rootViewModel: rootViewModel)
|
2021-01-21 00:33:53 +01:00
|
|
|
|
|
|
|
conversationsViewController.tabBarItem = NavigationViewModel.Tab.messages.tabBarItem
|
|
|
|
conversationsViewController.navigationItem.title = NavigationViewModel.Tab.messages.title
|
|
|
|
|
2021-01-21 09:45:09 +01:00
|
|
|
controllers.append(conversationsViewController)
|
2021-01-27 23:23:52 +01:00
|
|
|
|
|
|
|
setupNewStatusButton()
|
2021-01-29 07:14:48 +01:00
|
|
|
} else {
|
|
|
|
tabBar.isHidden = true
|
2021-01-21 09:45:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
let secondaryNavigationButton = SecondaryNavigationButton(viewModel: viewModel, rootViewModel: rootViewModel)
|
|
|
|
|
|
|
|
for controller in controllers {
|
|
|
|
controller.navigationItem.leftBarButtonItem = secondaryNavigationButton
|
|
|
|
}
|
|
|
|
|
|
|
|
viewControllers = controllers.map(UINavigationController.init(rootViewController:))
|
|
|
|
}
|
|
|
|
|
|
|
|
func setupNewStatusButton() {
|
|
|
|
let newStatusButtonView = NewStatusButtonView(primaryAction: UIAction { [weak self] _ in
|
|
|
|
guard let self = self else { return }
|
|
|
|
let newStatusViewModel = self.rootViewModel.newStatusViewModel(
|
2021-01-26 01:06:35 +01:00
|
|
|
identityContext: self.viewModel.identityContext)
|
2021-01-21 09:45:09 +01:00
|
|
|
let newStatusViewController = NewStatusViewController(viewModel: newStatusViewModel)
|
|
|
|
let newStatusNavigationController = UINavigationController(rootViewController: newStatusViewController)
|
|
|
|
|
|
|
|
if UIDevice.current.userInterfaceIdiom == .phone {
|
|
|
|
newStatusNavigationController.modalPresentationStyle = .overFullScreen
|
2021-01-22 07:12:29 +01:00
|
|
|
} else {
|
|
|
|
newStatusNavigationController.isModalInPresentation = true
|
2021-01-21 09:45:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
self.present(newStatusNavigationController, animated: true)
|
|
|
|
})
|
|
|
|
|
|
|
|
view.addSubview(newStatusButtonView)
|
|
|
|
newStatusButtonView.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
|
|
|
|
NSLayoutConstraint.activate([
|
|
|
|
newStatusButtonView.widthAnchor.constraint(equalToConstant: .newStatusButtonDimension),
|
|
|
|
newStatusButtonView.heightAnchor.constraint(equalToConstant: .newStatusButtonDimension),
|
|
|
|
newStatusButtonView.trailingAnchor.constraint(
|
|
|
|
equalTo: view.safeAreaLayoutGuide.trailingAnchor,
|
|
|
|
constant: -.defaultSpacing * 2),
|
|
|
|
newStatusButtonView.bottomAnchor.constraint(equalTo: tabBar.topAnchor, constant: -.defaultSpacing * 2)
|
|
|
|
])
|
|
|
|
}
|
|
|
|
|
|
|
|
func presentSecondaryNavigation() {
|
|
|
|
let secondaryNavigationView = SecondaryNavigationView(viewModel: viewModel)
|
|
|
|
.environmentObject(rootViewModel)
|
|
|
|
let hostingController = UIHostingController(rootView: secondaryNavigationView)
|
|
|
|
|
|
|
|
hostingController.navigationItem.leftBarButtonItem = UIBarButtonItem(
|
|
|
|
systemItem: .close,
|
|
|
|
primaryAction: UIAction { [weak self] _ in self?.viewModel.presentingSecondaryNavigation = false })
|
2021-01-28 02:13:17 +01:00
|
|
|
hostingController.navigationItem.titleView = SecondaryNavigationTitleView(viewModel: viewModel)
|
2021-01-21 09:45:09 +01:00
|
|
|
|
|
|
|
let navigationController = UINavigationController(rootViewController: hostingController)
|
|
|
|
|
2021-01-28 04:58:23 +01:00
|
|
|
navigationController.view.tag = Self.secondaryNavigationViewTag
|
|
|
|
|
2021-01-21 09:45:09 +01:00
|
|
|
present(navigationController, animated: true)
|
|
|
|
}
|
|
|
|
|
|
|
|
func dismissSecondaryNavigation() {
|
2021-01-28 04:58:23 +01:00
|
|
|
if presentedViewController?.view.tag == Self.secondaryNavigationViewTag {
|
2021-01-21 09:45:09 +01:00
|
|
|
dismiss(animated: true)
|
2021-01-21 00:33:53 +01:00
|
|
|
}
|
|
|
|
}
|
2021-01-28 00:49:13 +01:00
|
|
|
|
|
|
|
func handle(navigation: Navigation) {
|
|
|
|
let vc: UIViewController
|
|
|
|
|
|
|
|
switch navigation {
|
|
|
|
case let .collection(collectionService):
|
|
|
|
vc = TableViewController(
|
|
|
|
viewModel: CollectionItemsViewModel(
|
|
|
|
collectionService: collectionService,
|
|
|
|
identityContext: viewModel.identityContext),
|
|
|
|
rootViewModel: rootViewModel)
|
|
|
|
case let .profile(profileService):
|
|
|
|
vc = ProfileViewController(
|
|
|
|
viewModel: ProfileViewModel(
|
|
|
|
profileService: profileService,
|
|
|
|
identityContext: viewModel.identityContext),
|
|
|
|
rootViewModel: rootViewModel,
|
|
|
|
identityContext: viewModel.identityContext,
|
|
|
|
parentNavigationController: nil)
|
|
|
|
default:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
selectedViewController?.show(vc, sender: self)
|
|
|
|
}
|
2021-01-21 00:33:53 +01:00
|
|
|
}
|