// // Copyright 2021 New Vector Ltd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // import SwiftUI // MARK: View model enum AuthenticationForgotPasswordViewModelResult { /// Send an email to the associated address. case send(String) /// Cancel the flow. case cancel /// Email validation is done case done /// Go back to the email form case goBack } // MARK: View struct AuthenticationForgotPasswordViewState: BindableState { /// The homeserver that the user is using to reset their password. let homeserver: AuthenticationHomeserverViewData /// An email has been sent and the app is waiting for the user to tap the link. var hasSentEmail = false /// View state that can be bound to from SwiftUI. var bindings: AuthenticationForgotPasswordBindings /// The message shown in the header while asking for an email address to be entered. var formHeaderMessage: String { VectorL10n.authenticationForgotPasswordInputMessage(homeserver.address) } /// Whether the email address is valid and the user can continue. var hasInvalidAddress: Bool { bindings.emailAddress.isEmpty } } struct AuthenticationForgotPasswordBindings { /// The email address input by the user. var emailAddress: String /// Information describing the currently displayed alert. var alertInfo: AlertInfo? } enum AuthenticationForgotPasswordViewAction { /// Send an email to the entered address. case send /// Send the email once more. case resend /// Email validation is done case done /// Cancel the flow. case cancel /// Go back to enter email adress screen case goBack } enum AuthenticationForgotPasswordErrorType: Hashable { /// An error response from the homeserver. case mxError(String) /// An unknown error occurred. case unknown }