LessonListViewController.swift 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. //
  2. // LessonListViewController.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 24/08/22.
  6. //
  7. import UIKit
  8. import SideMenu
  9. import Toast_Swift
  10. class LessonListViewController: UIViewController {
  11. @IBOutlet var navigationBar: UINavigationBar!
  12. @IBOutlet var contentNameLabel: UILabel!
  13. @IBOutlet var contentListTableView: UITableView!
  14. var viewModel = LessonListViewModel()
  15. var lessonListModel = [LessonListModel]()
  16. var lessonId = Int()
  17. var contentName = String()
  18. override func viewDidLoad() {
  19. super.viewDidLoad()
  20. // Do any additional setup after loading the view.
  21. viewModel.delegate = self
  22. contentListTableView.delegate = self
  23. contentListTableView.dataSource = self
  24. getLessonList()
  25. setupData()
  26. }
  27. func setupData() {
  28. contentNameLabel.text = "\(contentName) ->"
  29. }
  30. func getLessonList() {
  31. if Reachability.isConnectedToNetwork() {
  32. viewModel.getLessonsList(id: lessonId)
  33. } else {
  34. Alert.showInternetFailureAlert(on: self)
  35. }
  36. }
  37. /*
  38. // MARK: - Navigation
  39. // In a storyboard-based application, you will often want to do a little preparation before navigation
  40. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  41. // Get the new view controller using segue.destination.
  42. // Pass the selected object to the new view controller.
  43. }
  44. */
  45. @IBAction func backAction(_ sender: UIBarButtonItem) {
  46. self.navigationController?.popViewController(animated: true)
  47. }
  48. }
  49. extension LessonListViewController: UITableViewDelegate, UITableViewDataSource {
  50. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  51. return lessonListModel.count
  52. }
  53. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  54. guard let cell = tableView.dequeueReusableCell(withIdentifier: "ContentListTableViewCell", for: indexPath) as? ContentListTableViewCell else {
  55. return UITableViewCell()
  56. }
  57. cell.selectionStyle = .none
  58. cell.customView.dropShadow()
  59. cell.customView.layer.cornerRadius = 10
  60. switch lessonListModel[indexPath.row].type {
  61. case "scorm":
  62. cell.contentImageView.image = UIImage(named: "scorn-test")
  63. case "pdf":
  64. cell.contentImageView.image = UIImage(named: "pdf")
  65. case "jpeg":
  66. cell.contentImageView.image = UIImage(named: "jpg")
  67. case "mp4":
  68. cell.contentImageView.image = UIImage(named: "video")
  69. case "youtube":
  70. cell.contentImageView.image = UIImage(named: "video")
  71. case "mp3":
  72. cell.contentImageView.image = UIImage(named: "mp3")
  73. case "docx":
  74. cell.contentImageView.image = UIImage(named: "docx")
  75. default:
  76. cell.contentImageView.image = UIImage(named: "docx")
  77. }
  78. cell.contentLabel.text = lessonListModel[indexPath.row].name
  79. return cell
  80. }
  81. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  82. switch lessonListModel[indexPath.row].type {
  83. case "mp4":
  84. let vc = self.storyboard?.instantiateViewController(withIdentifier: "VideoViewController") as! VideoViewController
  85. vc.videoId = lessonListModel[indexPath.row].fileId ?? ""
  86. vc.pageName = lessonListModel[indexPath.row].name ?? ""
  87. self.navigationController?.pushViewController(vc, animated: true)
  88. case "youtube":
  89. let vc = self.storyboard?.instantiateViewController(withIdentifier: "YouTubeViewController") as! YouTubeViewController
  90. vc.youtubeId = lessonListModel[indexPath.row].fileId ?? ""
  91. vc.pageName = lessonListModel[indexPath.row].name ?? ""
  92. self.navigationController?.pushViewController(vc, animated: true)
  93. case "mp3":
  94. let vc = self.storyboard?.instantiateViewController(withIdentifier: "AudioViewController") as! AudioViewController
  95. vc.fileId = lessonListModel[indexPath.row].fileId ?? ""
  96. vc.pageName = lessonListModel[indexPath.row].name ?? ""
  97. self.navigationController?.pushViewController(vc, animated: true)
  98. case "scorm":
  99. let vc = self.storyboard?.instantiateViewController(withIdentifier: "ScromViewController") as! ScromViewController
  100. vc.id = lessonListModel[indexPath.row].fileId ?? ""
  101. vc.docType = lessonListModel[indexPath.row].type ?? ""
  102. vc.name = lessonListModel[indexPath.row].name ?? ""
  103. self.navigationController?.pushViewController(vc, animated: true)
  104. default:
  105. let vc = self.storyboard?.instantiateViewController(withIdentifier: "PdfReaderViewController") as! PdfReaderViewController
  106. vc.id = lessonListModel[indexPath.row].fileId ?? ""
  107. vc.docType = lessonListModel[indexPath.row].type ?? ""
  108. vc.name = lessonListModel[indexPath.row].name ?? ""
  109. self.navigationController?.pushViewController(vc, animated: true)
  110. }
  111. }
  112. }
  113. extension LessonListViewController: LessonListProtocol {
  114. func startLoader() {
  115. ActivityIndicator.start()
  116. }
  117. func stopLoader() {
  118. ActivityIndicator.stop()
  119. }
  120. func showError(error: String) {
  121. self.view.makeToast(error)
  122. }
  123. func lessonListModel(model: [LessonListModel]) {
  124. self.lessonListModel = model
  125. self.contentListTableView.reloadData()
  126. }
  127. }