LoginViewController.swift 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. //
  2. // LoginViewController.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 18/08/22.
  6. //
  7. import UIKit
  8. import Toast_Swift
  9. class LoginViewController: UIViewController {
  10. @IBOutlet var lockView: UIView!
  11. @IBOutlet var lockImageView: UIImageView!
  12. @IBOutlet var signInTitleLabel: UILabel!
  13. @IBOutlet var usernameTF: UITextField!
  14. @IBOutlet var passwordTF: UITextField!
  15. @IBOutlet var signInButton: UIButton!
  16. var viewModel = LoginViewModel()
  17. var timer = Timer()
  18. override func viewDidLoad() {
  19. super.viewDidLoad()
  20. // Do any additional setup after loading the view.
  21. viewModel.delegate = self
  22. setupUI()
  23. // Add a tap gesture recognizer to the view
  24. let tapGesture = UITapGestureRecognizer(target: self, action: #selector(handleTap(_:)))
  25. self.view.addGestureRecognizer(tapGesture)
  26. }
  27. override func viewDidDisappear(_ animated: Bool) {
  28. scheduledTimerWithTimeInterval()
  29. }
  30. override var preferredStatusBarStyle : UIStatusBarStyle {
  31. return .lightContent
  32. }
  33. func setupUI() {
  34. lockView.layer.borderWidth = 1
  35. lockView.layer.borderColor = #colorLiteral(red: 0.1058823529, green: 0.3764705882, blue: 0.5960784314, alpha: 1)
  36. lockView.layer.cornerRadius = lockView.frame.height / 2
  37. let attributes: [NSAttributedString.Key: Any] = [
  38. .foregroundColor: #colorLiteral(red: 1, green: 1, blue: 1, alpha: 0.69), // Change to your desired color
  39. ]
  40. usernameTF.attributedPlaceholder = NSAttributedString(string: PlaceHolderText.UserName, attributes: attributes)
  41. usernameTF.layer.borderWidth = 2
  42. usernameTF.layer.borderColor = #colorLiteral(red: 0.1058823529, green: 0.3764705882, blue: 0.5960784314, alpha: 1)
  43. usernameTF.layer.cornerRadius = 10
  44. passwordTF.attributedPlaceholder = NSAttributedString(string: PlaceHolderText.Password, attributes: attributes)
  45. passwordTF.layer.borderWidth = 2
  46. passwordTF.layer.borderColor = #colorLiteral(red: 0.1058823529, green: 0.3764705882, blue: 0.5960784314, alpha: 1)
  47. passwordTF.layer.cornerRadius = 10
  48. signInButton.layer.cornerRadius = 15
  49. }
  50. @objc func handleTap(_ sender: UITapGestureRecognizer) {
  51. // Call this method when a tap gesture is recognized
  52. self.view.endEditing(true) // Resign first responder status for the text field
  53. }
  54. func login() {
  55. if usernameTF.text?.isEmpty == true {
  56. self.view.makeToast("Enter username!")
  57. } else if passwordTF.text?.isEmpty == true {
  58. self.view.makeToast("Enter password!")
  59. } else {
  60. if Reachability.isConnectedToNetwork() {
  61. viewModel.login(email: usernameTF.text!, password: passwordTF.text!)
  62. } else {
  63. Alert.showInternetFailureAlert(on: self)
  64. }
  65. }
  66. }
  67. func scheduledTimerWithTimeInterval() {
  68. let time = UserDefaults.standard.value(forKey: "tokenExpire") as! Int
  69. timer = Timer.scheduledTimer(timeInterval: TimeInterval(time), target: self, selector: #selector(self.refresh), userInfo: nil, repeats: true)
  70. }
  71. @objc func refresh() {
  72. Dispatch.background {
  73. self.viewModel.refreshToken()
  74. }
  75. }
  76. /*
  77. // MARK: - Navigation
  78. // In a storyboard-based application, you will often want to do a little preparation before navigation
  79. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  80. // Get the new view controller using segue.destination.
  81. // Pass the selected object to the new view controller.
  82. }
  83. */
  84. @IBAction func signInAction(_ sender: Any) {
  85. login()
  86. }
  87. }
  88. extension LoginViewController: LoginViewProtocol {
  89. func navigate() {
  90. UserDefaults.standard.set(1, forKey: "menuActiveIndex")
  91. UserDefaults.standard.synchronize()
  92. let vc = self.storyboard?.instantiateViewController(withIdentifier: "StudyMaterialsViewController") as! StudyMaterialsViewController
  93. self.navigationController?.pushViewController(vc, animated: false)
  94. }
  95. func startLoader() {
  96. ActivityIndicator.start()
  97. }
  98. func stopLoader() {
  99. ActivityIndicator.stop()
  100. }
  101. func showError(error: String) {
  102. self.view.makeToast(error)
  103. }
  104. }