63 lines
2.0 KiB
Swift
63 lines
2.0 KiB
Swift
//
|
|
// Copyright 2021-2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
// Please see LICENSE in the repository root for full details.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
typealias AuthenticationVerifyEmailViewModelType = StateStoreViewModel<AuthenticationVerifyEmailViewState, AuthenticationVerifyEmailViewAction>
|
|
|
|
class AuthenticationVerifyEmailViewModel: AuthenticationVerifyEmailViewModelType, AuthenticationVerifyEmailViewModelProtocol {
|
|
// MARK: - Properties
|
|
|
|
// MARK: Private
|
|
|
|
// MARK: Public
|
|
|
|
var callback: (@MainActor (AuthenticationVerifyEmailViewModelResult) -> Void)?
|
|
|
|
// MARK: - Setup
|
|
|
|
init(homeserver: AuthenticationHomeserverViewData, emailAddress: String = "") {
|
|
let viewState = AuthenticationVerifyEmailViewState(homeserver: homeserver,
|
|
bindings: AuthenticationVerifyEmailBindings(emailAddress: emailAddress))
|
|
super.init(initialViewState: viewState)
|
|
}
|
|
|
|
// MARK: - Public
|
|
|
|
override func process(viewAction: AuthenticationVerifyEmailViewAction) {
|
|
switch viewAction {
|
|
case .send:
|
|
Task { await callback?(.send(state.bindings.emailAddress)) }
|
|
case .resend:
|
|
Task { await callback?(.resend) }
|
|
case .cancel:
|
|
Task { await callback?(.cancel) }
|
|
case .goBack:
|
|
Task { await callback?(.goBack) }
|
|
}
|
|
}
|
|
|
|
@MainActor func updateForSentEmail() {
|
|
state.hasSentEmail = true
|
|
}
|
|
|
|
@MainActor func goBackToEnterEmailForm() {
|
|
state.hasSentEmail = false
|
|
}
|
|
|
|
@MainActor func displayError(_ type: AuthenticationVerifyEmailErrorType) {
|
|
switch type {
|
|
case .mxError(let message):
|
|
state.bindings.alertInfo = AlertInfo(id: type,
|
|
title: VectorL10n.error,
|
|
message: message)
|
|
case .unknown:
|
|
state.bindings.alertInfo = AlertInfo(id: type)
|
|
}
|
|
}
|
|
}
|