// // Copyright 2025 Element Creations Ltd. // Copyright 2022-2025 New Vector Ltd. // // SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial. // Please see LICENSE files in the repository root for full details. // import Combine import SwiftUI typealias SoftLogoutScreenViewModelType = StateStoreViewModelV2 class SoftLogoutScreenViewModel: SoftLogoutScreenViewModelType, SoftLogoutScreenViewModelProtocol { private var actionsSubject: PassthroughSubject = .init() var actions: AnyPublisher { actionsSubject.eraseToAnyPublisher() } init(credentials: SoftLogoutScreenCredentials, homeserver: LoginHomeserver, keyBackupNeeded: Bool, password: String = "") { let bindings = SoftLogoutScreenBindings(password: password) let viewState = SoftLogoutScreenViewState(credentials: credentials, homeserver: homeserver, keyBackupNeeded: keyBackupNeeded, bindings: bindings) super.init(initialViewState: viewState) } override func process(viewAction: SoftLogoutScreenViewAction) { switch viewAction { case .login: actionsSubject.send(.login(state.bindings.password)) case .forgotPassword: actionsSubject.send(.forgotPassword) case .clearAllData: actionsSubject.send(.clearAllData) case .continueWithOAuth: actionsSubject.send(.continueWithOAuth) case .updateWindow(let window): guard state.window != window else { return } Task { state.window = window } } } @MainActor func displayError(_ type: SoftLogoutScreenErrorType) { switch type { case .alert(let message): state.bindings.alertInfo = AlertInfo(id: type, title: L10n.commonError, message: message) case .refreshTokenAlert: state.bindings.alertInfo = AlertInfo(id: type, title: L10n.commonServerNotSupported, message: L10n.screenLoginErrorRefreshTokens) case .unknown: state.bindings.alertInfo = AlertInfo(id: type) } } }