SideMenuViewController.swift 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. //
  2. // SideMenuViewController.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 31/08/22.
  6. //
  7. import UIKit
  8. class SideMenuViewController: UIViewController {
  9. @IBOutlet weak var menuTableView: UITableView!
  10. @IBOutlet var logoutButton: UIButton!
  11. let userData = DBManager.sharedInstance.database.objects(UserDetailsModel.self)
  12. var activeIndexPath: Int?
  13. override func viewDidLoad() {
  14. super.viewDidLoad()
  15. // Do any additional setup after loading the view.
  16. setupUI()
  17. if let retrievedValue = UserDefaults.standard.value(forKey: "menuActiveIndex") {
  18. // Use the retrieved value
  19. print("Retrieved value: \(retrievedValue)")
  20. activeIndexPath = retrievedValue as? Int
  21. } else {
  22. // The key "myKey" does not exist in UserDefaults
  23. print("Value not found in UserDefaults")
  24. }
  25. menuTableView.delegate = self
  26. menuTableView.dataSource = self
  27. menuTableView.tableFooterView = UIView()
  28. }
  29. func setupUI() {
  30. logoutButton.layer.cornerRadius = 15
  31. }
  32. @objc func dismissMenu(sender: UIButton) {
  33. dismiss(animated: true, completion: nil)
  34. }
  35. /*
  36. // MARK: - Navigation
  37. // In a storyboard-based application, you will often want to do a little preparation before navigation
  38. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  39. // Get the new view controller using segue.destination.
  40. // Pass the selected object to the new view controller.
  41. }
  42. */
  43. @IBAction func logoutAction(_ sender: Any) {
  44. UserDefaults.standard.set(false, forKey: "isLogin")
  45. UserDefaults.standard.synchronize()
  46. let vc = self.storyboard?.instantiateViewController(withIdentifier: "LoginViewController") as! LoginViewController
  47. self.navigationController?.pushViewController(vc, animated: false)
  48. }
  49. }
  50. extension SideMenuViewController: UITableViewDelegate, UITableViewDataSource {
  51. // MARK: - Table View Data Source
  52. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  53. return 3
  54. }
  55. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  56. if indexPath.row == 0 {
  57. guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuHeaderTableViewCell", for: indexPath) as? MenuHeaderTableViewCell else {
  58. return UITableViewCell()
  59. }
  60. cell.userNameLabel.text = userData[0].name
  61. cell.appVersionLabel.text = "v\(UIApplication.version)"
  62. cell.cancelButton.addTarget(self, action: #selector(dismissMenu(sender:)), for: .touchUpInside)
  63. return cell
  64. }
  65. // else if indexPath.row == 1 {
  66. // guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuTableViewCell", for: indexPath) as? MenuTableViewCell else {
  67. // return UITableViewCell()
  68. // }
  69. // cell.menuIconImageView.image = UIImage(systemName: "house")
  70. // cell.menuNameLabel.text = "Dashboard"
  71. // return cell
  72. // }
  73. // else if indexPath.row == 1 {
  74. // guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuTableViewCell", for: indexPath) as? MenuTableViewCell else {
  75. // return UITableViewCell()
  76. // }
  77. // if activeIndexPath == 1 {
  78. // cell.customView.backgroundColor = #colorLiteral(red: 0.1058823529, green: 0.3764705882, blue: 0.5960784314, alpha: 1) // Set the background color for the active cell
  79. // } else {
  80. // cell.customView.backgroundColor = #colorLiteral(red: 0.05099999905, green: 0.2980000079, blue: 0.5329999924, alpha: 1) // Set the default background color for other cells
  81. // }
  82. // cell.menuIconImageView.image = UIImage(systemName: "calendar")
  83. // cell.menuNameLabel.text = "Calendar"
  84. // return cell
  85. // } else if indexPath.row == 2 {
  86. // guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuTableViewCell", for: indexPath) as? MenuTableViewCell else {
  87. // return UITableViewCell()
  88. // }
  89. // if activeIndexPath == 2 {
  90. // cell.customView.backgroundColor = #colorLiteral(red: 0.1058823529, green: 0.3764705882, blue: 0.5960784314, alpha: 1) // Set the background color for the active cell
  91. // } else {
  92. // cell.customView.backgroundColor = #colorLiteral(red: 0.05099999905, green: 0.2980000079, blue: 0.5329999924, alpha: 1) // Set the default background color for other cells
  93. // }
  94. // cell.menuIconImageView.image = UIImage(systemName: "list.bullet.rectangle.portrait")
  95. // cell.menuNameLabel.text = "Session List"
  96. // return cell
  97. // }
  98. else if indexPath.row == 1 {
  99. guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuTableViewCell", for: indexPath) as? MenuTableViewCell else {
  100. return UITableViewCell()
  101. }
  102. if activeIndexPath == 1 {
  103. cell.customView.backgroundColor = #colorLiteral(red: 0.1058823529, green: 0.3764705882, blue: 0.5960784314, alpha: 1) // Set the background color for the active cell
  104. } else {
  105. cell.customView.backgroundColor = #colorLiteral(red: 0.05099999905, green: 0.2980000079, blue: 0.5329999924, alpha: 1) // Set the default background color for other cells
  106. }
  107. cell.menuIconImageView.image = UIImage(systemName: "book")
  108. cell.menuNameLabel.text = " Study Materials"
  109. return cell
  110. }
  111. else if indexPath.row == 2 {
  112. guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuTableViewCell", for: indexPath) as? MenuTableViewCell else {
  113. return UITableViewCell()
  114. }
  115. if activeIndexPath == 2 {
  116. cell.customView.backgroundColor = #colorLiteral(red: 0.1058823529, green: 0.3764705882, blue: 0.5960784314, alpha: 1) // Set the background color for the active cell
  117. } else {
  118. cell.customView.backgroundColor = #colorLiteral(red: 0.05099999905, green: 0.2980000079, blue: 0.5329999924, alpha: 1) // Set the default background color for other cells
  119. }
  120. cell.menuIconImageView.image = UIImage(systemName: "chart.bar.xaxis")
  121. cell.menuNameLabel.text = " Assessment"
  122. return cell
  123. }
  124. else {
  125. guard let cell = tableView.dequeueReusableCell(withIdentifier: "MenuTableViewCell", for: indexPath) as? MenuTableViewCell else {
  126. return UITableViewCell()
  127. }
  128. if activeIndexPath == 3 {
  129. cell.customView.backgroundColor = #colorLiteral(red: 0.1058823529, green: 0.3764705882, blue: 0.5960784314, alpha: 1) // Set the background color for the active cell
  130. } else {
  131. cell.customView.backgroundColor = #colorLiteral(red: 0.05099999905, green: 0.2980000079, blue: 0.5329999924, alpha: 1) // Set the default background color for other cells
  132. }
  133. cell.menuIconImageView.image = UIImage(systemName: "pencil.and.list.clipboard")
  134. cell.menuNameLabel.text = " Final Exam"
  135. return cell
  136. }
  137. }
  138. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  139. tableView.reloadData()
  140. if indexPath.row == 0 {
  141. tableView.deselectRow(at: indexPath, animated: true)
  142. }
  143. // else if indexPath.row == 1 {
  144. // let vc = self.storyboard?.instantiateViewController(withIdentifier: "DashboardViewController") as! DashboardViewController
  145. //
  146. // self.navigationController?.pushViewController(vc, animated: false)
  147. // }
  148. // else if indexPath.row == 1 {
  149. // UserDefaults.standard.set(1, forKey: "menuActiveIndex")
  150. // UserDefaults.standard.synchronize()
  151. // let vc = self.storyboard?.instantiateViewController(withIdentifier: "CalendarViewController") as! CalendarViewController
  152. //
  153. // self.navigationController?.pushViewController(vc, animated: false)
  154. // }
  155. // else if indexPath.row == 2 {
  156. // UserDefaults.standard.set(2, forKey: "menuActiveIndex")
  157. // UserDefaults.standard.synchronize()
  158. // let vc = self.storyboard?.instantiateViewController(withIdentifier: "SessionListViewController") as! SessionListViewController
  159. //
  160. // self.navigationController?.pushViewController(vc, animated: false)
  161. // }
  162. else if indexPath.row == 1 {
  163. UserDefaults.standard.set(1, forKey: "menuActiveIndex")
  164. UserDefaults.standard.synchronize()
  165. let vc = self.storyboard?.instantiateViewController(withIdentifier: "StudyMaterialsViewController") as! StudyMaterialsViewController
  166. self.navigationController?.pushViewController(vc, animated: false)
  167. }
  168. else if indexPath.row == 2 {
  169. UserDefaults.standard.set(2, forKey: "menuActiveIndex")
  170. UserDefaults.standard.synchronize()
  171. let vc = self.storyboard?.instantiateViewController(withIdentifier: "NewAssessmentViewController") as! NewAssessmentViewController
  172. self.navigationController?.pushViewController(vc, animated: false)
  173. }
  174. else {
  175. UserDefaults.standard.set(3, forKey: "menuActiveIndex")
  176. UserDefaults.standard.synchronize()
  177. let vc = self.storyboard?.instantiateViewController(withIdentifier: "AssessmentBeneficiaryViewController") as! AssessmentBeneficiaryViewController
  178. self.navigationController?.pushViewController(vc, animated: false)
  179. }
  180. }
  181. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  182. if indexPath.row == 0 {
  183. return 100
  184. }
  185. // else if indexPath.row == 1 {
  186. // return 64
  187. // }
  188. // else if indexPath.row == 1 {
  189. // return 64
  190. // } else if indexPath.row == 2 {
  191. // return 64
  192. // }
  193. else if indexPath.row == 1 {
  194. return 64
  195. }
  196. else if indexPath.row == 2 {
  197. return 64
  198. }
  199. else {
  200. return 64
  201. }
  202. }
  203. }