mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-21 00:52:43 +02:00
67df1a3e95
Merge commit 'af0b6d4be985d9f26e5111d3fa01389c7321949f' into feature/7276_FOSS_Merge_1_27_11 # Conflicts: # Config/AppVersion.xcconfig # Gemfile.lock # IDETemplateMacros.plist # Podfile # Podfile.lock # README.md # Riot/Modules/Authentication/AuthenticationCoordinator.swift # Riot/Modules/Room/CellData/RoomBubbleCellData.m # Riot/target.yml # RiotNSE/NotificationService.swift # RiotSwiftUI/Modules/Authentication/ServerSelection/AuthenticationServerSelectionModels.swift # RiotSwiftUI/Modules/Authentication/ServerSelection/AuthenticationServerSelectionViewModel.swift # RiotSwiftUI/Modules/Authentication/ServerSelection/Coordinator/AuthenticationServerSelectionCoordinator.swift # RiotSwiftUI/Modules/Authentication/ServerSelection/View/AuthenticationServerSelectionScreen.swift # RiotSwiftUI/Modules/Room/CompletionSuggestion/Service/CompletionSuggestionService.swift # fastlane/Fastfile
71 lines
2.1 KiB
Swift
71 lines
2.1 KiB
Swift
//
|
|
// Copyright 2021-2024 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 SwiftUI
|
|
|
|
// MARK: View model
|
|
|
|
enum ChangePasswordViewModelResult: CustomStringConvertible {
|
|
/// Submit with old and new passwords and sign out of all devices option
|
|
case submit(oldPassword: String, newPassword: String, signoutAllDevices: Bool)
|
|
|
|
/// A string representation of the result, ignoring any associated values that could leak PII.
|
|
var description: String {
|
|
switch self {
|
|
case .submit:
|
|
return "submit"
|
|
}
|
|
}
|
|
}
|
|
|
|
// MARK: View
|
|
|
|
struct ChangePasswordViewState: BindableState {
|
|
/// Requirements text for the new password
|
|
var passwordRequirements: String
|
|
/// View state that can be bound to from SwiftUI.
|
|
var bindings: ChangePasswordBindings
|
|
|
|
/// Whether the user can submit the form: old password and new passwords should be entered
|
|
var canSubmit: Bool {
|
|
!bindings.oldPassword.isEmpty
|
|
&& !bindings.newPassword1.isEmpty
|
|
&& !bindings.newPassword2.isEmpty
|
|
}
|
|
}
|
|
|
|
struct ChangePasswordBindings {
|
|
/// The password input by the user.
|
|
var oldPassword: String
|
|
/// The new password input by the user.
|
|
var newPassword1: String
|
|
/// The new password confirmation input by the user.
|
|
var newPassword2: String
|
|
/// The signout all devices checkbox status
|
|
var signoutAllDevices: Bool
|
|
/// Information describing the currently displayed alert.
|
|
var alertInfo: AlertInfo<ChangePasswordErrorType>?
|
|
}
|
|
|
|
enum ChangePasswordViewAction {
|
|
/// Send an email to the entered address.
|
|
case submit
|
|
/// Toggle sign out of all devices
|
|
case toggleSignoutAllDevices
|
|
}
|
|
|
|
enum ChangePasswordErrorType: Hashable {
|
|
/// The password has been changed on the server
|
|
case passwordChangeSucceeded
|
|
/// An error response from the homeserver.
|
|
case mxError(String)
|
|
/// User entered new passwords do not match
|
|
case passwordsDontMatch
|
|
/// An unknown error occurred.
|
|
case unknown
|
|
}
|