123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- //
- // NCMainTabBarController.swift
- // Nextcloud
- //
- // Created by Marino Faggiana on 02/04/24.
- // Copyright © 2024 Marino Faggiana. All rights reserved.
- //
- // Author Marino Faggiana <marino.faggiana@nextcloud.com>
- //
- // 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 <http://www.gnu.org/licenses/>.
- //
- 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<NavigationCollectionViewCommon>()
- 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)
- }
- }
- }
|