ViewAnswerViewController.swift 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. //
  2. // ViewAnswerViewController.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 20/09/21.
  6. //
  7. import UIKit
  8. class ViewAnswerViewController: UIViewController {
  9. @IBOutlet var viewAnswerHeadLabel: UILabel!
  10. @IBOutlet var viewAnswerTableView: UITableView!
  11. @IBOutlet var closeButton: UIButton!
  12. var selectedAnswer = [SelectedAnswerModel]()
  13. let questionDB = DBManager.sharedInstance.database.objects(QuestionModel.self)
  14. let choiceDB = DBManager.sharedInstance.database.objects(ChoiceModel.self)
  15. override func viewDidLoad() {
  16. super.viewDidLoad()
  17. // Do any additional setup after loading the view.
  18. viewAnswerTableView.delegate = self
  19. viewAnswerTableView.dataSource = self
  20. viewAnswerTableView.tableFooterView = UIView()
  21. setupUI()
  22. for item in selectedAnswer {
  23. print("Saved QuesId: \(item.quesId), Saved ChoiceId: \(item.choiceId), Saved Answer: \(item.answerId)")
  24. }
  25. }
  26. func setupUI() {
  27. viewAnswerHeadLabel.text = Helper.translateText(inputText: "View Answer")
  28. closeButton.setTitle(Helper.translateText(inputText: Constant.Close), for: .normal)
  29. }
  30. func getQuestion(id:Int) -> String {
  31. var question = String()
  32. for ques in questionDB {
  33. if ques.id == id {
  34. question = ques.content
  35. }
  36. }
  37. return question
  38. }
  39. func getChoiceArray(quesId:Int) -> [Int] {
  40. var choiceArray = [Int]()
  41. if let row = questionDB.firstIndex(where: {$0.id == quesId}) {
  42. for choice in questionDB[row].choices {
  43. let id = choice.id
  44. choiceArray.append(id)
  45. }
  46. }
  47. return choiceArray
  48. }
  49. func getChoiceName(id:Int) -> String {
  50. var choiceName = String()
  51. for choice in choiceDB {
  52. if choice.id == id {
  53. choiceName = choice.content
  54. }
  55. }
  56. return choiceName
  57. }
  58. /*
  59. // MARK: - Navigation
  60. // In a storyboard-based application, you will often want to do a little preparation before navigation
  61. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  62. // Get the new view controller using segue.destination.
  63. // Pass the selected object to the new view controller.
  64. }
  65. */
  66. @IBAction func closeAction(_ sender: Any) {
  67. //self.navigationController?.popViewController(animated: true)
  68. self.dismiss(animated: true)
  69. }
  70. }
  71. extension ViewAnswerViewController: UITableViewDelegate, UITableViewDataSource {
  72. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  73. return selectedAnswer.count
  74. }
  75. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  76. guard let cell = tableView.dequeueReusableCell(withIdentifier: "ViewAnswerTableViewCell", for: indexPath) as? ViewAnswerTableViewCell else {
  77. return UITableViewCell()
  78. }
  79. cell.questionLabel.text = Helper.translateText(inputText: getQuestion(id: selectedAnswer[indexPath.row].quesId))
  80. cell.quesId = selectedAnswer[indexPath.row].quesId
  81. cell.selectedChoice = selectedAnswer[indexPath.row].choiceId
  82. cell.answer = selectedAnswer[indexPath.row].answerId
  83. let dataArray = self.getChoiceArray(quesId: selectedAnswer[indexPath.row].quesId)
  84. cell.getChoiceArray(choiceArray: dataArray)
  85. //cell.answerCollectionView.reloadData()
  86. return cell
  87. }
  88. }