-
-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewrite the Change Password view in SwiftUI
- Loading branch information
Showing
6 changed files
with
114 additions
and
243 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
// | ||
// ChangePassword.swift | ||
// Monal | ||
// | ||
// Created by lissine on 2/8/2024. | ||
// Copyright © 2024 monal-im.org. All rights reserved. | ||
// | ||
|
||
import SwiftUI | ||
|
||
struct ChangePassword: View { | ||
@State private var oldPass = "" | ||
@State private var newPass = "" | ||
|
||
@State private var showAlert = false | ||
@State private var alertPrompt = AlertPrompt(dismissLabel: Text("Close")) | ||
|
||
@StateObject private var overlay = LoadingOverlayState() | ||
|
||
let accountId: NSNumber | ||
|
||
private func errorAlert(title: Text, message: Text = Text("")) { | ||
alertPrompt.title = title | ||
alertPrompt.message = message | ||
showAlert = true | ||
} | ||
private func successAlert(title: Text, message: Text) { | ||
alertPrompt.title = title | ||
alertPrompt.message = message | ||
showAlert = true | ||
} | ||
private func passwordChangeProcessing() { | ||
guard let account = MLXMPPManager.sharedInstance().getConnectedAccount(forID: accountId) else { | ||
errorAlert(title: Text("Account Offline"), message: Text("Please make sure you are connected before changing your password.")) | ||
return | ||
} | ||
|
||
guard MLXMPPManager.sharedInstance().isValidPassword(oldPass, forAccount: accountId) else { | ||
errorAlert(title: Text("Wrong Password!"), message: Text("The current password is not correct.")) | ||
return | ||
} | ||
|
||
showLoadingOverlay(overlay, headlineView: Text("Changing Password"), descriptionView: Text("")) | ||
|
||
account.changePassword(newPass) { success, message in | ||
DispatchQueue.main.async { | ||
hideLoadingOverlay(overlay) | ||
if success { | ||
successAlert(title: Text("Success"), message: Text("The password has been changed")) | ||
MLXMPPManager.sharedInstance().updatePassword(newPass, forAccount: accountId) | ||
} else { | ||
errorAlert(title: Text("Error"), message: Text(message ?? "Could not change the password")) | ||
} | ||
|
||
} | ||
} | ||
|
||
} | ||
|
||
var body: some View { | ||
|
||
Form { | ||
Section(header: Text("Enter your new password. Passwords may not be empty. They may also be governed by server or company policies.")) { | ||
#if IS_QUICKSY | ||
TextField("Current Password", text: $oldPass) | ||
.textInputAutocapitalization(.never) | ||
.disableAutocorrection(true) | ||
.onAppear { | ||
oldPass = MLXMPPManager.sharedInstance().getPasswordForAccount(accountId) | ||
} | ||
#else | ||
SecureField("Current Password", text: $oldPass) | ||
#endif | ||
SecureField("New Password", text: $newPass) | ||
} | ||
|
||
Section { | ||
Button(action: passwordChangeProcessing) { | ||
Text("Change Password") | ||
.frame(maxWidth: .infinity, alignment: .center) | ||
}.disabled(oldPass.isEmpty || newPass.isEmpty) | ||
.alert( | ||
alertPrompt.title, | ||
isPresented: $showAlert | ||
) { | ||
Button("Close") { | ||
} | ||
} message: { | ||
alertPrompt.message | ||
} | ||
|
||
} | ||
}.navigationTitle("Change Password") | ||
.navigationBarTitleDisplayMode(NavigationBarItem.TitleDisplayMode.inline) | ||
.addLoadingOverlay(overlay) | ||
|
||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.