mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-27 03:44:26 +02:00
4a2ed35658
Scale SSO button icon with dynamic type. Add an onCommit parameter to RoundedBorderTextField and use to submit instead of onEditingChanged.
173 lines
6.6 KiB
Swift
173 lines
6.6 KiB
Swift
//
|
|
// Copyright 2021 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 AuthenticationLoginScreen: View {
|
|
|
|
// MARK: - Properties
|
|
|
|
// MARK: Private
|
|
|
|
@Environment(\.theme) private var theme: ThemeSwiftUI
|
|
|
|
/// A boolean that can be toggled to give focus to the password text field.
|
|
/// This must be manually set back to `false` when the text field finishes editing.
|
|
@State private var isPasswordFocused = false
|
|
|
|
// MARK: Public
|
|
|
|
@ObservedObject var viewModel: AuthenticationLoginViewModel.Context
|
|
|
|
var body: some View {
|
|
ScrollView {
|
|
VStack(spacing: 0) {
|
|
header
|
|
.padding(.top, OnboardingMetrics.topPaddingToNavigationBar)
|
|
.padding(.bottom, 36)
|
|
|
|
serverInfo
|
|
.padding(.leading, 12)
|
|
|
|
Rectangle()
|
|
.fill(theme.colors.quinaryContent)
|
|
.frame(height: 1)
|
|
.padding(.vertical, 21)
|
|
|
|
if viewModel.viewState.homeserver.showLoginForm {
|
|
loginForm
|
|
}
|
|
|
|
if viewModel.viewState.homeserver.showLoginForm && viewModel.viewState.showSSOButtons {
|
|
Text(VectorL10n.or)
|
|
.foregroundColor(theme.colors.secondaryContent)
|
|
.padding(.top, 16)
|
|
}
|
|
|
|
if viewModel.viewState.showSSOButtons {
|
|
ssoButtons
|
|
.padding(.top, 16)
|
|
}
|
|
|
|
}
|
|
.readableFrame()
|
|
.padding(.horizontal, 16)
|
|
.padding(.bottom, 16)
|
|
}
|
|
.background(theme.colors.background.ignoresSafeArea())
|
|
.alert(item: $viewModel.alertInfo) { $0.alert }
|
|
.accentColor(theme.colors.accent)
|
|
}
|
|
|
|
/// The header containing a Welcome Back title.
|
|
var header: some View {
|
|
Text(VectorL10n.authenticationLoginTitle)
|
|
.font(theme.fonts.title2B)
|
|
.multilineTextAlignment(.center)
|
|
.foregroundColor(theme.colors.primaryContent)
|
|
}
|
|
|
|
/// The sever information section that includes a button to select a different server.
|
|
var serverInfo: some View {
|
|
AuthenticationServerInfoSection(address: viewModel.viewState.homeserver.address,
|
|
showMatrixDotOrgInfo: viewModel.viewState.homeserver.isMatrixDotOrg) {
|
|
viewModel.send(viewAction: .selectServer)
|
|
}
|
|
}
|
|
|
|
/// The form with text fields for username and password, along with a submit button.
|
|
var loginForm: some View {
|
|
VStack(spacing: 14) {
|
|
RoundedBorderTextField(placeHolder: VectorL10n.authenticationLoginUsername,
|
|
text: $viewModel.username,
|
|
isFirstResponder: false,
|
|
configuration: UIKitTextInputConfiguration(returnKeyType: .next,
|
|
autocapitalizationType: .none,
|
|
autocorrectionType: .no),
|
|
onEditingChanged: usernameEditingChanged,
|
|
onCommit: { isPasswordFocused = true })
|
|
.accessibilityIdentifier("usernameTextField")
|
|
|
|
Spacer().frame(height: 20)
|
|
|
|
RoundedBorderTextField(placeHolder: VectorL10n.authPasswordPlaceholder,
|
|
text: $viewModel.password,
|
|
isFirstResponder: isPasswordFocused,
|
|
configuration: UIKitTextInputConfiguration(returnKeyType: .done,
|
|
isSecureTextEntry: true),
|
|
onEditingChanged: passwordEditingChanged,
|
|
onCommit: submit)
|
|
.accessibilityIdentifier("passwordTextField")
|
|
|
|
Button { viewModel.send(viewAction: .forgotPassword) } label: {
|
|
Text(VectorL10n.authenticationLoginForgotPassword)
|
|
.font(theme.fonts.body)
|
|
}
|
|
.frame(maxWidth: .infinity, alignment: .trailing)
|
|
.padding(.bottom, 8)
|
|
|
|
Button(action: submit) {
|
|
Text(VectorL10n.next)
|
|
}
|
|
.buttonStyle(PrimaryActionButtonStyle())
|
|
.disabled(!viewModel.viewState.hasValidCredentials || viewModel.viewState.isLoading)
|
|
.accessibilityIdentifier("nextButton")
|
|
}
|
|
}
|
|
|
|
/// A list of SSO buttons that can be used for login.
|
|
var ssoButtons: some View {
|
|
VStack(spacing: 16) {
|
|
ForEach(viewModel.viewState.homeserver.ssoIdentityProviders) { provider in
|
|
AuthenticationSSOButton(provider: provider) {
|
|
viewModel.send(viewAction: .continueWithSSO(provider))
|
|
}
|
|
.accessibilityIdentifier("ssoButton")
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Parses the username for a homeserver.
|
|
func usernameEditingChanged(isEditing: Bool) {
|
|
guard !isEditing, !viewModel.username.isEmpty else { return }
|
|
|
|
viewModel.send(viewAction: .parseUsername)
|
|
}
|
|
|
|
/// Resets the password field focus.
|
|
func passwordEditingChanged(isEditing: Bool) {
|
|
guard !isEditing else { return }
|
|
isPasswordFocused = false
|
|
}
|
|
|
|
/// Sends the `next` view action so long as valid credentials have been input.
|
|
func submit() {
|
|
guard viewModel.viewState.hasValidCredentials else { return }
|
|
viewModel.send(viewAction: .next)
|
|
}
|
|
}
|
|
|
|
// MARK: - Previews
|
|
|
|
@available(iOS 15.0, *)
|
|
struct AuthenticationLogin_Previews: PreviewProvider {
|
|
static let stateRenderer = MockAuthenticationLoginScreenState.stateRenderer
|
|
static var previews: some View {
|
|
stateRenderer.screenGroup(addNavigation: true)
|
|
.navigationViewStyle(.stack)
|
|
}
|
|
}
|