LearningModulesViewController.swift 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. //
  2. // LearningModulesViewController.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 13/09/21.
  6. //
  7. import UIKit
  8. import SideMenu
  9. class LearningModulesViewController: UIViewController {
  10. @IBOutlet var learningModuleTableView: UITableView!
  11. @IBOutlet var navigationBar: UINavigationBar!
  12. @IBOutlet var optionView: UIView!
  13. @IBOutlet var topicHeadingLabel: UILabel!
  14. @IBOutlet var topicsTableView: UITableView!
  15. @IBOutlet var topicsTableHeightConstraint: NSLayoutConstraint!
  16. let levelData = DBManager.sharedInstance.database.objects(LevelModel.self)
  17. var index = 0
  18. override func viewDidLoad() {
  19. super.viewDidLoad()
  20. // Do any additional setup after loading the view.
  21. learningModuleTableView.delegate = self
  22. learningModuleTableView.dataSource = self
  23. learningModuleTableView.tableFooterView = UIView()
  24. topicsTableView.delegate = self
  25. topicsTableView.dataSource = self
  26. topicsTableView.tableFooterView = UIView()
  27. topicsTableView.layer.cornerRadius = 15
  28. optionView.isHidden = true
  29. print(levelData.count)
  30. for level in levelData {
  31. if level.name != "Introduction" {
  32. print("Level name: \(level.name)")
  33. }
  34. }
  35. }
  36. override func viewWillAppear(_ animated: Bool) {
  37. learningModuleTableView.reloadData()
  38. topicsTableView.reloadData()
  39. self.topicsTableView.layoutIfNeeded()
  40. self.topicsTableView.heightAnchor.constraint(equalToConstant: self.topicsTableView.contentSize.height).isActive = true
  41. navigationBar.topItem?.title = Helper.translateText(inputText: "Learning Modules")
  42. }
  43. func convertBytesToImage(byteString: String) -> UIImage? {
  44. let strings = byteString.components(separatedBy: ",")
  45. var bytes = [UInt8]()
  46. for i in 0..<strings.count {
  47. if let signedByte = Int8(strings[i]) {
  48. bytes.append(UInt8(bitPattern: signedByte))
  49. } else {
  50. // Do something with this error condition
  51. }
  52. }
  53. let imageData: NSData = NSData(bytes: bytes, length: bytes.count)
  54. return UIImage(data: imageData as Data)
  55. }
  56. func getTopicName(id:Int) -> String {
  57. let topicData = DBManager.sharedInstance.database.objects(TopicModel.self)
  58. var name = ""
  59. for item in topicData {
  60. if id == item.id {
  61. name = item.name
  62. break
  63. }
  64. }
  65. return name
  66. }
  67. /*
  68. // MARK: - Navigation
  69. // In a storyboard-based application, you will often want to do a little preparation before navigation
  70. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  71. // Get the new view controller using segue.destination.
  72. // Pass the selected object to the new view controller.
  73. }
  74. */
  75. @IBAction func menuNavAction(_ sender: Any) {
  76. let menu = storyboard!.instantiateViewController(withIdentifier: "SideMenuNavigationController") as! SideMenuNavigationController
  77. present(menu, animated: true, completion: nil)
  78. }
  79. @IBAction func dismissOptionViewAction(_ sender: Any) {
  80. optionView.isHidden = true
  81. }
  82. }
  83. extension LearningModulesViewController: UITableViewDelegate, UITableViewDataSource {
  84. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  85. if tableView == learningModuleTableView {
  86. return levelData.count
  87. } else {
  88. print("Index: \(index)")
  89. print("Count: \(levelData[index])")
  90. return levelData[index].topics.count
  91. }
  92. }
  93. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  94. if tableView == learningModuleTableView {
  95. guard let cell = tableView.dequeueReusableCell(withIdentifier: "LearningModulesTableViewCell", for: indexPath) as? LearningModulesTableViewCell else {
  96. return UITableViewCell()
  97. }
  98. if levelData[indexPath.row].name == "Introduction" {
  99. cell.isHidden = true
  100. } else {
  101. cell.headLabel.text = Helper.translateText(inputText: levelData[indexPath.row].name)
  102. cell.contentLabel.text = Helper.translateText(inputText: Constant.learningModuleContentArray[indexPath.row])
  103. let strFetched = levelData[indexPath.row].iconBytes
  104. cell.itemImageView.image = convertBytesToImage(byteString: strFetched)
  105. }
  106. return cell
  107. } else {
  108. guard let cell = tableView.dequeueReusableCell(withIdentifier: "OptionsTableViewCell", for: indexPath) as? OptionsTableViewCell else {
  109. return UITableViewCell()
  110. }
  111. cell.optionTitleLabel.text = Helper.translateText(inputText: getTopicName(id: levelData[index].topics[indexPath.row].id))
  112. return cell
  113. }
  114. }
  115. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  116. DispatchQueue.main.async { [self] in
  117. if tableView == learningModuleTableView {
  118. self.index = indexPath.row
  119. self.topicHeadingLabel.text = Helper.translateText(inputText: levelData[index].name)
  120. topicsTableView.reloadData()
  121. optionView.isHidden = false
  122. } else {
  123. let introVC = self.storyboard?.instantiateViewController(withIdentifier: "IntroductionViewController") as! IntroductionViewController
  124. introVC.topicName = getTopicName(id: levelData[index].topics[indexPath.row].id)
  125. introVC.topicId = levelData[index].topics[indexPath.row].id
  126. introVC.mainTopicIndex = index
  127. introVC.topicIndex = indexPath.row
  128. self.navigationController?.pushViewController(introVC, animated: false)
  129. }
  130. }
  131. }
  132. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  133. var rowHeight:CGFloat = 0.0
  134. if tableView == learningModuleTableView {
  135. if levelData[indexPath.row].name == "Introduction" {
  136. rowHeight = 0.0
  137. } else {
  138. rowHeight = 160.0 //or whatever you like
  139. }
  140. } else {
  141. rowHeight = UITableView.automaticDimension
  142. }
  143. return rowHeight
  144. }
  145. func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
  146. if tableView == learningModuleTableView {
  147. } else {
  148. self.topicsTableHeightConstraint.constant = self.topicsTableView.contentSize.height
  149. tableView.layoutIfNeeded()
  150. }
  151. }
  152. }