DashboardViewController.swift 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. //
  2. // DashboardViewController.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 09/11/21.
  6. //
  7. import UIKit
  8. import SideMenu
  9. class DashboardViewController: UIViewController {
  10. @IBOutlet var menuCollectionView: UICollectionView!
  11. override func viewDidLoad() {
  12. super.viewDidLoad()
  13. // Do any additional setup after loading the view.
  14. menuCollectionView.delegate = self
  15. menuCollectionView.dataSource = self
  16. }
  17. override func viewWillAppear(_ animated: Bool) {
  18. super.viewWillAppear(animated)
  19. navigationController?.navigationBar.barStyle = .black
  20. setupUI()
  21. }
  22. override func viewDidAppear(_ animated: Bool) {
  23. super.viewDidAppear(animated)
  24. self.disableSwipeToPop()
  25. }
  26. override var preferredStatusBarStyle: UIStatusBarStyle {
  27. return .lightContent
  28. }
  29. func setupUI() {
  30. self.navigationItem.title = "Dashboard"
  31. self.navigationItem.hidesBackButton = true
  32. let menuBarButtonItem = UIBarButtonItem(image: UIImage(systemName: "line.3.horizontal"), style: .plain, target: self, action: #selector(openMenu))
  33. self.navigationItem.leftBarButtonItem = menuBarButtonItem
  34. if #available(iOS 13, *) {
  35. let appearance = UINavigationBarAppearance()
  36. appearance.backgroundColor = .systemBlue
  37. appearance.titleTextAttributes = [.foregroundColor: UIColor.white]
  38. appearance.largeTitleTextAttributes = [.foregroundColor: UIColor.white]
  39. navigationController?.navigationBar.tintColor = .white
  40. navigationController?.navigationBar.standardAppearance = appearance
  41. navigationController?.navigationBar.compactAppearance = appearance
  42. navigationController?.navigationBar.scrollEdgeAppearance = appearance
  43. }
  44. }
  45. @objc func openMenu(_ sender: Any) {
  46. let menu = storyboard!.instantiateViewController(withIdentifier: "SideMenuNavigationController") as! SideMenuNavigationController
  47. present(menu, animated: true, completion: nil)
  48. }
  49. /*
  50. // MARK: - Navigation
  51. // In a storyboard-based application, you will often want to do a little preparation before navigation
  52. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  53. // Get the new view controller using segue.destination.
  54. // Pass the selected object to the new view controller.
  55. }
  56. */
  57. }
  58. extension DashboardViewController : UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
  59. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  60. return 4
  61. }
  62. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  63. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "SubMenuCollectionViewCell", for: indexPath as IndexPath) as! SubMenuCollectionViewCell
  64. cell.cardView()
  65. cell.imageView.image = UIImage(named: AppConstant.MENU_IMAGE[indexPath.row])
  66. cell.titleLabel.text = AppConstant.MENU_TITLE[indexPath.row]
  67. return cell
  68. }
  69. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  70. DispatchQueue.main.async {
  71. let subMenuVC = self.storyboard?.instantiateViewController(withIdentifier: "SubMenuViewController") as! SubMenuViewController
  72. subMenuVC.menu = indexPath.row
  73. self.navigationController?.pushViewController(subMenuVC, animated: true)
  74. //self.present(subMenuVC, animated: true, completion: nil)
  75. }
  76. }
  77. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
  78. return CGSize(width: (collectionView.frame.size.width-10)/2, height: 180)
  79. }
  80. }
  81. extension DashboardViewController : UIGestureRecognizerDelegate {
  82. func disableSwipeToPop() {
  83. self.navigationController?.interactivePopGestureRecognizer?.isEnabled = true
  84. self.navigationController?.interactivePopGestureRecognizer?.delegate = self
  85. }
  86. func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool {
  87. if gestureRecognizer == self.navigationController?.interactivePopGestureRecognizer {
  88. return false
  89. }
  90. return true
  91. }
  92. }