NewQuizViewController.swift 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614
  1. //
  2. // NewQuizViewController.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 19/10/23.
  6. //
  7. import UIKit
  8. import Toast_Swift
  9. import SideMenu
  10. struct SubmitAnswers {
  11. let questionId: Int
  12. var answers: [String]
  13. }
  14. class AnswerManager {
  15. var submittedAnswers = [SubmitAnswers]()
  16. func addOrUpdateAnswer(for questionId: Int, with newAnswers: [String]) {
  17. if let existingIndex = submittedAnswers.firstIndex(where: { $0.questionId == questionId }) {
  18. // Update answers for existing questionId
  19. submittedAnswers[existingIndex].answers = newAnswers
  20. } else {
  21. // Add new SubmitAnswers
  22. let newSubmitAnswer = SubmitAnswers(questionId: questionId, answers: newAnswers)
  23. submittedAnswers.append(newSubmitAnswer)
  24. }
  25. }
  26. }
  27. class NewQuizViewController: UIViewController {
  28. @IBOutlet var navigationBar: UINavigationBar!
  29. @IBOutlet var questionNumberLabel: UILabel!
  30. @IBOutlet var timerLabel: UILabel!
  31. @IBOutlet var questionTypeLabel: UILabel!
  32. @IBOutlet var questionLabel: UILabel!
  33. @IBOutlet var answerInstructionLabel: UILabel!
  34. @IBOutlet var quizView: UIView!
  35. @IBOutlet var answerTF: UITextField!
  36. @IBOutlet var mcqView: UIView!
  37. @IBOutlet var mcqTableView: UITableView!
  38. @IBOutlet var trueFalseView: UIView!
  39. @IBOutlet var boolTableView: UITableView!
  40. @IBOutlet var dragView: UIView!
  41. @IBOutlet var option1TableView: UITableView!
  42. @IBOutlet var option2TableView: UITableView!
  43. @IBOutlet var questionNumbersButton: UIButton!
  44. @IBOutlet var skipButton: UIButton!
  45. @IBOutlet var nextButton: UIButton!
  46. //Quiz submit UI outlets
  47. @IBOutlet var quizSubmittedView: UIView!
  48. @IBOutlet var customSubmittedView: UIView!
  49. @IBOutlet var checkImageView: UIImageView!
  50. @IBOutlet var resultStatusLabel: UILabel!
  51. @IBOutlet var scoreLabel: UILabel!
  52. @IBOutlet var okButton: UIButton!
  53. @IBOutlet var viewAnswerButton: UIButton!
  54. //Question number UI outlets
  55. @IBOutlet var questionNumberView: UIView!
  56. @IBOutlet var questionCustomView: UIView!
  57. @IBOutlet var questionNumberCollectionView: UICollectionView!
  58. @IBOutlet var collectionViewHeightConstraint: NSLayoutConstraint!
  59. var viewModel = NewQuizViewModel()
  60. // Pre-defined values
  61. var assessmentId = Int()
  62. var assessmentName = String()
  63. var quesCount = Int()
  64. var quizTime = Int()
  65. var sessionId = String()
  66. var quesIndex = 0
  67. let userData = DBManager.sharedInstance.database.objects(UserDetailsModel.self)
  68. var quizModel = [QuizModel]()
  69. var assessmentSubmit: AssessmentSubmitModel?
  70. let manager = AnswerManager()
  71. var answer = [String]()
  72. var timerCount = Int()
  73. var isOptionSelected: Bool = false
  74. var timer = Timer()
  75. var alertController: UIAlertController?
  76. override func viewDidLoad() {
  77. super.viewDidLoad()
  78. // Do any additional setup after loading the view.
  79. viewModel.delegate = self
  80. getQuizData()
  81. setupUI()
  82. // Question navigator collection view delegate and datasource
  83. questionNumberCollectionView.delegate = self
  84. questionNumberCollectionView.dataSource = self
  85. // Set unique id only once when assessment starts
  86. sessionId = generateUniqueID()
  87. }
  88. override func viewDidDisappear(_ animated: Bool) {
  89. timer.invalidate()
  90. }
  91. func setupUI() {
  92. // Set assessment name to navigation bar title
  93. navigationBar.topItem?.title = assessmentName
  94. // Hide other views from start
  95. quizSubmittedView.isHidden = true
  96. questionNumberView.isHidden = true
  97. // Design question number label
  98. questionNumberLabel.clipsToBounds = true
  99. questionNumberLabel.layer.cornerRadius = 10
  100. questionNumberLabel.layer.maskedCorners = [.layerMaxXMinYCorner, .layerMinXMinYCorner]
  101. questionNumbersButton.layer.cornerRadius = questionNumbersButton.frame.size.height / 2
  102. }
  103. // Function to generate unique id
  104. func generateUniqueID() -> String {
  105. let dateFormatter = DateFormatter()
  106. dateFormatter.dateFormat = "yyyyMMddHHmmssSSS"
  107. let currentTimestamp = dateFormatter.string(from: Date())
  108. return currentTimestamp
  109. }
  110. // Function call to get quiz data
  111. func getQuizData() {
  112. if Reachability.isConnectedToNetwork() {
  113. viewModel.getQuizData(assessmentId: assessmentId) {
  114. // Update your UI components with the responseData
  115. self.quizModel = self.viewModel.quizModel
  116. print("index: \(self.quesIndex)")
  117. self.setupQuizUI()
  118. self.setupData()
  119. // Assuming you've reloaded or updated the data in your UICollectionView
  120. self.questionNumberCollectionView.reloadData()
  121. // Call the method to adjust the height
  122. self.updateCollectionViewHeight()
  123. // Set quiz time and start timer
  124. self.timerCount = self.quizTime * 60
  125. self.startTimer()
  126. }
  127. } else {
  128. Alert.showInternetFailureAlert(on: self)
  129. }
  130. }
  131. // Setup UI for quiz
  132. func setupQuizUI() {
  133. self.questionCustomView.layer.cornerRadius = 20
  134. if quesIndex >= quizModel.count - 1 {
  135. skipButton.isHidden = true
  136. } else {
  137. skipButton.isHidden = false
  138. }
  139. if quizModel[quesIndex].questionType == AppConstant.MultipleMCQ {
  140. answerInstructionLabel.text = "Select [One/More Than One] Options"
  141. self.answerTF.isHidden = true
  142. self.mcqView.isHidden = false
  143. self.mcqTableView.delegate = self
  144. self.mcqTableView.dataSource = self
  145. self.mcqTableView.allowsMultipleSelection = true
  146. self.mcqTableView.allowsMultipleSelectionDuringEditing = true
  147. self.mcqTableView.reloadData()
  148. self.trueFalseView.isHidden = true
  149. self.dragView.isHidden = true
  150. } else if quizModel[quesIndex].questionType == AppConstant.SingleMCQ {
  151. answerInstructionLabel.text = "Select One Option"
  152. self.answerTF.isHidden = true
  153. self.mcqView.isHidden = false
  154. self.mcqTableView.delegate = self
  155. self.mcqTableView.dataSource = self
  156. self.mcqTableView.allowsMultipleSelection = false
  157. self.mcqTableView.allowsMultipleSelectionDuringEditing = false
  158. self.mcqTableView.reloadData()
  159. self.trueFalseView.isHidden = true
  160. self.dragView.isHidden = true
  161. self.isOptionSelected = false
  162. } else if quizModel[quesIndex].questionType == AppConstant.Fill {
  163. answerInstructionLabel.text = "Enter Answer In Input Box"
  164. self.answerTF.isHidden = false
  165. self.mcqView.isHidden = true
  166. self.trueFalseView.isHidden = true
  167. self.dragView.isHidden = true
  168. } else if quizModel[quesIndex].questionType == AppConstant.TrueFalse {
  169. answerInstructionLabel.text = "Choose One Option"
  170. self.answerTF.isHidden = true
  171. self.mcqView.isHidden = true
  172. self.trueFalseView.isHidden = false
  173. self.boolTableView.delegate = self
  174. self.boolTableView.dataSource = self
  175. self.boolTableView.reloadData()
  176. self.dragView.isHidden = true
  177. } else if quizModel[quesIndex].questionType == AppConstant.Match {
  178. answerInstructionLabel.text = "Drag And Drop Correct Match From Right Hand Side"
  179. self.answerTF.isHidden = true
  180. self.mcqView.isHidden = true
  181. self.trueFalseView.isHidden = true
  182. self.dragView.isHidden = false
  183. self.option1TableView.delegate = self
  184. self.option1TableView.dataSource = self
  185. self.option1TableView.reloadData()
  186. self.option2TableView.delegate = self
  187. self.option2TableView.dataSource = self
  188. self.option2TableView.dragDelegate = self
  189. self.option2TableView.dragInteractionEnabled = true
  190. self.option2TableView.reloadData()
  191. }
  192. }
  193. func setupData() {
  194. answerTF.text = ""
  195. answer.removeAll()
  196. questionNumberLabel.text = " Question No. - \(quesIndex+1)/\(quizModel.count) "
  197. questionTypeLabel.text = quizModel[quesIndex].questionType
  198. questionLabel.text = "Q. \(quizModel[quesIndex].question ?? "")"
  199. print(quizModel[quesIndex].question ?? "")
  200. print("Index: \(quesIndex)")
  201. }
  202. func startTimer() {
  203. // Create a Timer that fires every second and calls the updateTimer function
  204. timer = Timer.scheduledTimer(timeInterval: 1, target: self, selector: #selector(update), userInfo: nil, repeats: true)
  205. }
  206. @objc func update() {
  207. if timerCount > 0 {
  208. timerCount -= 1
  209. let minutes = timerCount / 60
  210. let seconds = timerCount % 60
  211. // Format the time as "mm:ss"
  212. let timeString = String(format: "%02d:%02d", minutes, seconds)
  213. // Update the label with the remaining time
  214. timerLabel.text = timeString
  215. } else {
  216. // Timer has finished, you can handle this event as needed
  217. timerLabel.text = "00:00" // Display 00:00 when the timer is done
  218. timer.invalidate()
  219. // Submit quiz in case of time over
  220. self.submitTotalAssessment()
  221. }
  222. }
  223. func submitAnswer() {
  224. if quizModel[quesIndex].questionType == AppConstant.Fill {
  225. if answerTF.text?.isEmpty == true {
  226. self.view.makeToast("Enter your answer first!")
  227. } else {
  228. answer.append(answerTF.text!)
  229. print(answer)
  230. if Reachability.isConnectedToNetwork() {
  231. viewModel.submitQuizAnswer(assessmentId: "\(quizModel[quesIndex].assessmentId ?? 0)", userId: "\(userData[0].id)", questionId: quizModel[quesIndex].id ?? 0, quesType: quizModel[quesIndex].questionType ?? "", answers: self.answer, sessionId: sessionId)
  232. } else {
  233. Alert.showInternetFailureAlert(on: self)
  234. }
  235. }
  236. } else {
  237. if Reachability.isConnectedToNetwork() {
  238. if isOptionSelected == true {
  239. viewModel.submitQuizAnswer(assessmentId: "\(quizModel[quesIndex].assessmentId ?? 0)", userId: "\(userData[0].id)", questionId: quizModel[quesIndex].id ?? 0, quesType: quizModel[quesIndex].questionType ?? "", answers: self.answer, sessionId: sessionId)
  240. } else {
  241. self.view.makeToast("Select an option first!")
  242. }
  243. } else {
  244. Alert.showInternetFailureAlert(on: self)
  245. }
  246. }
  247. }
  248. func submitTotalAssessment() {
  249. if Reachability.isConnectedToNetwork() {
  250. viewModel.submitAssessment(assessmentId: "\(quizModel[quesIndex].assessmentId ?? 0)", userId: userData[0].id, data: manager.submittedAnswers, sessionId: sessionId)
  251. } else {
  252. Alert.showInternetFailureAlert(on: self)
  253. }
  254. }
  255. /*
  256. // MARK: - Navigation
  257. // In a storyboard-based application, you will often want to do a little preparation before navigation
  258. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  259. // Get the new view controller using segue.destination.
  260. // Pass the selected object to the new view controller.
  261. }
  262. */
  263. @IBAction func sideMenuAction(_ sender: UIBarButtonItem) {
  264. let menu = storyboard!.instantiateViewController(withIdentifier: "SideMenuNavigationController") as! SideMenuNavigationController
  265. present(menu, animated: true, completion: nil)
  266. }
  267. @IBAction func skipAction(_ sender: Any) {
  268. self.quesIndex += 1
  269. print("index: \(self.quesIndex)")
  270. setupQuizUI()
  271. setupData()
  272. }
  273. @IBAction func nextAction(_ sender: Any) {
  274. submitAnswer()
  275. }
  276. @IBAction func closeAction(_ sender: Any) {
  277. timer.invalidate()
  278. let vc = self.storyboard?.instantiateViewController(withIdentifier: "NewAssessmentViewController") as! NewAssessmentViewController
  279. self.navigationController?.pushViewController(vc, animated: true)
  280. }
  281. @IBAction func viewResultAction(_ sender: Any) {
  282. let vc = self.storyboard?.instantiateViewController(withIdentifier: "ViewAnswersViewController") as! ViewAnswersViewController
  283. vc.userId = userData[0].id
  284. vc.assessmentId = assessmentId
  285. vc.sessionId = sessionId
  286. self.navigationController?.pushViewController(vc, animated: true)
  287. }
  288. @IBAction func quesNumberAction(_ sender: Any) {
  289. questionNumberView.isHidden = false
  290. }
  291. @IBAction func cancelAction(_ sender: Any) {
  292. questionNumberView.isHidden = true
  293. }
  294. }
  295. extension NewQuizViewController: NewQuizViewProtocol {
  296. func startLoader() {
  297. ActivityIndicator.start()
  298. }
  299. func stopLoader() {
  300. ActivityIndicator.stop()
  301. }
  302. func showError(error: String) {
  303. self.view.makeToast(error)
  304. }
  305. func answerSubmitted(model: AnswerSubmitModel) {
  306. if quesIndex < quizModel.count - 1 {
  307. // Append data to the submitted answers
  308. manager.addOrUpdateAnswer(for: model.questionId ?? 0, with: model.answers ?? [""])
  309. print(manager.submittedAnswers)
  310. self.questionNumberCollectionView.reloadData()
  311. self.quesIndex += 1
  312. print("index: \(self.quesIndex)")
  313. setupQuizUI()
  314. setupData()
  315. } else {
  316. // Append data to the submitted answers
  317. manager.addOrUpdateAnswer(for: model.questionId ?? 0, with: model.answers ?? [""])
  318. print(manager.submittedAnswers)
  319. self.questionNumberCollectionView.reloadData()
  320. // Create an alert controller
  321. alertController = UIAlertController(title: assessmentName, message: "Are you want to submit your answer?", preferredStyle: .alert)
  322. // Create a "Cancel" action
  323. let cancelAction = UIAlertAction(title: "Cancel", style: .cancel) { (action) in
  324. // Handle the "Cancel" button action
  325. print("Cancel Button Pressed")
  326. }
  327. // Create an "OK" action
  328. let okAction = UIAlertAction(title: "OK", style: .default) { (action) in
  329. // Handle the "OK" button action
  330. self.submitTotalAssessment()
  331. }
  332. // Add the actions to the alert controller
  333. alertController?.addAction(cancelAction)
  334. alertController?.addAction(okAction)
  335. // Present the alert controller
  336. self.present(alertController!, animated: true, completion: nil)
  337. }
  338. }
  339. func assessmentSubmitted(model: AssessmentSubmitModel) {
  340. self.assessmentSubmit = model
  341. alertController?.dismiss(animated: true)
  342. self.timer.invalidate()
  343. quizSubmittedView.isHidden = false
  344. resultStatusLabel.text = model.lable
  345. scoreLabel.text = "Score: \(model.achievedMarks ?? 0) / \(model.totalMarks ?? 0)"
  346. if model.achievedMarks == 0 {
  347. self.viewAnswerButton.isHidden = true
  348. } else {
  349. self.viewAnswerButton.isHidden = false
  350. }
  351. }
  352. }
  353. extension NewQuizViewController: UITableViewDelegate, UITableViewDataSource, UITableViewDragDelegate {
  354. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  355. if tableView == mcqTableView {
  356. return quizModel[quesIndex].options?.count ?? 0
  357. } else if tableView == boolTableView {
  358. return 2
  359. } else if tableView == option1TableView {
  360. return quizModel[quesIndex].optionsOne?.count ?? 0
  361. } else {
  362. return quizModel[quesIndex].optionsTwo?.count ?? 0
  363. }
  364. }
  365. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  366. if tableView == mcqTableView {
  367. guard let cell = tableView.dequeueReusableCell(withIdentifier: "MCQTableViewCell", for: indexPath) as? MCQTableViewCell else {
  368. return UITableViewCell()
  369. }
  370. cell.optionLabel.text = quizModel[quesIndex].options?[indexPath.row]
  371. cell.checkButton.isSelected = false // Ensure no button is selected initially
  372. // Finding the index of the object with the specific value
  373. if let index = manager.submittedAnswers.firstIndex(where: { $0.questionId == quizModel[quesIndex].id }) {
  374. // Check for answers
  375. let storedAnswers = manager.submittedAnswers[index].answers[0]
  376. if quizModel[quesIndex].options?[indexPath.row] == storedAnswers {
  377. // Set the button's images for selected and deselected states
  378. cell.checkButton.isSelected = true
  379. self.isOptionSelected = true
  380. self.answer.append(quizModel[quesIndex].options?[indexPath.row] ?? "")
  381. } else {
  382. cell.checkButton.isSelected = false
  383. }
  384. }
  385. // Configure the cell with options and update the selected state
  386. cell.checkButton.tag = indexPath.row
  387. cell.checkButton.addTarget(self, action: #selector(checkButtonTapped), for: .touchUpInside)
  388. return cell
  389. } else if tableView == boolTableView {
  390. guard let cell = tableView.dequeueReusableCell(withIdentifier: "TrueFalseTableViewCell", for: indexPath) as? TrueFalseTableViewCell else {
  391. return UITableViewCell()
  392. }
  393. cell.optionLabel.text = AppConstant.boolOption[indexPath.row]
  394. return cell
  395. } else if tableView == option1TableView {
  396. guard let cell = tableView.dequeueReusableCell(withIdentifier: "DragTableViewCell", for: indexPath) as? DragTableViewCell else {
  397. return UITableViewCell()
  398. }
  399. cell.optionLabel.text = quizModel[quesIndex].optionsOne?[indexPath.row]
  400. return cell
  401. } else {
  402. guard let cell = tableView.dequeueReusableCell(withIdentifier: "DragTableViewCell", for: indexPath) as? DragTableViewCell else {
  403. return UITableViewCell()
  404. }
  405. cell.optionLabel.text = quizModel[quesIndex].optionsTwo?[indexPath.row]
  406. return cell
  407. }
  408. }
  409. @objc func checkButtonTapped(sender: UIButton) {
  410. let point = sender.convert(CGPoint.zero, to: mcqTableView)
  411. if let indexPath = mcqTableView.indexPathForRow(at: point) {
  412. if let cell = mcqTableView.cellForRow(at: indexPath) as? MCQTableViewCell {
  413. // Deselect all other buttons in the same section
  414. if let section = quizModel[quesIndex].options {
  415. for i in 0..<section.count {
  416. if i != indexPath.row {
  417. let otherIndexPath = IndexPath(row: i, section: indexPath.section)
  418. if let otherCell = mcqTableView.cellForRow(at: otherIndexPath) as? MCQTableViewCell {
  419. otherCell.checkButton.isSelected = false
  420. if let index = answer.firstIndex(of: quizModel[quesIndex].options?[otherIndexPath.row] ?? "") {
  421. answer.remove(at: index)
  422. }
  423. print(answer)
  424. }
  425. }
  426. }
  427. }
  428. // Select the tapped button
  429. cell.checkButton.isSelected = true
  430. self.isOptionSelected = true
  431. answer.append(quizModel[quesIndex].options?[indexPath.row] ?? "")
  432. print(answer)
  433. }
  434. }
  435. }
  436. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  437. if tableView == mcqTableView {
  438. if quizModel[quesIndex].questionType == AppConstant.MultipleMCQ {
  439. if answer.contains(quizModel[quesIndex].options?[indexPath.row] ?? "") {
  440. if let index = answer.firstIndex(of: quizModel[quesIndex].options?[indexPath.row] ?? "") {
  441. answer.remove(at: index)
  442. }
  443. print(answer)
  444. } else {
  445. answer.append(quizModel[quesIndex].options?[indexPath.row] ?? "")
  446. print(answer)
  447. }
  448. } else if quizModel[quesIndex].questionType == AppConstant.SingleMCQ {
  449. // Retrieve the cell
  450. if let cell = tableView.cellForRow(at: indexPath) as? MCQTableViewCell {
  451. // Programmatically trigger the button tap action
  452. cell.checkButton.sendActions(for: .touchUpInside)
  453. }
  454. }
  455. } else {
  456. answer.removeAll()
  457. answer.append(AppConstant.boolOption[indexPath.row])
  458. print(answer)
  459. }
  460. }
  461. func tableView(_ tableView: UITableView, didDeselectRowAt indexPath: IndexPath) {
  462. if tableView == mcqTableView {
  463. if quizModel[quesIndex].questionType == AppConstant.MultipleMCQ {
  464. if answer.contains(quizModel[quesIndex].options?[indexPath.row] ?? "") {
  465. if let index = answer.firstIndex(of: quizModel[quesIndex].options?[indexPath.row] ?? "") {
  466. answer.remove(at: index)
  467. }
  468. print(answer)
  469. } else {
  470. answer.append(quizModel[quesIndex].options?[indexPath.row] ?? "")
  471. print(answer)
  472. }
  473. } else if quizModel[quesIndex].questionType == AppConstant.SingleMCQ {
  474. // answer.removeAll()
  475. // answer.append(quizModel[quesIndex].options?[indexPath.row] ?? "")
  476. // print(answer)
  477. }
  478. }
  479. }
  480. func tableView(_ tableView: UITableView, itemsForBeginning session: UIDragSession, at indexPath: IndexPath) -> [UIDragItem] {
  481. let dragItem = UIDragItem(itemProvider: NSItemProvider())
  482. dragItem.localObject = quizModel[quesIndex].optionsTwo?[indexPath.row]
  483. return [ dragItem ]
  484. }
  485. func tableView(_ tableView: UITableView, moveRowAt sourceIndexPath: IndexPath, to destinationIndexPath: IndexPath) {
  486. // Update the model
  487. let mover = quizModel[quesIndex].optionsTwo?.remove(at: sourceIndexPath.row) ?? ""
  488. quizModel[quesIndex].optionsTwo?.insert(mover, at: destinationIndexPath.row)
  489. //print("\(quizModel[quesIndex].optionsOne?[destinationIndexPath.row] ?? "") - \(quizModel[quesIndex].optionsTwo?[destinationIndexPath.row] ?? "")")
  490. self.answer.removeAll()
  491. for i in 0...quizModel[quesIndex].optionsOne!.count-1 {
  492. let match = "\(quizModel[quesIndex].optionsOne?[i] ?? "")-\(quizModel[quesIndex].optionsTwo?[i] ?? "")"
  493. answer.append(match)
  494. }
  495. print(answer)
  496. }
  497. }
  498. extension NewQuizViewController: UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
  499. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  500. return quizModel.count
  501. }
  502. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  503. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "QuestionNumberCollectionViewCell", for: indexPath as IndexPath) as! QuestionNumberCollectionViewCell
  504. cell.serialNoLabel.text = "\(indexPath.row + 1)"
  505. if manager.submittedAnswers.contains(where: { $0.questionId == quizModel[indexPath.row].id }) {
  506. cell.customCellView.backgroundColor = #colorLiteral(red: 0.05099999905, green: 0.2980000079, blue: 0.5329999924, alpha: 1)
  507. cell.serialNoLabel.textColor = UIColor.white
  508. self.mcqTableView.reloadData()
  509. } else {
  510. cell.customCellView.backgroundColor = UIColor.systemGray5
  511. cell.serialNoLabel.textColor = UIColor.black
  512. }
  513. return cell
  514. }
  515. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  516. self.quesIndex = indexPath.row
  517. self.questionNumberView.isHidden = true
  518. print("index: \(self.quesIndex)")
  519. setupQuizUI()
  520. setupData()
  521. }
  522. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
  523. let cellWidth = collectionView.frame.size.width / 5
  524. return CGSize(width: cellWidth, height: cellWidth)
  525. }
  526. func updateCollectionViewHeight() {
  527. // Calculate the content size of the UICollectionView based on its content
  528. questionNumberCollectionView.layoutIfNeeded()
  529. let contentSize = questionNumberCollectionView.collectionViewLayout.collectionViewContentSize
  530. // Update the height constraint to match the content size
  531. collectionViewHeightConstraint.constant = contentSize.height
  532. }
  533. }