Page Menu
Home
Musing Studio
Search
Configure Global Search
Log In
Files
F10668986
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
6 KB
Subscribers
None
View Options
diff --git a/Shared/Account/AccountView.swift b/Shared/Account/AccountView.swift
index 25cd901..d147f31 100644
--- a/Shared/Account/AccountView.swift
+++ b/Shared/Account/AccountView.swift
@@ -1,123 +1,104 @@
import SwiftUI
struct AccountView: View {
@State var accountModel = AccountModel()
@State private var username: String = ""
@State private var password: String = ""
@State private var server: String = ""
@State private var isLoggingIn: Bool = false
@State private var isLoggedIn: Bool = false
@State private var isShowingAlert: Bool = false
@State private var alertMessage: String = ""
var body: some View {
if isLoggedIn {
VStack {
- Spacer()
HStack {
- Text("Logged in as")
- Text(accountModel.username ?? "UNKNOWN")
- .font(.system(.body, design: .monospaced))
- Text("on")
- Text(accountModel.server ?? "UNKNOWN")
- .font(.system(.body, design: .monospaced))
+ Text("Logged in as \(accountModel.username ?? "UNKNOWN") on \(accountModel.server ?? "UNKNOWN")")
}
Spacer()
Button(action: logoutHandler, label: {
Text("Logout")
})
- Spacer()
}
} else {
- Form {
- Section(header: Text("Login to your account")) {
- VStack {
- HStack {
- Spacer()
- Image(systemName: "person.circle")
- .foregroundColor(.gray)
- TextField("Username", text: $username)
- Spacer()
- }
- HStack {
- Spacer()
- Image(systemName: "lock.circle")
- .foregroundColor(.gray)
- TextField("Password", text: $password)
- Spacer()
- }
- HStack {
- Spacer()
- Image(systemName: "link.circle")
- .foregroundColor(.gray)
- TextField("Server URL", text: $server)
- Spacer()
- }
- Spacer()
- if isLoggingIn {
- ProgressView("Logging in...")
- } else {
- Button(action: {
- accountModel.login(
- to: server,
- as: username, password: password,
- completion: loginHandler
- )
- isLoggingIn = true
- }, label: {
- Text("Login")
- }).disabled(isLoggedIn)
- }
- Spacer()
- }
+ VStack {
+ HStack {
+ Image(systemName: "person.circle")
+ .foregroundColor(.gray)
+ TextField("Username", text: $username)
+ }
+ HStack {
+ Image(systemName: "lock.circle")
+ .foregroundColor(.gray)
+ SecureField("Password", text: $password)
}
- .padding()
- .alert(isPresented: $isShowingAlert) {
- Alert(
- title: Text("Error Logging In"),
- message: Text(alertMessage),
- dismissButton: .default(Text("OK"))
- )
+ HStack {
+ Image(systemName: "link.circle")
+ .foregroundColor(.gray)
+ TextField("Server URL", text: $server)
}
+ Spacer()
+ if isLoggingIn {
+ ProgressView("Logging in...")
+ } else {
+ Button(action: {
+ accountModel.login(
+ to: server,
+ as: username, password: password,
+ completion: loginHandler
+ )
+ isLoggingIn = true
+ }, label: {
+ Text("Login")
+ }).disabled(isLoggedIn)
+ }
+ }
+ .alert(isPresented: $isShowingAlert) {
+ Alert(
+ title: Text("Error Logging In"),
+ message: Text(alertMessage),
+ dismissButton: .default(Text("OK"))
+ )
}
}
}
func loginHandler(result: Result<UUID, AccountError>) {
do {
_ = try result.get()
isLoggedIn = true
isLoggingIn = false
} catch AccountError.serverNotFound {
alertMessage = """
The server could not be found. Please check that you've entered the information correctly and try again.
"""
isLoggedIn = false
isLoggingIn = false
isShowingAlert = true
} catch AccountError.invalidCredentials {
alertMessage = """
Invalid username or password. Please check that you've entered the information correctly and try again.
"""
isLoggedIn = false
isLoggingIn = false
isShowingAlert = true
} catch {
alertMessage = "An unknown error occurred. Please try again."
isLoggedIn = false
isLoggingIn = false
isShowingAlert = true
}
}
func logoutHandler() {
isLoggedIn = false
isLoggingIn = false
}
}
struct AccountLogin_Previews: PreviewProvider {
static var previews: some View {
AccountView()
}
}
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Thu, May 15, 12:22 PM (23 h, 32 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3239722
Attached To
rWFSUI WriteFreely SwiftUI
Event Timeline
Log In to Comment