127 lines
4.2 KiB
Swift
127 lines
4.2 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
|
|
|
|
/// The screen shown to a new user to select their use case for the app.
|
|
struct AuthenticationQRLoginConfirmScreen: View {
|
|
// MARK: - Properties
|
|
|
|
// MARK: Private
|
|
|
|
@Environment(\.theme) private var theme
|
|
@ScaledMetric private var iconSize = 70.0
|
|
|
|
// MARK: Public
|
|
|
|
@ObservedObject var context: AuthenticationQRLoginConfirmViewModel.Context
|
|
|
|
var body: some View {
|
|
GeometryReader { geometry in
|
|
VStack(alignment: .leading, spacing: 0) {
|
|
ScrollView {
|
|
titleContent
|
|
.padding(.top, OnboardingMetrics.topPaddingToNavigationBar)
|
|
codeView
|
|
}
|
|
.readableFrame()
|
|
|
|
footerContent
|
|
.padding(.bottom, geometry.safeAreaInsets.bottom > 0 ? 20 : 36)
|
|
}
|
|
.padding(.horizontal, 16)
|
|
}
|
|
.background(theme.colors.background.ignoresSafeArea())
|
|
}
|
|
|
|
/// The screen's title and instructions.
|
|
var titleContent: some View {
|
|
VStack(spacing: 16) {
|
|
Image(Asset.Images.authenticationQrloginConfirmIcon.name)
|
|
.frame(width: iconSize, height: iconSize)
|
|
.padding(.bottom, 16)
|
|
|
|
Text(VectorL10n.authenticationQrLoginConfirmTitle)
|
|
.font(theme.fonts.title3SB)
|
|
.multilineTextAlignment(.center)
|
|
.foregroundColor(theme.colors.primaryContent)
|
|
.accessibilityIdentifier("titleLabel")
|
|
|
|
Text(VectorL10n.authenticationQrLoginConfirmSubtitle)
|
|
.font(theme.fonts.body)
|
|
.multilineTextAlignment(.center)
|
|
.foregroundColor(theme.colors.secondaryContent)
|
|
.padding(.bottom, 24)
|
|
.accessibilityIdentifier("subtitleLabel")
|
|
}
|
|
}
|
|
|
|
@ViewBuilder
|
|
var codeView: some View {
|
|
if let code = context.viewState.confirmationCode {
|
|
Text(code)
|
|
.multilineTextAlignment(.center)
|
|
.font(theme.fonts.title1)
|
|
.foregroundColor(theme.colors.primaryContent)
|
|
.padding(.top, 80)
|
|
.accessibilityIdentifier("confirmationCodeLabel")
|
|
}
|
|
}
|
|
|
|
/// The screen's footer.
|
|
var footerContent: some View {
|
|
VStack(spacing: 16) {
|
|
Text(VectorL10n.authenticationQrLoginConfirmAlert)
|
|
.padding(10)
|
|
.multilineTextAlignment(.center)
|
|
.font(theme.fonts.body)
|
|
.foregroundColor(theme.colors.alert)
|
|
.shapedBorder(color: theme.colors.alert, borderWidth: 1, shape: RoundedRectangle(cornerRadius: 8))
|
|
.fixedSize(horizontal: false, vertical: true)
|
|
.padding(.bottom, 12)
|
|
.accessibilityIdentifier("alertText")
|
|
|
|
// Button(action: confirm) {
|
|
// Text(VectorL10n.confirm)
|
|
// }
|
|
// .buttonStyle(PrimaryActionButtonStyle(font: theme.fonts.bodySB))
|
|
// .accessibilityIdentifier("confirmButton")
|
|
|
|
Button(action: cancel) {
|
|
Text(VectorL10n.cancel)
|
|
}
|
|
.buttonStyle(SecondaryActionButtonStyle(font: theme.fonts.bodySB))
|
|
.accessibilityIdentifier("cancelButton")
|
|
}
|
|
}
|
|
|
|
/// Sends the `confirm` view action.
|
|
func confirm() {
|
|
context.send(viewAction: .confirm)
|
|
}
|
|
|
|
/// Sends the `cancel` view action.
|
|
func cancel() {
|
|
context.send(viewAction: .cancel)
|
|
}
|
|
}
|
|
|
|
// MARK: - Previews
|
|
|
|
struct AuthenticationQRLoginConfirm_Previews: PreviewProvider {
|
|
static let stateRenderer = MockAuthenticationQRLoginConfirmScreenState.stateRenderer
|
|
|
|
static var previews: some View {
|
|
stateRenderer.screenGroup(addNavigation: true)
|
|
.theme(.light).preferredColorScheme(.light)
|
|
.navigationViewStyle(.stack)
|
|
stateRenderer.screenGroup(addNavigation: true)
|
|
.theme(.dark).preferredColorScheme(.dark)
|
|
.navigationViewStyle(.stack)
|
|
}
|
|
}
|