* Update strings and add productionAppName value for the new placeholder. * Fix snapshots. * Fix more snapshots.
129 lines
4.6 KiB
Swift
129 lines
4.6 KiB
Swift
//
|
|
// Copyright 2022 New Vector Ltd
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
/// The screen shown at the beginning of the onboarding flow.
|
|
struct AuthenticationStartScreen: View {
|
|
@Environment(\.verticalSizeClass) private var verticalSizeClass
|
|
|
|
@ObservedObject var context: AuthenticationStartScreenViewModel.Context
|
|
|
|
var body: some View {
|
|
GeometryReader { geometry in
|
|
VStack(alignment: .leading, spacing: 0) {
|
|
Spacer()
|
|
.frame(height: UIConstants.spacerHeight(in: geometry))
|
|
|
|
content
|
|
.frame(width: geometry.size.width)
|
|
.accessibilityIdentifier(A11yIdentifiers.authenticationStartScreen.hidden)
|
|
|
|
buttons
|
|
.frame(width: geometry.size.width)
|
|
.padding(.bottom, UIConstants.actionButtonBottomPadding)
|
|
.padding(.bottom, geometry.safeAreaInsets.bottom > 0 ? 0 : 16)
|
|
.padding(.top, 8)
|
|
|
|
Spacer()
|
|
.frame(height: UIConstants.spacerHeight(in: geometry))
|
|
}
|
|
.frame(maxHeight: .infinity)
|
|
.safeAreaInset(edge: .bottom) {
|
|
Button {
|
|
context.send(viewAction: .reportProblem)
|
|
} label: {
|
|
Text(L10n.commonReportAProblem)
|
|
.font(.compound.bodySM)
|
|
.foregroundColor(.compound.textSecondary)
|
|
.padding(.bottom)
|
|
}
|
|
.frame(width: geometry.size.width)
|
|
}
|
|
}
|
|
.navigationBarHidden(true)
|
|
.background {
|
|
AuthenticationStartScreenBackgroundImage()
|
|
}
|
|
}
|
|
|
|
var content: some View {
|
|
VStack(spacing: 0) {
|
|
Spacer()
|
|
|
|
if verticalSizeClass == .regular {
|
|
Spacer()
|
|
|
|
AuthenticationStartLogo(isOnGradient: true)
|
|
}
|
|
|
|
Spacer()
|
|
|
|
VStack(spacing: 8) {
|
|
Text(L10n.screenOnboardingWelcomeTitle)
|
|
.font(.compound.headingLGBold)
|
|
.foregroundColor(.compound.textPrimary)
|
|
.multilineTextAlignment(.center)
|
|
Text(L10n.screenOnboardingWelcomeMessage(InfoPlistReader.main.productionAppName))
|
|
.font(.compound.bodyLG)
|
|
.foregroundColor(.compound.textSecondary)
|
|
.multilineTextAlignment(.center)
|
|
}
|
|
.padding()
|
|
.fixedSize(horizontal: false, vertical: true)
|
|
|
|
Spacer()
|
|
}
|
|
.padding(.bottom)
|
|
.padding(.horizontal, 16)
|
|
.readableFrame()
|
|
}
|
|
|
|
/// The main action buttons.
|
|
var buttons: some View {
|
|
VStack(spacing: 16) {
|
|
if context.viewState.isQRCodeLoginEnabled {
|
|
Button { context.send(viewAction: .loginWithQR) } label: {
|
|
Label(L10n.screenOnboardingSignInWithQrCode, icon: \.qrCode)
|
|
}
|
|
.buttonStyle(.compound(.primary))
|
|
.accessibilityIdentifier(A11yIdentifiers.authenticationStartScreen.signInWithQr)
|
|
}
|
|
|
|
Button { context.send(viewAction: .loginManually) } label: {
|
|
Text(context.viewState.isQRCodeLoginEnabled ? L10n.screenOnboardingSignInManually : L10n.actionContinue)
|
|
}
|
|
.buttonStyle(.compound(.primary))
|
|
.accessibilityIdentifier(A11yIdentifiers.authenticationStartScreen.signIn)
|
|
}
|
|
.padding(.horizontal, verticalSizeClass == .compact ? 128 : 24)
|
|
.readableFrame()
|
|
}
|
|
}
|
|
|
|
// MARK: - Previews
|
|
|
|
struct AuthenticationStartScreen_Previews: PreviewProvider, TestablePreview {
|
|
static let viewModel = {
|
|
ServiceLocator.shared.settings.qrCodeLoginEnabled = true
|
|
return AuthenticationStartScreenViewModel(appSettings: ServiceLocator.shared.settings)
|
|
}()
|
|
|
|
static var previews: some View {
|
|
AuthenticationStartScreen(context: viewModel.context)
|
|
}
|
|
}
|