With #5116 removing the `verificationRequestAccepted` view state and its `.startSasVerification` button action we now need another way of starting the SAS flows whenever the verification requests gets accepted. As such a state machine transition from `acceptingVerificationRequest` to `verificationRequestAccepted` will now automatically call `startSasVerification` on the SessionVerificationProxy.
150 lines
5.3 KiB
Swift
150 lines
5.3 KiB
Swift
//
|
|
// 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 Compound
|
|
import SwiftUI
|
|
|
|
enum SessionVerificationScreenViewModelAction {
|
|
case finished
|
|
}
|
|
|
|
enum SessionVerificationScreenViewAction {
|
|
case acceptVerificationRequest
|
|
case ignoreVerificationRequest
|
|
case requestVerification
|
|
case restart
|
|
case accept
|
|
case decline
|
|
case cancel
|
|
case done
|
|
}
|
|
|
|
struct SessionVerificationScreenViewState: BindableState {
|
|
let flow: SessionVerificationScreenFlow
|
|
let learnMoreURL: URL
|
|
|
|
var verificationState: SessionVerificationScreenStateMachine.State
|
|
|
|
var headerIcon: (keyPath: KeyPath<CompoundIcons, Image>, style: BigIcon.Style) {
|
|
switch verificationState {
|
|
case .initial, .acceptingVerificationRequest, .requestingVerification,
|
|
.verificationRequestAccepted, .startingSasVerification, .sasVerificationStarted,
|
|
.cancelling:
|
|
switch flow {
|
|
case .deviceInitiator, .deviceResponder:
|
|
return (\.devices, .defaultSolid)
|
|
case .userInitiator, .userResponder:
|
|
return (\.userProfileSolid, .defaultSolid)
|
|
}
|
|
case .showingChallenge:
|
|
return (\.reaction, .defaultSolid)
|
|
case .acceptingChallenge:
|
|
return (\.reaction, .defaultSolid)
|
|
case .decliningChallenge:
|
|
return (\.reaction, .defaultSolid)
|
|
case .verified:
|
|
return (\.checkCircleSolid, .successSolid)
|
|
case .cancelled:
|
|
return (\.infoSolid, .alertSolid)
|
|
}
|
|
}
|
|
|
|
var titleAccessibilityIdentifier: String {
|
|
verificationState == .verified ? A11yIdentifiers.sessionVerificationScreen.verificationComplete : ""
|
|
}
|
|
|
|
var title: String? {
|
|
switch verificationState {
|
|
case .initial, .acceptingVerificationRequest, .requestingVerification,
|
|
.verificationRequestAccepted, .startingSasVerification, .sasVerificationStarted,
|
|
.cancelling:
|
|
switch flow {
|
|
case .deviceInitiator:
|
|
return L10n.screenSessionVerificationUseAnotherDeviceTitle
|
|
case .userInitiator:
|
|
return L10n.screenSessionVerificationUserInitiatorTitle
|
|
case .deviceResponder, .userResponder:
|
|
return L10n.screenSessionVerificationRequestTitle
|
|
}
|
|
case .showingChallenge:
|
|
return L10n.screenSessionVerificationCompareEmojisTitle
|
|
case .acceptingChallenge:
|
|
return L10n.screenSessionVerificationCompareEmojisTitle
|
|
case .decliningChallenge:
|
|
return L10n.screenSessionVerificationCompareEmojisTitle
|
|
case .verified:
|
|
switch flow {
|
|
case .deviceInitiator, .deviceResponder:
|
|
return L10n.screenSessionVerificationDeviceVerified
|
|
case .userInitiator, .userResponder:
|
|
return L10n.commonVerificationComplete
|
|
}
|
|
case .cancelled:
|
|
return L10n.commonVerificationFailed
|
|
}
|
|
}
|
|
|
|
var message: String {
|
|
switch verificationState {
|
|
case .initial, .acceptingVerificationRequest, .requestingVerification,
|
|
.verificationRequestAccepted, .startingSasVerification, .sasVerificationStarted,
|
|
.cancelling:
|
|
switch flow {
|
|
case .deviceInitiator:
|
|
return L10n.screenSessionVerificationUseAnotherDeviceSubtitle
|
|
case .userInitiator:
|
|
return L10n.screenSessionVerificationUserInitiatorSubtitle
|
|
case .deviceResponder:
|
|
return L10n.screenSessionVerificationRequestSubtitle
|
|
case .userResponder:
|
|
return L10n.screenSessionVerificationUserResponderSubtitle
|
|
}
|
|
case .acceptingChallenge:
|
|
return L10n.screenSessionVerificationCompareEmojisSubtitle
|
|
case .decliningChallenge:
|
|
return L10n.screenSessionVerificationCompareEmojisSubtitle
|
|
case .showingChallenge:
|
|
switch flow {
|
|
case .deviceInitiator, .deviceResponder:
|
|
return L10n.screenSessionVerificationCompareEmojisSubtitle
|
|
case .userInitiator, .userResponder:
|
|
return L10n.screenSessionVerificationCompareEmojisUserSubtitle
|
|
}
|
|
case .verified:
|
|
switch flow {
|
|
case .deviceInitiator, .deviceResponder:
|
|
return L10n.screenSessionVerificationCompleteSubtitle
|
|
case .userInitiator, .userResponder:
|
|
return L10n.screenSessionVerificationCompleteUserSubtitle
|
|
}
|
|
|
|
case .cancelled:
|
|
return L10n.screenSessionVerificationFailedSubtitle
|
|
}
|
|
}
|
|
|
|
var isWaiting: Bool {
|
|
switch verificationState {
|
|
case .acceptingVerificationRequest, .requestingVerification, .verificationRequestAccepted,
|
|
.startingSasVerification, .sasVerificationStarted, .cancelling:
|
|
true
|
|
default:
|
|
false
|
|
}
|
|
}
|
|
|
|
var showIgnoreButton: Bool {
|
|
switch flow {
|
|
case .deviceResponder, .userResponder:
|
|
true
|
|
default:
|
|
false
|
|
}
|
|
}
|
|
}
|