IntroductionViewController.swift 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. //
  2. // IntroductionViewController.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 30/08/21.
  6. //
  7. import UIKit
  8. import WebKit
  9. import RealmSwift
  10. import SideMenu
  11. class IntroductionViewController: UIViewController {
  12. @IBOutlet weak var webView: WKWebView!
  13. @IBOutlet weak var proceedButton: UIButton!
  14. @IBOutlet var navigationBar: UINavigationBar!
  15. @IBOutlet var quizInstructionView: UIView!
  16. @IBOutlet var instructionTableView: UITableView!
  17. @IBOutlet var quizInstructionLabel: UILabel!
  18. @IBOutlet var continueButton: UIButton!
  19. @IBOutlet var cancelButton: UIButton!
  20. @IBOutlet var wantToContinueLabel: UILabel!
  21. let translation = DBManager.sharedInstance.database.objects(TopicModel.self)
  22. let levelData = DBManager.sharedInstance.database.objects(LevelModel.self)
  23. var topicName = ""
  24. var topicId = Int()
  25. var mainTopicIndex = Int()
  26. var topicIndex = Int()
  27. override func viewDidLoad() {
  28. super.viewDidLoad()
  29. // Do any additional setup after loading the view.
  30. quizInstructionView.isHidden = true
  31. instructionTableView.delegate = self
  32. instructionTableView.dataSource = self
  33. instructionTableView.tableFooterView = UIView()
  34. instructionTableView.allowsSelection = false
  35. }
  36. override func viewWillAppear(_ animated: Bool) {
  37. if Helper.translateText(inputText: topicName) == Helper.translateText(inputText: "Introduction") {
  38. proceedButton.setTitle(Helper.translateText(inputText: "Proceed"), for: .normal)
  39. } else {
  40. proceedButton.setTitle(Helper.translateText(inputText: "Take Quiz"), for: .normal)
  41. }
  42. quizInstructionLabel.text = Helper.translateText(inputText: "Quiz Instructions")
  43. navigationBar.topItem?.title = Helper.translateText(inputText: topicName)
  44. getTopic()
  45. setupUI()
  46. }
  47. func setupUI() {
  48. wantToContinueLabel.text = Helper.translateText(inputText: "Do you want to continue?")
  49. continueButton.setTitle(Helper.translateText(inputText: "CONTINUE"), for: .normal)
  50. cancelButton.setTitle(Helper.translateText(inputText: "CANCEL"), for: .normal)
  51. }
  52. func getTopic() {
  53. for item in translation {
  54. if topicName.lowercased() == item.name.lowercased() {
  55. topicId = item.id
  56. self.loadWebView()
  57. return
  58. } else {
  59. //self.view.makeToast("No topic found!")
  60. }
  61. }
  62. }
  63. func loadWebView() {
  64. let language = DBManager.sharedInstance.database.objects(LanguageModel.self)
  65. for item in language {
  66. if item.id == UserDefaultsConstant.getIntValueFromUserDefults(for: "selectedLanguageId") as! Int {
  67. let unZipDestination = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0]
  68. let languageFolderUrl = unZipDestination.appendingPathComponent(item.name)
  69. let unZipUrl = languageFolderUrl.appendingPathComponent("\(topicId)")
  70. let contentUrl = unZipUrl.appendingPathComponent("content")
  71. let indexUrl = contentUrl.appendingPathComponent("index.html")
  72. print("Unzip Url: \(unZipUrl)")
  73. print("Content Url: \(contentUrl)")
  74. print("Index Url: \(indexUrl)")
  75. //let url = URL(string: link)
  76. let requestObj = URLRequest(url: indexUrl as URL)
  77. webView.load(requestObj)
  78. }
  79. }
  80. }
  81. /*
  82. // MARK: - Navigation
  83. // In a storyboard-based application, you will often want to do a little preparation before navigation
  84. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  85. // Get the new view controller using segue.destination.
  86. // Pass the selected object to the new view controller.
  87. }
  88. */
  89. @IBAction func menuNavAction(_ sender: Any) {
  90. let menu = storyboard!.instantiateViewController(withIdentifier: "SideMenuNavigationController") as! SideMenuNavigationController
  91. present(menu, animated: true, completion: nil)
  92. }
  93. @IBAction func headerNavigation(_ sender: UIButton) {
  94. switch sender.tag {
  95. case 0:
  96. DispatchQueue.main.async {
  97. let introVC = self.storyboard?.instantiateViewController(withIdentifier: "IntroductionViewController") as! IntroductionViewController
  98. introVC.topicName = self.topicName
  99. self.navigationController?.pushViewController(introVC, animated: false)
  100. }
  101. break
  102. case 1:
  103. DispatchQueue.main.async {
  104. let videoVC = self.storyboard?.instantiateViewController(withIdentifier: "VideoIntroductionViewController") as! VideoIntroductionViewController
  105. videoVC.topicName = self.topicName
  106. self.navigationController?.pushViewController(videoVC, animated: false)
  107. }
  108. case 2:
  109. DispatchQueue.main.async {
  110. let audioVC = self.storyboard?.instantiateViewController(withIdentifier: "AudioIntroductionViewController") as! AudioIntroductionViewController
  111. audioVC.topicName = self.topicName
  112. self.navigationController?.pushViewController(audioVC, animated: false)
  113. }
  114. default:
  115. break
  116. }
  117. }
  118. @IBAction func proceedAction(_ sender: Any) {
  119. if Helper.translateText(inputText: topicName) == Helper.translateText(inputText: "Introduction") {
  120. //Set Introduction status to false
  121. UserDefaults.standard.set(false, forKey: "introduction")
  122. UserDefaults.standard.synchronize()
  123. //Navigate to login screen
  124. DispatchQueue.main.async {
  125. let homeVC = self.storyboard?.instantiateViewController(withIdentifier:"DashboardViewController" ) as! DashboardViewController
  126. self.navigationController?.pushViewController(homeVC, animated: true)
  127. }
  128. } else {
  129. if UserDefaultsConstant.getValueFromUserDefults(for: Constant.signInMethod) as! String == "google" {
  130. quizInstructionView.isHidden = false
  131. } else {
  132. let userModel = DBManager.sharedInstance.database.objects(UserDetailsModel.self)
  133. let userIdentifier = UserDefaultsConstant.getValueFromUserDefults(for: Constant.userIdentifier) as! String
  134. if userModel.contains(where: {$0.appleIdentifier == userIdentifier}) {
  135. quizInstructionView.isHidden = false
  136. } else {
  137. Alert.showAlertWithAction(vc: self, title: Helper.translateText(inputText: "Incomplete Profile"), message: Helper.translateText(inputText: "Please fill up user details and try again!"), alertStyle: .alert, actionTitles: [Helper.translateText(inputText: "CANCEL"), Helper.translateText(inputText: "Edit Profile")], actionStyles: [.cancel, .default], actions: [{_ in
  138. print("cancel click")
  139. }, { [self]_ in
  140. print("yes click")
  141. //Navigate to User details
  142. DispatchQueue.main.async {
  143. let loaderVC = self.storyboard?.instantiateViewController(withIdentifier:"UserDetailsViewController" ) as! UserDetailsViewController
  144. self.navigationController?.pushViewController(loaderVC, animated: true)
  145. }
  146. }])
  147. }
  148. }
  149. }
  150. }
  151. @IBAction func quizInstructionAction(_ sender: UIButton) {
  152. switch sender.tag {
  153. case 0:
  154. quizInstructionView.isHidden = true
  155. DispatchQueue.main.async {
  156. // let quizVC = self.storyboard?.instantiateViewController(withIdentifier: "TakeQuizViewController") as! TakeQuizViewController
  157. // quizVC.topicId = self.topicId
  158. // self.navigationController?.pushViewController(quizVC, animated: false)
  159. let quizVC = self.storyboard?.instantiateViewController(withIdentifier: "AnimationTakeQuizViewController") as! AnimationTakeQuizViewController
  160. quizVC.topicId = self.topicId
  161. quizVC.topicIndex = self.topicIndex
  162. quizVC.mainTopicIndex = self.mainTopicIndex
  163. self.navigationController?.pushViewController(quizVC, animated: false)
  164. }
  165. break
  166. case 1:
  167. quizInstructionView.isHidden = true
  168. break
  169. default:
  170. break
  171. }
  172. }
  173. }
  174. extension IntroductionViewController: UITableViewDelegate, UITableViewDataSource {
  175. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  176. return Constant.quizInstruction.count
  177. }
  178. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  179. guard let cell = tableView.dequeueReusableCell(withIdentifier: "OptionsTableViewCell", for: indexPath) as? OptionsTableViewCell else {
  180. return UITableViewCell()
  181. }
  182. if indexPath.row > 3 {
  183. cell.optionTitleLabel.text = "\(Constant.bullet) \(indexPath.row-4)/5 \(Helper.translateText(inputText: Constant.quizInstruction[indexPath.row]))"
  184. } else {
  185. cell.optionTitleLabel.text = Helper.translateText(inputText: Constant.quizInstruction[indexPath.row])
  186. }
  187. return cell
  188. }
  189. }