* Add signposts to performance tests. - Update flow to include support for the migration screen. * If the welcome screen shows, click on the button. * Ensure a clean simulator each run. * Add accessibility identifier for migration screen if required. * Handle walking into the room and back out again. * use iphone 14 pro to match what's used in xcode. * Remove ApplicationTests as duplicated in LoginTests. We measure app startup time in LoginTests as part of the flow - we may as well avoid spending 60s doing only that measurement in ApplicationTests * Sleep 10s, the ui is otherwise showing up in random order. * Revert "Remove ApplicationTests as duplicated in LoginTests." This reverts commit 8670710315bcd0d6c3c3046f534b32b4c728b837. * Update script to parse out correct values from results file. * Allow cancellation of password prompt in any order. * Remove test timeout, performance tests will always take a while. * Adjust parsing further * Remove ApplicationTests. * Move to a more elegant way to wait for something to disappear. * Linting. * Fix unit tests. --------- Co-authored-by: Doug <douglase@element.io> Co-authored-by: Doug <6060466+pixlwave@users.noreply.github.com>
110 lines
3.4 KiB
Swift
110 lines
3.4 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
|
|
|
|
struct WelcomeScreen: View {
|
|
@ScaledMetric var iconSize = 20
|
|
@ObservedObject var context: WelcomeScreenScreenViewModel.Context
|
|
|
|
var body: some View {
|
|
FullscreenDialog(topPadding: UIConstants.welcomeScreenTopPadding) {
|
|
mainContent
|
|
} bottomContent: {
|
|
button
|
|
}
|
|
.background(OnboardingBackgroundImage())
|
|
.environment(\.backgroundStyle, AnyShapeStyle(Color.clear))
|
|
.onAppear {
|
|
context.send(viewAction: .appeared)
|
|
}
|
|
}
|
|
|
|
@ViewBuilder
|
|
private var mainContent: some View {
|
|
VStack(spacing: 42) {
|
|
header
|
|
list
|
|
}
|
|
}
|
|
|
|
@ViewBuilder
|
|
private var header: some View {
|
|
VStack(spacing: 32) {
|
|
Image(asset: Asset.Images.launchLogo)
|
|
.resizable()
|
|
.scaledToFit()
|
|
.frame(width: 118, height: 118)
|
|
.accessibilityHidden(true)
|
|
title
|
|
}
|
|
}
|
|
|
|
@ViewBuilder
|
|
private var title: some View {
|
|
VStack(spacing: 12) {
|
|
Text(context.viewState.title)
|
|
.font(Font.compound.headingLGBold)
|
|
.foregroundColor(Color.compound.textPrimary)
|
|
.multilineTextAlignment(.center)
|
|
Text(context.viewState.subtitle)
|
|
.font(Font.compound.bodyMD)
|
|
.foregroundColor(Color.compound.textPrimary)
|
|
.multilineTextAlignment(.center)
|
|
}
|
|
}
|
|
|
|
private var list: some View {
|
|
VStack(alignment: .leading, spacing: 4) {
|
|
RoundedLabelItem(title: context.viewState.bullet1, listPosition: .top) {
|
|
Image(systemName: "exclamationmark.transmission")
|
|
.foregroundColor(.compound.iconSecondary)
|
|
}
|
|
RoundedLabelItem(title: context.viewState.bullet2, listPosition: .middle) {
|
|
Image(systemName: "lock")
|
|
.foregroundColor(.compound.iconSecondary)
|
|
}
|
|
RoundedLabelItem(title: context.viewState.bullet3, listPosition: .bottom) {
|
|
Image(systemName: "plus.bubble")
|
|
.foregroundColor(.compound.iconSecondary)
|
|
}
|
|
}
|
|
.fixedSize(horizontal: false, vertical: true)
|
|
.frame(maxWidth: .infinity)
|
|
}
|
|
|
|
@ViewBuilder
|
|
private var button: some View {
|
|
Button {
|
|
context.send(viewAction: .doneTapped)
|
|
} label: {
|
|
Text(context.viewState.buttonTitle)
|
|
}
|
|
.buttonStyle(.elementAction(.xLarge))
|
|
.accessibilityIdentifier(A11yIdentifiers.welcomeScreen.letsGo)
|
|
}
|
|
}
|
|
|
|
// MARK: - Previews
|
|
|
|
struct WelcomeScreen_Previews: PreviewProvider {
|
|
static let viewModel = WelcomeScreenScreenViewModel()
|
|
|
|
static var previews: some View {
|
|
WelcomeScreen(context: viewModel.context)
|
|
}
|
|
}
|