InstructionViewController.swift 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. //
  2. // InstructionViewController.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 24/08/22.
  6. //
  7. import UIKit
  8. class InstructionViewController: UIViewController {
  9. @IBOutlet var instructionTableView: UITableView!
  10. var assessmentType = String()
  11. var assessmentId = Int()
  12. var assessmentName = String()
  13. var quizInstruction = [String]()
  14. var quizTime = Int()
  15. var quesCount = Int()
  16. var viewModel = InstructionViewModel()
  17. override func viewDidLoad() {
  18. super.viewDidLoad()
  19. // Do any additional setup after loading the view.
  20. instructionTableView.delegate = self
  21. instructionTableView.dataSource = self
  22. setupData()
  23. }
  24. override func viewWillAppear(_ animated: Bool) {
  25. getQuizTime()
  26. }
  27. func setupData() {
  28. quizInstruction = ["There will be \(quesCount) questions for digital literacy assessment.", "For each question only one possible answer can be given.", "You have to choose the correct one by clicking the mouse.", "Exam can be accessed only twice before final submission.", "The time limit will be \(quizTime) minutes."]
  29. instructionTableView.reloadData()
  30. }
  31. func getQuizTime() {
  32. if Reachability.isConnectedToNetwork() {
  33. viewModel.getQuizTime(assessmentId: assessmentId) {
  34. // Update the UI with the fetched data
  35. if let time = self.viewModel.quizTime {
  36. // Update your UI components with the responseData
  37. self.quizTime = time
  38. self.setupData()
  39. }
  40. }
  41. } else {
  42. Alert.showInternetFailureAlert(on: self)
  43. }
  44. }
  45. /*
  46. // MARK: - Navigation
  47. // In a storyboard-based application, you will often want to do a little preparation before navigation
  48. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  49. // Get the new view controller using segue.destination.
  50. // Pass the selected object to the new view controller.
  51. }
  52. */
  53. @IBAction func backAction(_ sender: Any) {
  54. self.navigationController?.popViewController(animated: true)
  55. }
  56. @IBAction func continueAction(_ sender: Any) {
  57. if assessmentType == "Assessment" {
  58. let vc = self.storyboard?.instantiateViewController(withIdentifier: "NewQuizViewController") as! NewQuizViewController
  59. vc.assessmentId = self.assessmentId
  60. vc.assessmentName = self.assessmentName
  61. vc.quesCount = quesCount
  62. vc.quizTime = quizTime
  63. self.navigationController?.pushViewController(vc, animated: true)
  64. } else {
  65. let vc = self.storyboard?.instantiateViewController(withIdentifier: "QuizViewController") as! QuizViewController
  66. vc.assessmentId = self.assessmentId
  67. vc.assessmentName = self.assessmentName
  68. vc.quesNo = quesCount
  69. self.navigationController?.pushViewController(vc, animated: true)
  70. }
  71. }
  72. }
  73. extension InstructionViewController: UITableViewDelegate, UITableViewDataSource {
  74. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  75. return AppConstant.quizInstruction.count
  76. }
  77. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  78. guard let cell = tableView.dequeueReusableCell(withIdentifier: "InstructionTableViewCell", for: indexPath) as? InstructionTableViewCell else {
  79. return UITableViewCell()
  80. }
  81. cell.instructionLabel.text = "\(indexPath.row + 1). \(quizInstruction[indexPath.row])"
  82. return cell
  83. }
  84. }