LessonViewController.swift 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. //
  2. // LessonViewController.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 24/08/22.
  6. //
  7. import UIKit
  8. import Toast_Swift
  9. class LessonViewController: UIViewController {
  10. @IBOutlet var navigationBar: UINavigationBar!
  11. @IBOutlet var lessonNameLabel: UILabel!
  12. @IBOutlet var lessonsTableView: UITableView!
  13. var viewModel = LessonViewModel()
  14. var lessonModel = [LessonModel]()
  15. var unitId = Int()
  16. var interventionId = Int()
  17. var interventionLevelId = Int()
  18. var lessonName = String()
  19. override func viewDidLoad() {
  20. super.viewDidLoad()
  21. // Do any additional setup after loading the view.
  22. setupData()
  23. viewModel.delegate = self
  24. lessonsTableView.delegate = self
  25. lessonsTableView.dataSource = self
  26. getLessons()
  27. }
  28. func setupData() {
  29. lessonNameLabel.text = "\(lessonName) ->"
  30. }
  31. func getLessons() {
  32. if Reachability.isConnectedToNetwork() {
  33. viewModel.getLessons(interventionId: interventionId, interventionLevelId: interventionLevelId, unitId: unitId)
  34. } else {
  35. Alert.showInternetFailureAlert(on: self)
  36. }
  37. }
  38. /*
  39. // MARK: - Navigation
  40. // In a storyboard-based application, you will often want to do a little preparation before navigation
  41. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  42. // Get the new view controller using segue.destination.
  43. // Pass the selected object to the new view controller.
  44. }
  45. */
  46. @IBAction func backAction(_ sender: UIBarButtonItem) {
  47. self.navigationController?.popViewController(animated: true)
  48. }
  49. }
  50. extension LessonViewController: UITableViewDelegate, UITableViewDataSource {
  51. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  52. return lessonModel.count
  53. }
  54. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  55. guard let cell = tableView.dequeueReusableCell(withIdentifier: "LessonTableViewCell", for: indexPath) as? LessonTableViewCell else {
  56. return UITableViewCell()
  57. }
  58. cell.selectionStyle = .none
  59. cell.customCellView.layer.cornerRadius = 10
  60. cell.customCellView.dropShadow()
  61. cell.lessonNameLabel.text = "Lesson \(indexPath.row + 1): \(lessonModel[indexPath.row].name ?? "")"
  62. return cell
  63. }
  64. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  65. let vc = self.storyboard?.instantiateViewController(withIdentifier: "LessonListViewController") as! LessonListViewController
  66. vc.lessonId = lessonModel[indexPath.row].id ?? 0
  67. vc.contentName = "\(lessonName) : " + "Lesson \(indexPath.row + 1): \(lessonModel[indexPath.row].name ?? "")"
  68. self.navigationController?.pushViewController(vc, animated: true)
  69. }
  70. }
  71. extension LessonViewController: LessonProtocol {
  72. func startLoader() {
  73. ActivityIndicator.start()
  74. }
  75. func stopLoader() {
  76. ActivityIndicator.stop()
  77. }
  78. func showError(error: String) {
  79. self.view.makeToast(error)
  80. }
  81. func lessonModel(model: [LessonModel]) {
  82. self.lessonModel = model
  83. self.lessonsTableView.reloadData()
  84. }
  85. }