// // NCMainTabBarController.swift // Nextcloud // // Created by Marino Faggiana on 02/04/24. // Copyright © 2024 Marino Faggiana. All rights reserved. // // Author Marino Faggiana // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // import UIKit struct NavigationCollectionViewCommon { var serverUrl: String var navigationController: UINavigationController? var viewController: NCCollectionViewCommon } class NCMainTabBarController: UITabBarController { var sceneIdentifier: String = UUID().uuidString var account = "" var documentPickerViewController: NCDocumentPickerViewController? let navigationCollectionViewCommon = ThreadSafeArray() let appDelegate = (UIApplication.shared.delegate as? AppDelegate)! private var previousIndex: Int? required init?(coder: NSCoder) { super.init(coder: coder) NotificationCenter.default.addObserver(self, selector: #selector(changeTheming(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterChangeTheming), object: nil) } override func viewDidLoad() { super.viewDidLoad() delegate = self if #available(iOS 17.0, *) { traitOverrides.horizontalSizeClass = .compact } } override func viewDidAppear(_ animated: Bool) { super.viewDidAppear(animated) previousIndex = selectedIndex } @objc func changeTheming(_ notification: NSNotification) { guard let userInfo = notification.userInfo as? NSDictionary else { return } let account = userInfo["account"] as? String if let tabBar = self.tabBar as? NCMainTabBar, self.account == account { let color = NCBrandColor.shared.getElement(account: account) tabBar.color = color tabBar.tintColor = color tabBar.setNeedsDisplay() } } func currentViewController() -> UIViewController? { return (selectedViewController as? UINavigationController)?.topViewController } func currentServerUrl() -> String { let session = NCSession.shared.getSession(account: account) var serverUrl = NCUtilityFileSystem().getHomeServer(session: session) let viewController = currentViewController() if let collectionViewCommon = viewController as? NCCollectionViewCommon { if !collectionViewCommon.serverUrl.isEmpty { serverUrl = collectionViewCommon.serverUrl } } return serverUrl } } extension NCMainTabBarController: UITabBarControllerDelegate { func tabBarController(_ tabBarController: UITabBarController, didSelect viewController: UIViewController) { if previousIndex == tabBarController.selectedIndex { scrollToTop(viewController: viewController) } previousIndex = tabBarController.selectedIndex } private func scrollToTop(viewController: UIViewController) { guard let navigationController = viewController as? UINavigationController, let topViewController = navigationController.topViewController else { return } if let scrollView = topViewController.view.subviews.compactMap({ $0 as? UIScrollView }).first { scrollView.setContentOffset(CGPoint(x: 0, y: -scrollView.adjustedContentInset.top), animated: true) } } }