WelcomeSliderViewController.swift 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. //
  2. // WelcomeSliderViewController.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 19/08/21.
  6. //
  7. import UIKit
  8. class WelcomeSliderViewController: UIViewController {
  9. @IBOutlet weak var backgroundView: UIView!
  10. @IBOutlet weak var imageView: UIImageView!
  11. @IBOutlet weak var contentLabel: UILabel!
  12. @IBOutlet weak var skipButton: UIButton!
  13. @IBOutlet weak var nextButton: UIButton!
  14. var currentPage = 1
  15. override func viewDidLoad() {
  16. super.viewDidLoad()
  17. // Do any additional setup after loading the view.
  18. }
  19. override func viewWillAppear(_ animated: Bool) {
  20. setupUI()
  21. addGesture()
  22. }
  23. func setupUI() {
  24. //Skip button design
  25. skipButton.layer.borderWidth = 1
  26. skipButton.layer.cornerRadius = 5
  27. skipButton.layer.borderColor = UIColor.black.cgColor
  28. //Next button design
  29. nextButton.layer.borderWidth = 1
  30. nextButton.layer.cornerRadius = 5
  31. nextButton.layer.borderColor = UIColor.black.cgColor
  32. contentChange()
  33. }
  34. func addGesture() {
  35. let leftSwipe = UISwipeGestureRecognizer(target: self, action: #selector(handleSwipes(_:)))
  36. let rightSwipe = UISwipeGestureRecognizer(target: self, action: #selector(handleSwipes(_:)))
  37. leftSwipe.direction = .left
  38. rightSwipe.direction = .right
  39. view.addGestureRecognizer(leftSwipe)
  40. view.addGestureRecognizer(rightSwipe)
  41. }
  42. func contentChange() {
  43. if currentPage == 1 {
  44. backgroundView.backgroundColor = AppColor.onboarding1
  45. imageView.image = UIImage(named: Constant.onboarding1)
  46. contentLabel.text = Helper.translateText(inputText: Constant.content1)
  47. nextButton.setTitle(Helper.translateText(inputText: Constant.Next), for: .normal)
  48. skipButton.isHidden = false
  49. } else if currentPage == 2 {
  50. backgroundView.backgroundColor = AppColor.onboarding2
  51. imageView.image = UIImage(named: Constant.onboarding2)
  52. contentLabel.text = Helper.translateText(inputText: Constant.content2)
  53. nextButton.setTitle(Helper.translateText(inputText: Constant.Next), for: .normal)
  54. skipButton.isHidden = false
  55. } else if currentPage == 3 {
  56. backgroundView.backgroundColor = AppColor.onboarding3
  57. imageView.image = UIImage(named: Constant.onboarding3)
  58. contentLabel.text = Helper.translateText(inputText: Constant.content3)
  59. nextButton.setTitle(Helper.translateText(inputText: Constant.GetStarted), for: .normal)
  60. skipButton.isHidden = true
  61. }
  62. }
  63. @objc func handleSwipes(_ sender: UISwipeGestureRecognizer) {
  64. if sender.direction == .left {
  65. print("Swipe left")
  66. // show the view from the right side
  67. if currentPage > 3 {
  68. currentPage += 1
  69. contentChange()
  70. }
  71. }
  72. if sender.direction == .right {
  73. print("Swipe right")
  74. // show the view from the left side
  75. if currentPage > 1 {
  76. currentPage -= 1
  77. contentChange()
  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 nextButtonAction(_ sender: UIButton) {
  90. if sender.currentTitle == Constant.GetStarted {
  91. //Set Welcome slider status to false
  92. UserDefaults.standard.set(false, forKey: Constant.welcomeSlider)
  93. UserDefaults.standard.synchronize()
  94. //Navigate to login screen
  95. DispatchQueue.main.async {
  96. let loginVC = self.storyboard?.instantiateViewController(withIdentifier:"LoginViewController" ) as! LoginViewController
  97. self.navigationController?.pushViewController(loginVC, animated: true)
  98. }
  99. } else {
  100. currentPage += 1
  101. contentChange()
  102. }
  103. }
  104. @IBAction func skipButtonAction(_ sender: UIButton) {
  105. //Set Welcome slider status to false
  106. UserDefaults.standard.set(false, forKey: Constant.welcomeSlider)
  107. UserDefaults.standard.synchronize()
  108. //Navigate to login screen
  109. DispatchQueue.main.async {
  110. let loginVC = self.storyboard?.instantiateViewController(withIdentifier:"LoginViewController" ) as! LoginViewController
  111. self.navigationController?.pushViewController(loginVC, animated: true)
  112. }
  113. }
  114. }