// // NCIntroViewController.swift // Nextcloud // // Created by Philippe Weidmann on 24.12.19. // Copyright © 2019 Philippe Weidmann. All rights reserved. // Copyright © 2019 Marino Faggiana All rights reserved. // // Author Philippe Weidmann // 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 class NCIntroViewController: UIViewController, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout { @IBOutlet weak var buttonLogin: UIButton! @IBOutlet weak var buttonSignUp: UIButton! @IBOutlet weak var buttonHost: UIButton! @IBOutlet weak var introCollectionView: UICollectionView! @IBOutlet weak var pageControl: UIPageControl! @objc var delegate: NCIntroViewController? private let titles = [NSLocalizedString("_intro_1_title_", comment: ""), NSLocalizedString("_intro_2_title_", comment: ""), NSLocalizedString("_intro_3_title_", comment: ""), NSLocalizedString("_intro_4_title_", comment: "")] private let images = [UIImage(named: "intro1"), UIImage(named: "intro2"), UIImage(named: "intro3"), UIImage(named: "intro4")] private var timerAutoScroll: Timer? private var textColor: UIColor = .white private var textColorOpponent: UIColor = .black override func viewDidLoad() { super.viewDidLoad() let isTooLight = NCBrandColor.sharedInstance.customer.isTooLight() let isTooDark = NCBrandColor.sharedInstance.customer.isTooDark() if isTooLight { textColor = .black textColorOpponent = .white } else if isTooDark { textColor = .white textColorOpponent = .black } else { textColor = .white textColorOpponent = .black } if #available(iOS 13.0, *) { let navBarAppearance = UINavigationBarAppearance() navBarAppearance.configureWithTransparentBackground() navBarAppearance.shadowColor = .clear navBarAppearance.shadowImage = UIImage() self.navigationController?.navigationBar.standardAppearance = navBarAppearance } else { self.navigationController?.navigationBar.isTranslucent = true self.navigationController?.navigationBar.shadowImage = UIImage() self.navigationController?.navigationBar.setBackgroundImage(UIImage(), for: .default) self.navigationController?.navigationBar.backgroundColor = .clear self.navigationController?.navigationBar.barTintColor = NCBrandColor.sharedInstance.customer } self.navigationController?.navigationBar.tintColor = textColor self.pageControl.currentPageIndicatorTintColor = textColor self.pageControl.pageIndicatorTintColor = NCBrandColor.sharedInstance.nextcloudSoft self.buttonLogin.layer.cornerRadius = 20 self.buttonLogin.setTitleColor(textColorOpponent, for: .normal) self.buttonLogin.backgroundColor = textColor self.buttonLogin.setTitle(NSLocalizedString("_log_in_", comment: ""), for: .normal) self.buttonSignUp.layer.cornerRadius = 20 self.buttonSignUp.setTitleColor(.white, for: .normal) self.buttonSignUp.backgroundColor = UIColor(red: 25.0 / 255.0, green: 89.0 / 255.0, blue: 141.0 / 255.0, alpha: 1) self.buttonSignUp.setTitle(NSLocalizedString("_sign_up_", comment: ""), for: .normal) self.buttonHost.layer.cornerRadius = 20 self.buttonHost.setTitle(NSLocalizedString("_host_your_own_server", comment: ""), for: .normal) self.buttonHost.setTitleColor(textColor.withAlphaComponent(0.5), for: .normal) self.introCollectionView.register(UINib(nibName: "NCIntroCollectionViewCell", bundle: nil), forCellWithReuseIdentifier: "introCell") self.introCollectionView.dataSource = self self.introCollectionView.delegate = self self.introCollectionView.backgroundColor = NCBrandColor.sharedInstance.customer self.pageControl.numberOfPages = self.titles.count self.view.backgroundColor = NCBrandColor.sharedInstance.customer self.timerAutoScroll = Timer.scheduledTimer(timeInterval: 5, target: self, selector: (#selector(NCIntroViewController.autoScroll)), userInfo: nil, repeats: true) } override var preferredStatusBarStyle: UIStatusBarStyle { if #available(iOS 13.0, *) { if traitCollection.userInterfaceStyle == .light { return .lightContent } else { return .darkContent } } else { return .lightContent } } override func viewWillDisappear(_ animated: Bool) { super.viewWillDisappear(animated) timerAutoScroll?.invalidate() } override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) { pageControl.currentPage = 0 introCollectionView.collectionViewLayout.invalidateLayout() } @objc func autoScroll() { if(pageControl.currentPage + 1 >= titles.count) { pageControl.currentPage = 0 } else { pageControl.currentPage += 1 } introCollectionView.scrollToItem(at: IndexPath(row: pageControl.currentPage, section: 0), at: .centeredHorizontally, animated: true) } func collectionView(_ collectionView: UICollectionView, targetContentOffsetForProposedContentOffset proposedContentOffset: CGPoint) -> CGPoint { return CGPoint.zero } func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { return titles.count } func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "introCell", for: indexPath) as! NCIntroCollectionViewCell cell.backgroundColor = NCBrandColor.sharedInstance.customer cell.titleLabel.textColor = textColor cell.titleLabel.text = titles[indexPath.row] cell.imageView.image = images[indexPath.row] return cell } func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize { return collectionView.bounds.size } func scrollViewDidEndDecelerating(_ scrollView: UIScrollView) { timerAutoScroll = Timer.scheduledTimer(timeInterval: 5, target: self, selector: (#selector(NCIntroViewController.autoScroll)), userInfo: nil, repeats: true) pageControl.currentPage = Int(scrollView.contentOffset.x) / Int(scrollView.frame.width) } func scrollViewWillBeginDragging(_ scrollView: UIScrollView) { timerAutoScroll?.invalidate() } @IBAction func login(_ sender: Any) { (UIApplication.shared.delegate as! AppDelegate).openLoginView(navigationController, selector: Int(k_intro_login), openLoginWeb: false) } @IBAction func signup(_ sender: Any) { (UIApplication.shared.delegate as! AppDelegate).openLoginView(navigationController, selector: Int(k_intro_signup), openLoginWeb: false) } @IBAction func host(_ sender: Any) { let appDelegate = UIApplication.shared.delegate as? AppDelegate let browserWebVC = UIStoryboard(name: "NCBrowserWeb", bundle: nil).instantiateInitialViewController() as? NCBrowserWeb browserWebVC?.urlBase = NCBrandOptions.sharedInstance.linkLoginHost if let browserWebVC = browserWebVC { appDelegate?.window.rootViewController?.present(browserWebVC, animated: true) } } } extension UINavigationController { open override var childForStatusBarStyle: UIViewController? { return topViewController?.childForStatusBarStyle ?? topViewController } }