SubMenuViewController.swift 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. //
  2. // SubMenuViewController.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 13/11/21.
  6. //
  7. import UIKit
  8. import SideMenu
  9. class SubMenuViewController: UIViewController {
  10. @IBOutlet var subMenuCollectionView: UICollectionView!
  11. var menu = Int()
  12. override func viewDidLoad() {
  13. super.viewDidLoad()
  14. // Do any additional setup after loading the view.
  15. self.enableSwipeToPop()
  16. subMenuCollectionView.reloadData()
  17. }
  18. override func viewWillAppear(_ animated: Bool) {
  19. super.viewWillAppear(animated)
  20. navigationController?.navigationBar.barStyle = .black
  21. setupUI()
  22. }
  23. override var preferredStatusBarStyle: UIStatusBarStyle {
  24. return .lightContent
  25. }
  26. func setupUI() {
  27. self.navigationItem.title = AppConstant.MENU_TITLE[menu]
  28. self.navigationItem.hidesBackButton = true
  29. let menuBarButtonItem = UIBarButtonItem(image: UIImage(systemName: "line.3.horizontal"), style: .plain, target: self, action: #selector(openMenu))
  30. self.navigationItem.leftBarButtonItem = menuBarButtonItem
  31. if #available(iOS 13, *) {
  32. let appearance = UINavigationBarAppearance()
  33. appearance.backgroundColor = .systemBlue
  34. appearance.titleTextAttributes = [.foregroundColor: UIColor.white]
  35. appearance.largeTitleTextAttributes = [.foregroundColor: UIColor.white]
  36. navigationController?.navigationBar.tintColor = .white
  37. navigationController?.navigationBar.standardAppearance = appearance
  38. navigationController?.navigationBar.compactAppearance = appearance
  39. navigationController?.navigationBar.scrollEdgeAppearance = appearance
  40. }
  41. }
  42. @objc func openMenu(_ sender: Any) {
  43. let menu = storyboard!.instantiateViewController(withIdentifier: "SideMenuNavigationController") as! SideMenuNavigationController
  44. present(menu, animated: true, completion: nil)
  45. }
  46. /*
  47. // MARK: - Navigation
  48. // In a storyboard-based application, you will often want to do a little preparation before navigation
  49. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  50. // Get the new view controller using segue.destination.
  51. // Pass the selected object to the new view controller.
  52. }
  53. */
  54. }
  55. extension SubMenuViewController : UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
  56. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  57. switch menu {
  58. case 0:
  59. return 4
  60. case 1:
  61. return 7
  62. case 2:
  63. return 5
  64. case 3:
  65. return 2
  66. default:
  67. return 0
  68. }
  69. }
  70. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  71. guard let cell: SubMenuCollectionViewCell = collectionView.dequeueReusableCell(withReuseIdentifier: "SubMenuCollectionViewCell", for: indexPath) as? SubMenuCollectionViewCell else {
  72. return UICollectionViewCell()
  73. }
  74. switch menu {
  75. case 0:
  76. cell.cardView()
  77. cell.imageView.image = UIImage(named: AppConstant.SUB_MENU_IMAGE_1[indexPath.row])
  78. cell.titleLabel.text = AppConstant.SUB_MENU_TITLE_1[indexPath.row]
  79. case 1:
  80. cell.cardView()
  81. cell.imageView.image = UIImage(named: AppConstant.SUB_MENU_IMAGE_2[indexPath.row])
  82. cell.titleLabel.text = AppConstant.SUB_MENU_TITLE_2[indexPath.row]
  83. case 2:
  84. cell.cardView()
  85. cell.imageView.image = UIImage(named: AppConstant.SUB_MENU_IMAGE_3[indexPath.row])
  86. cell.titleLabel.text = AppConstant.SUB_MENU_TITLE_3[indexPath.row]
  87. case 3:
  88. cell.cardView()
  89. cell.imageView.image = UIImage(named: AppConstant.SUB_MENU_IMAGE_4[indexPath.row])
  90. cell.titleLabel.text = AppConstant.SUB_MENU_TITLE_4[indexPath.row]
  91. default:
  92. break
  93. }
  94. return cell
  95. }
  96. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  97. switch menu {
  98. case 0:
  99. switch indexPath.row {
  100. case 0:
  101. DispatchQueue.main.async {
  102. let fixedDepositVC = self.storyboard?.instantiateViewController(withIdentifier: "FixedDepositViewController") as! FixedDepositViewController
  103. fixedDepositVC.menu = self.menu
  104. self.navigationController?.pushViewController(fixedDepositVC, animated: true)
  105. }
  106. case 1:
  107. DispatchQueue.main.async {
  108. let bankRecurringVC = self.storyboard?.instantiateViewController(withIdentifier: "BankRecurringViewController") as! BankRecurringViewController
  109. bankRecurringVC.menu = self.menu
  110. self.navigationController?.pushViewController(bankRecurringVC, animated: true)
  111. }
  112. case 2:
  113. DispatchQueue.main.async {
  114. let bondVC = self.storyboard?.instantiateViewController(withIdentifier: "BondDebenturesViewController") as! BondDebenturesViewController
  115. bondVC.menu = self.menu
  116. self.navigationController?.pushViewController(bondVC, animated: true)
  117. }
  118. case 3:
  119. DispatchQueue.main.async {
  120. let cpcdVC = self.storyboard?.instantiateViewController(withIdentifier: "CpCdViewController") as! CpCdViewController
  121. cpcdVC.menu = self.menu
  122. self.navigationController?.pushViewController(cpcdVC, animated: true)
  123. }
  124. default:
  125. break
  126. }
  127. case 1:
  128. switch indexPath.row {
  129. case 0:
  130. DispatchQueue.main.async {
  131. let poNSCVC = self.storyboard?.instantiateViewController(withIdentifier: "PONationalSavingViewController") as! PONationalSavingViewController
  132. poNSCVC.menu = self.menu
  133. self.navigationController?.pushViewController(poNSCVC, animated: true)
  134. }
  135. case 1:
  136. DispatchQueue.main.async {
  137. let kvpVC = self.storyboard?.instantiateViewController(withIdentifier: "KisanVikasPatraViewController") as! KisanVikasPatraViewController
  138. kvpVC.menu = self.menu
  139. self.navigationController?.pushViewController(kvpVC, animated: true)
  140. }
  141. case 2:
  142. DispatchQueue.main.async {
  143. let pomisVC = self.storyboard?.instantiateViewController(withIdentifier: "POMonthlyIncomeSchemeViewController") as! POMonthlyIncomeSchemeViewController
  144. pomisVC.menu = self.menu
  145. self.navigationController?.pushViewController(pomisVC, animated: true)
  146. }
  147. case 3:
  148. DispatchQueue.main.async {
  149. let poRecurringVC = self.storyboard?.instantiateViewController(withIdentifier: "PORecurringDepositViewController") as! PORecurringDepositViewController
  150. poRecurringVC.menu = self.menu
  151. self.navigationController?.pushViewController(poRecurringVC, animated: true)
  152. }
  153. case 4:
  154. DispatchQueue.main.async {
  155. let poTimeVC = self.storyboard?.instantiateViewController(withIdentifier: "POTimeDepositViewController") as! POTimeDepositViewController
  156. poTimeVC.menu = self.menu
  157. self.navigationController?.pushViewController(poTimeVC, animated: true)
  158. }
  159. case 5:
  160. DispatchQueue.main.async {
  161. let sukanyaVC = self.storyboard?.instantiateViewController(withIdentifier: "SukanyaSamriddhiViewController") as! SukanyaSamriddhiViewController
  162. sukanyaVC.menu = self.menu
  163. self.navigationController?.pushViewController(sukanyaVC, animated: true)
  164. }
  165. case 6:
  166. DispatchQueue.main.async {
  167. let scssVC = self.storyboard?.instantiateViewController(withIdentifier: "SeniorCitizenSavingViewController") as! SeniorCitizenSavingViewController
  168. scssVC.menu = self.menu
  169. self.navigationController?.pushViewController(scssVC, animated: true)
  170. }
  171. default:
  172. break
  173. }
  174. case 2:
  175. switch indexPath.row {
  176. case 0:
  177. DispatchQueue.main.async {
  178. let ppfVC = self.storyboard?.instantiateViewController(withIdentifier: "PublicProvidentViewController") as! PublicProvidentViewController
  179. ppfVC.menu = self.menu
  180. self.navigationController?.pushViewController(ppfVC, animated: true)
  181. }
  182. case 1:
  183. DispatchQueue.main.async {
  184. let epfVC = self.storyboard?.instantiateViewController(withIdentifier: "EPFViewController") as! EPFViewController
  185. epfVC.menu = self.menu
  186. self.navigationController?.pushViewController(epfVC, animated: true)
  187. }
  188. case 2:
  189. break
  190. case 3:
  191. break
  192. case 4:
  193. break
  194. default:
  195. break
  196. }
  197. case 3:
  198. switch indexPath.row {
  199. case 0:
  200. DispatchQueue.main.async {
  201. let emiLoanVC = self.storyboard?.instantiateViewController(withIdentifier: "EMILoanViewController") as! EMILoanViewController
  202. emiLoanVC.menu = self.menu
  203. self.navigationController?.pushViewController(emiLoanVC, animated: true)
  204. }
  205. case 1:
  206. DispatchQueue.main.async {
  207. let nonEMIVC = self.storyboard?.instantiateViewController(withIdentifier: "NonEMIViewController") as! NonEMIViewController
  208. nonEMIVC.menu = self.menu
  209. self.navigationController?.pushViewController(nonEMIVC, animated: true)
  210. }
  211. default:
  212. break
  213. }
  214. default:
  215. break
  216. }
  217. }
  218. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
  219. return CGSize(width: (collectionView.frame.size.width-10)/2, height: 180)
  220. }
  221. }
  222. extension SubMenuViewController {
  223. func enableSwipeToPop() {
  224. self.navigationController?.interactivePopGestureRecognizer?.isEnabled = true
  225. self.navigationController?.interactivePopGestureRecognizer?.delegate = nil
  226. }
  227. }