No Description

LoginView.swift 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. //
  2. // LogIn.swift
  3. // Comedores Sociales
  4. //
  5. // Created by Hector Carrion on 10/24/20.
  6. //
  7. import SwiftUI
  8. struct LoginView: View {
  9. @EnvironmentObject var loginVM: LoginViewModel
  10. @State var email: String = ""
  11. @State var password: String = ""
  12. @State var showingRegister: Bool = false
  13. @State private var showingAlert = false
  14. var body: some View {
  15. VStack {
  16. WelcomeImage()
  17. WelcomeText()
  18. EmailField(email: $email)
  19. PasswordField(password: $password)
  20. if loginVM.response == false {
  21. Text("Information incorrect, please try again")
  22. .offset(y: -10)
  23. .foregroundColor(.red)
  24. } else if loginVM.response == true {
  25. Text("Login successful 🎉")
  26. .offset(y: -10)
  27. .foregroundColor(.green)
  28. }
  29. Button(action: {
  30. let authData = Authentication(email: email, password: password)
  31. if authData.isComplete() {
  32. loginVM.login(data: authData)
  33. } else {
  34. // alert
  35. self.showingAlert = true
  36. }
  37. }) {
  38. LoginText()
  39. }
  40. Button(action: {self.showingRegister.toggle()}) {
  41. RegisterText()
  42. }
  43. .sheet(isPresented: $showingRegister, content: {RegisterView()})
  44. .alert(isPresented: $showingAlert) {
  45. Alert(title: Text("Fields incomplete"), message: Text("Please enter a valid email and password"), dismissButton: .default(Text("OK")))
  46. }
  47. }
  48. .padding()
  49. }
  50. }
  51. struct WelcomeText: View {
  52. var body: some View {
  53. Text("Comedores Sociales")
  54. .font(.largeTitle)
  55. .fontWeight(.semibold)
  56. .padding(.bottom, 20)
  57. }
  58. }
  59. struct WelcomeImage: View {
  60. var body: some View {
  61. Image("logInImage")
  62. .resizable()
  63. .aspectRatio(contentMode: .fill)
  64. .frame(width: 150, height: 150)
  65. .clipped()
  66. //.cornerRadius(150)
  67. //.padding(.bottom, 75)
  68. }
  69. }
  70. struct LoginText: View {
  71. var body: some View {
  72. Text("Login")
  73. .font(.headline)
  74. .foregroundColor(.white)
  75. .padding()
  76. .frame(width: 220, height: 50)
  77. .background(Color.blue)
  78. .cornerRadius(5)
  79. .padding(.bottom, 5)
  80. }
  81. }
  82. struct RegisterText: View {
  83. var body: some View {
  84. Text("Don't have an account? Register")
  85. .font(.headline)
  86. .foregroundColor(.gray)
  87. .padding()
  88. .frame(width: 350, height: 50)
  89. .background(Color.clear)
  90. .cornerRadius(5)
  91. }
  92. }
  93. struct EmailField: View {
  94. @Binding var email: String
  95. @Environment(\.colorScheme) var colorScheme
  96. var body: some View {
  97. TextField("Email", text: $email)
  98. .autocapitalization(.none)
  99. .padding()
  100. .background(colorScheme == .dark ? darkGreyColor : lightGreyColor)
  101. .cornerRadius(5.0)
  102. .padding(.bottom, 5)
  103. }
  104. }
  105. struct PasswordField: View {
  106. @Binding var password: String
  107. @Environment(\.colorScheme) var colorScheme
  108. var body: some View {
  109. SecureField("Password", text: $password)
  110. .autocapitalization(.none)
  111. .padding()
  112. .background(colorScheme == .dark ? darkGreyColor : lightGreyColor)
  113. .cornerRadius(5.0)
  114. .padding(.bottom, 20)
  115. }
  116. }