LoadingAnimationViewController.swift 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. //
  2. // LoadingAnimationViewController.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 12/08/21.
  6. //
  7. import UIKit
  8. import SwiftyGif
  9. import Toast_Swift
  10. class LoadingAnimationViewController: UIViewController {
  11. @IBOutlet weak var imageView: UIImageView!
  12. @IBOutlet weak var loadingLabel: UILabel!
  13. //@IBOutlet weak var linearProgressBar: DSGradientProgressView!
  14. @IBOutlet var activityIndicator: UIActivityIndicatorView!
  15. var viewModel = LoadingAnimationViewModel()
  16. let group = DispatchGroup()
  17. var isWaiting = false
  18. override func viewDidLoad() {
  19. super.viewDidLoad()
  20. // Do any additional setup after loading the view.
  21. viewModel.delegate = self
  22. self.isWaiting = true
  23. setupUI()
  24. }
  25. override func viewWillAppear(_ animated: Bool) {
  26. //Progress View
  27. //linearProgressBar.startProgress()
  28. activityIndicator.startAnimating()
  29. //GIF Animation
  30. let gif = try! UIImage(gifName: "loading.gif")
  31. self.imageView.setGifImage(gif, loopCount: -1)
  32. self.loadingLabel.text = Helper.translateText(inputText: "Loading data please wait")
  33. // Call performTask after a delay of 5 second
  34. DispatchQueue.global(qos: .background).asyncAfter(deadline: .now() + 5) {
  35. DispatchQueue.main.async {
  36. self.loadingLabel.text = Helper.translateText(inputText: "An exciting journey awaits you, please wait for a couple of minutes")
  37. }
  38. }
  39. }
  40. func setupUI() {
  41. if UserDefaults.standard.bool(forKey: "introduction") {
  42. if Reachability.isConnectedToNetwork() {
  43. DispatchQueue.main.async {
  44. self.viewModel.generateCookie()
  45. }
  46. } else {
  47. Alert.showInternetFailureAlert(on: self)
  48. }
  49. } else {
  50. // Call performTask after a delay of 4 second
  51. DispatchQueue.global(qos: .background).asyncAfter(deadline: .now() + 4) {
  52. DispatchQueue.main.async {
  53. self.navigation()
  54. }
  55. }
  56. }
  57. }
  58. func callAPI() {
  59. group.enter()
  60. viewModel.topicDownloader()
  61. group.enter()
  62. viewModel.getLevel()
  63. group.enter()
  64. viewModel.getQuestionBank(offset: 0)
  65. group.enter()
  66. viewModel.getQuestion(offset: 0)
  67. group.enter()
  68. viewModel.getChoice(offset: 0)
  69. group.enter()
  70. viewModel.getScoreBoard()
  71. group.notify(queue: .main, execute: {
  72. // Update the UI
  73. self.isWaiting = false
  74. print("All API called")
  75. self.activityIndicator.stopAnimating()
  76. //self.linearProgressBar.stopProgress()
  77. self.navigation()
  78. })
  79. }
  80. /*
  81. // MARK: - Navigation
  82. // In a storyboard-based application, you will often want to do a little preparation before navigation
  83. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  84. // Get the new view controller using segue.destination.
  85. // Pass the selected object to the new view controller.
  86. }
  87. */
  88. }
  89. extension LoadingAnimationViewController : LoadingAnimationViewProtocol {
  90. func callDataAPI() {
  91. self.callAPI()
  92. }
  93. func groupLeave() {
  94. group.leave()
  95. }
  96. func stopActivityIndicator() {
  97. //linearProgressBar.stopProgress()
  98. self.activityIndicator.stopAnimating()
  99. }
  100. func showToastMessage(message: String) {
  101. self.view.makeToast(message)
  102. }
  103. func navigation() {
  104. if UserDefaults.standard.bool(forKey: "introduction") {
  105. DispatchQueue.main.async {
  106. let introVC = self.storyboard?.instantiateViewController(withIdentifier: "IntroductionViewController") as! IntroductionViewController
  107. introVC.topicName = "Introduction"
  108. self.navigationController?.pushViewController(introVC, animated: false)
  109. }
  110. } else {
  111. DispatchQueue.main.async {
  112. let dashboardVC = self.storyboard?.instantiateViewController(withIdentifier: "DashboardViewController") as! DashboardViewController
  113. self.navigationController?.pushViewController(dashboardVC, animated: false)
  114. }
  115. }
  116. }
  117. }