ViewAnswerTableViewCell.swift 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. //
  2. // ViewAnswerTableViewCell.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 27/09/21.
  6. //
  7. import UIKit
  8. import CoreMIDI
  9. class ViewAnswerTableViewCell: UITableViewCell, UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
  10. @IBOutlet var questionLabel: UILabel!
  11. @IBOutlet var answerCollectionView: UICollectionView!
  12. @IBOutlet var answerCollectionViewHeight: NSLayoutConstraint!
  13. let choiceDB = DBManager.sharedInstance.database.objects(ChoiceModel.self)
  14. //var selectedAnswer = [SelectedAnswerModel]()
  15. var choiceArray = [Int]()
  16. var quesId = Int()
  17. var selectedChoice = Int()
  18. var answer = Int()
  19. override func awakeFromNib() {
  20. super.awakeFromNib()
  21. // Initialization code
  22. answerCollectionView.delegate = self
  23. answerCollectionView.dataSource = self
  24. print("Question Id: \(quesId)")
  25. print("Choice Array: \(choiceArray)")
  26. }
  27. override func setSelected(_ selected: Bool, animated: Bool) {
  28. super.setSelected(selected, animated: animated)
  29. // Configure the view for the selected state
  30. }
  31. func getChoiceName(id:Int) -> String {
  32. var choiceName = String()
  33. for choice in choiceDB {
  34. if choice.id == id {
  35. choiceName = choice.content
  36. }
  37. }
  38. return choiceName
  39. }
  40. func getChoiceArray(choiceArray:[Int]) {
  41. self.choiceArray = choiceArray
  42. //answerCollectionView.reloadData()
  43. }
  44. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  45. return choiceArray.count
  46. }
  47. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  48. guard let cell: ViewAnswerChoiceCollectionViewCell = collectionView.dequeueReusableCell(withReuseIdentifier: "ViewAnswerChoiceCollectionViewCell", for: indexPath) as? ViewAnswerChoiceCollectionViewCell else {
  49. return UICollectionViewCell()
  50. }
  51. cell.choiceLabel.text = Helper.translateText(inputText: getChoiceName(id: choiceArray[indexPath.row]))
  52. if choiceArray[indexPath.row] == selectedChoice {
  53. if selectedChoice == answer {
  54. cell.answerRadioButton.isSelected = true
  55. cell.answerRadioButton.tintColor = UIColor.systemGreen
  56. } else {
  57. cell.answerRadioButton.isSelected = true
  58. cell.answerRadioButton.tintColor = UIColor.systemRed
  59. }
  60. } else if choiceArray[indexPath.row] == answer {
  61. cell.answerRadioButton.isSelected = true
  62. cell.answerRadioButton.tintColor = UIColor.systemGreen
  63. }
  64. return cell
  65. }
  66. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
  67. return CGSize(width: (collectionView.frame.size.width-10)/2, height: 70)
  68. }
  69. func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
  70. let height = answerCollectionView.collectionViewLayout.collectionViewContentSize.height
  71. answerCollectionViewHeight.constant = height
  72. }
  73. }