DashboardViewController.swift 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. //
  2. // DashboardViewController.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 17/08/21.
  6. //
  7. import UIKit
  8. import SideMenu
  9. import Alamofire
  10. import RealmSwift
  11. class DashboardViewController: UIViewController {
  12. @IBOutlet weak var tableView: UITableView!
  13. @IBOutlet var navigationBar: UINavigationBar!
  14. var realm = try! Realm()
  15. private var timer: DispatchSourceTimer?
  16. override func viewDidLoad() {
  17. super.viewDidLoad()
  18. // Do any additional setup after loading the view.
  19. tableView.delegate = self
  20. tableView.dataSource = self
  21. tableView.tableFooterView = UIView()
  22. startTimer()
  23. }
  24. override func viewWillAppear(_ animated: Bool) {
  25. tableView.reloadData()
  26. navigationBar.topItem?.title = Helper.translateText(inputText: "Dashboard")
  27. }
  28. func startTimer() {
  29. let queue = DispatchQueue(label: Bundle.main.bundleIdentifier! + ".timer")
  30. timer = DispatchSource.makeTimerSource(queue: queue)
  31. timer!.schedule(deadline: .now(), repeating: .seconds(60))
  32. timer!.setEventHandler { [weak self] in
  33. // do whatever stuff you want on the background queue here here
  34. DispatchQueue.main.async {
  35. // update your model objects and/or UI here
  36. ApiManager.generateCookie()
  37. self!.saveScoreboard()
  38. }
  39. }
  40. timer!.resume()
  41. }
  42. func stopTimer() {
  43. timer?.cancel()
  44. timer = nil
  45. }
  46. /*
  47. // MARK: - Navigation
  48. // In a storyboard-based application, you will often want to do a little preparation before navigation
  49. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  50. // Get the new view controller using segue.destination.
  51. // Pass the selected object to the new view controller.
  52. }
  53. */
  54. @IBAction func menuNavAction(_ sender: Any) {
  55. let menu = storyboard!.instantiateViewController(withIdentifier: "SideMenuNavigationController") as! SideMenuNavigationController
  56. present(menu, animated: true, completion: nil)
  57. }
  58. }
  59. extension DashboardViewController: UITableViewDelegate, UITableViewDataSource {
  60. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  61. return 2
  62. }
  63. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  64. guard let cell = tableView.dequeueReusableCell(withIdentifier: "DashboardTableViewCell", for: indexPath) as? DashboardTableViewCell else {
  65. return UITableViewCell()
  66. }
  67. if indexPath.row == 0 {
  68. cell.itemImageView.image = UIImage(named: "ic_home_item_02")
  69. cell.headLabel.text = Helper.translateText(inputText: "Learn about Finance")
  70. cell.contentLabel.text = Helper.translateText(inputText: "Start your Innings with the Basics of Personal Finance")
  71. } else if indexPath.row == 1 {
  72. cell.itemImageView.image = UIImage(named: "score")
  73. cell.headLabel.text = Helper.translateText(inputText: "Scoreboard")
  74. cell.contentLabel.text = Helper.translateText(inputText: "Get your Scores for the Different Learning Modules & Topics")
  75. } else {
  76. cell.itemImageView.image = UIImage(named: "chat-bubble")
  77. cell.headLabel.text = Helper.translateText(inputText: "Certification Test")
  78. cell.contentLabel.text = Helper.translateText(inputText: "A test to check your knowledge about all aspects of Insurance")
  79. }
  80. return cell
  81. }
  82. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  83. if indexPath.row == 0 {
  84. DispatchQueue.main.async {
  85. let learningModuleVC = self.storyboard?.instantiateViewController(withIdentifier: "LearningModulesViewController") as! LearningModulesViewController
  86. self.navigationController?.pushViewController(learningModuleVC, animated: false)
  87. }
  88. } else if indexPath.row == 1 {
  89. DispatchQueue.main.async {
  90. let learningModuleVC = self.storyboard?.instantiateViewController(withIdentifier: "ScoreboardViewController") as! ScoreboardViewController
  91. self.navigationController?.pushViewController(learningModuleVC, animated: false)
  92. }
  93. } else {
  94. DispatchQueue.main.async {
  95. let learningModuleVC = self.storyboard?.instantiateViewController(withIdentifier: "CertificationTestViewController") as! CertificationTestViewController
  96. self.navigationController?.pushViewController(learningModuleVC, animated: false)
  97. }
  98. }
  99. }
  100. }
  101. extension DashboardViewController {
  102. func saveScoreboard() {
  103. let saveScoreDB = DBManager.sharedInstance.database.objects(SaveScoreBoard.self)
  104. print(saveScoreDB)
  105. for score in saveScoreDB {
  106. if score.synced == false {
  107. let url = "\(ApiUrl.BASE_URL + ApiUrl.API_SCOREBOARD)/save.json"
  108. print(url)
  109. let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
  110. let headers: HTTPHeaders = [
  111. "Content-Type": "application/json",
  112. "Accept": "application/json",
  113. "Cookie": "\(Constant.CookieName) = \(cookieValue)"
  114. ]
  115. print(headers)
  116. let params: Parameters?
  117. params = [
  118. "student" : score.student,
  119. "level" : score.levelId,
  120. "topic" : score.topicId,
  121. "runs" : score.runs,
  122. "wickets" : score.wickets,
  123. "noOfAttempts" : score.noOfAttempts
  124. ]
  125. print(params!)
  126. AF.request(url, method: .post, parameters: params, encoding: JSONEncoding.default, headers: headers).responseJSON { response in
  127. if let responseStatus = response.response?.statusCode {
  128. if responseStatus != 201 {
  129. print("error...")
  130. } else {
  131. try! self.realm.write {
  132. score.synced = true
  133. }
  134. }
  135. }
  136. }
  137. }
  138. }
  139. }
  140. }