* Fixes #2508 - Offer user to transition to SSS * Rename `HomeScreenBannerMode.shown` to `HomeScreenBannerMode.show` * Generate and use preview tests for the migration banner * Bump the RustSDK to v1.0.46 * Address PR review comment
71 lines
2.8 KiB
Swift
71 lines
2.8 KiB
Swift
//
|
|
// Copyright 2023, 2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
// Please see LICENSE in the repository root for full details.
|
|
//
|
|
|
|
import Combine
|
|
import SwiftUI
|
|
|
|
struct HomeScreenRecoveryKeyConfirmationBanner: View {
|
|
var context: HomeScreenViewModel.Context
|
|
|
|
var body: some View {
|
|
VStack(alignment: .leading, spacing: 16) {
|
|
VStack(alignment: .leading, spacing: 4) {
|
|
HStack(spacing: 16) {
|
|
Text(L10n.confirmRecoveryKeyBannerTitle)
|
|
.font(.compound.bodyLGSemibold)
|
|
.foregroundColor(.compound.textPrimary)
|
|
|
|
Spacer()
|
|
|
|
Button {
|
|
context.send(viewAction: .skipRecoveryKeyConfirmation)
|
|
} label: {
|
|
Image(systemName: "xmark")
|
|
.foregroundColor(.compound.iconSecondary)
|
|
.frame(width: 12, height: 12)
|
|
}
|
|
}
|
|
Text(L10n.confirmRecoveryKeyBannerMessage)
|
|
.font(.compound.bodyMD)
|
|
.foregroundColor(.compound.textSecondary)
|
|
}
|
|
|
|
Button(L10n.actionContinue) {
|
|
context.send(viewAction: .confirmRecoveryKey)
|
|
}
|
|
.frame(maxWidth: .infinity)
|
|
.buttonStyle(.compound(.primary, size: .medium))
|
|
.accessibilityIdentifier(A11yIdentifiers.homeScreen.recoveryKeyConfirmationBannerContinue)
|
|
}
|
|
.padding(16)
|
|
.background(Color.compound.bgSubtleSecondary)
|
|
.cornerRadius(14)
|
|
.padding(.horizontal, 16)
|
|
}
|
|
}
|
|
|
|
struct HomeScreenRecoveryKeyConfirmationBanner_Previews: PreviewProvider, TestablePreview {
|
|
static let viewModel = buildViewModel()
|
|
|
|
static var previews: some View {
|
|
HomeScreenRecoveryKeyConfirmationBanner(context: viewModel.context)
|
|
}
|
|
|
|
static func buildViewModel() -> HomeScreenViewModel {
|
|
let clientProxy = ClientProxyMock(.init(userID: "@alice:example.com",
|
|
roomSummaryProvider: RoomSummaryProviderMock(.init(state: .loading))))
|
|
|
|
let userSession = UserSessionMock(.init(clientProxy: clientProxy))
|
|
|
|
return HomeScreenViewModel(userSession: userSession,
|
|
analyticsService: ServiceLocator.shared.analytics,
|
|
appSettings: ServiceLocator.shared.settings,
|
|
selectedRoomPublisher: CurrentValueSubject<String?, Never>(nil).asCurrentValuePublisher(),
|
|
userIndicatorController: ServiceLocator.shared.userIndicatorController)
|
|
}
|
|
}
|