SideMenuViewController.swift 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. //
  2. // SideMenuViewController.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 13/08/21.
  6. //
  7. import UIKit
  8. import GoogleSignIn
  9. class SideMenuViewController: UIViewController {
  10. @IBOutlet weak var menuTableView: UITableView!
  11. override func viewDidLoad() {
  12. super.viewDidLoad()
  13. // Do any additional setup after loading the view.
  14. menuTableView.delegate = self
  15. menuTableView.dataSource = self
  16. menuTableView.tableFooterView = UIView()
  17. }
  18. @objc func dismissMenu(sender: UIButton) {
  19. dismiss(animated: true, completion: nil)
  20. }
  21. /*
  22. // MARK: - Navigation
  23. // In a storyboard-based application, you will often want to do a little preparation before navigation
  24. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  25. // Get the new view controller using segue.destination.
  26. // Pass the selected object to the new view controller.
  27. }
  28. */
  29. }
  30. extension SideMenuViewController: UITableViewDelegate, UITableViewDataSource {
  31. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  32. return 9
  33. }
  34. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  35. if indexPath.row == 0 {
  36. guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuHeaderTableViewCell", for: indexPath) as? MenuHeaderTableViewCell else {
  37. return UITableViewCell()
  38. }
  39. cell.dismissMenuButton.addTarget(self, action: #selector(dismissMenu(sender:)), for: .touchUpInside)
  40. return cell
  41. } else if indexPath.row == 1 {
  42. guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuHomeTableViewCell", for: indexPath) as? MenuHomeTableViewCell else {
  43. return UITableViewCell()
  44. }
  45. cell.homeMenuLabel.text = Helper.translateText(inputText: "Home")
  46. return cell
  47. } else if indexPath.row == 2 {
  48. guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuLearnAboutFinanceTableViewCell", for: indexPath) as? MenuLearnAboutFinanceTableViewCell else {
  49. return UITableViewCell()
  50. }
  51. cell.learnAboutFinanceMenuLabel.text = Helper.translateText(inputText: "Learn About Finance")
  52. return cell
  53. } else if indexPath.row == 3 {
  54. guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuCertificationTableViewCell", for: indexPath) as? MenuCertificationTableViewCell else {
  55. return UITableViewCell()
  56. }
  57. cell.certificationMenuLabel.text = Helper.translateText(inputText: "Monthly Quiz")
  58. return cell
  59. } else if indexPath.row == 4 {
  60. guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuScoreboardTableViewCell", for: indexPath) as? MenuScoreboardTableViewCell else {
  61. return UITableViewCell()
  62. }
  63. cell.scoreboardMenuLabel.text = Helper.translateText(inputText: "Scoreboard")
  64. return cell
  65. } else if indexPath.row == 5 {
  66. guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuWebinarTableViewCell", for: indexPath) as? MenuWebinarTableViewCell else {
  67. return UITableViewCell()
  68. }
  69. cell.webinarMenuLabel.text = Helper.translateText(inputText: "Webinar")
  70. return cell
  71. } else if indexPath.row == 6 {
  72. guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuChangeLanguageTableViewCell", for: indexPath) as? MenuChangeLanguageTableViewCell else {
  73. return UITableViewCell()
  74. }
  75. cell.changeLanguageMenuLabel.text = Helper.translateText(inputText: "Change Language")
  76. return cell
  77. } else if indexPath.row == 7 {
  78. guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuEditProfileTableViewCell", for: indexPath) as? MenuEditProfileTableViewCell else {
  79. return UITableViewCell()
  80. }
  81. cell.editProfileMenuLabel.text = Helper.translateText(inputText: "Edit Profile")
  82. return cell
  83. } else {
  84. guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuLogoutTableViewCell", for: indexPath) as? MenuLogoutTableViewCell else {
  85. return UITableViewCell()
  86. }
  87. cell.logoutMenuLabel.text = Helper.translateText(inputText: "Logout")
  88. return cell
  89. }
  90. }
  91. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  92. if indexPath.row == 0 {
  93. tableView.deselectRow(at: indexPath, animated: true)
  94. } else if indexPath.row == 1 {
  95. DispatchQueue.main.async {
  96. let learningModuleVC = self.storyboard?.instantiateViewController(withIdentifier: "DashboardViewController") as! DashboardViewController
  97. self.navigationController?.pushViewController(learningModuleVC, animated: false)
  98. }
  99. } else if indexPath.row == 2 {
  100. DispatchQueue.main.async {
  101. let learningModuleVC = self.storyboard?.instantiateViewController(withIdentifier: "LearningModulesViewController") as! LearningModulesViewController
  102. self.navigationController?.pushViewController(learningModuleVC, animated: false)
  103. }
  104. } else if indexPath.row == 3 {
  105. // DispatchQueue.main.async {
  106. // let learningModuleVC = self.storyboard?.instantiateViewController(withIdentifier: "CertificationTestViewController") as! CertificationTestViewController
  107. //
  108. // self.navigationController?.pushViewController(learningModuleVC, animated: false)
  109. // }
  110. } else if indexPath.row == 4 {
  111. DispatchQueue.main.async {
  112. let learningModuleVC = self.storyboard?.instantiateViewController(withIdentifier: "ScoreboardViewController") as! ScoreboardViewController
  113. self.navigationController?.pushViewController(learningModuleVC, animated: false)
  114. }
  115. } else if indexPath.row == 5 {
  116. tableView.deselectRow(at: indexPath, animated: true)
  117. } else if indexPath.row == 6 {
  118. DispatchQueue.main.async {
  119. let selectLanguageVC = self.storyboard?.instantiateViewController(withIdentifier:"SelectLanguageViewController" ) as! SelectLanguageViewController
  120. self.navigationController?.pushViewController(selectLanguageVC, animated: true)
  121. }
  122. } else if indexPath.row == 7 {
  123. DispatchQueue.main.async {
  124. let userDetailsVC = self.storyboard?.instantiateViewController(withIdentifier:"UserDetailsViewController" ) as! UserDetailsViewController
  125. userDetailsVC.pageMode = "Profile"
  126. self.navigationController?.pushViewController(userDetailsVC, animated: true)
  127. //self.present(userDetailsVC, animated: true, completion: nil)
  128. }
  129. } else {
  130. if Reachability.isConnectedToNetwork() {
  131. GIDSignIn.sharedInstance.signOut()
  132. // Show the app's signed-out state.
  133. DispatchQueue.main.async {
  134. let loginVC = self.storyboard?.instantiateViewController(withIdentifier:"LoginViewController" ) as! LoginViewController
  135. self.navigationController?.pushViewController(loginVC, animated: true)
  136. }
  137. } else {
  138. Alert.showInternetFailureAlert(on: self)
  139. }
  140. }
  141. }
  142. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  143. if indexPath.row == 0 {
  144. return 121
  145. } else if indexPath.row == 1 {
  146. return 64
  147. } else if indexPath.row == 2 {
  148. return 64
  149. } else if indexPath.row == 3 {
  150. return 64
  151. } else if indexPath.row == 4 {
  152. return 64
  153. } else if indexPath.row == 5 {
  154. return 64
  155. } else if indexPath.row == 6 {
  156. return 64
  157. } else if indexPath.row == 7 {
  158. return 64
  159. } else {
  160. return 64
  161. }
  162. }
  163. }