113 lines
4.1 KiB
Swift
113 lines
4.1 KiB
Swift
// File created from SimpleUserProfileExample
|
|
// $ createScreen.sh Spaces/SpaceCreation/SpaceCreationEmailInvites SpaceCreationEmailInvites
|
|
//
|
|
// 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
|
|
|
|
struct SpaceCreationEmailInvites: View {
|
|
// MARK: - Properties
|
|
|
|
@ObservedObject var viewModel: SpaceCreationEmailInvitesViewModel.Context
|
|
|
|
// MARK: - Private
|
|
|
|
@Environment(\.theme) private var theme: ThemeSwiftUI
|
|
|
|
// MARK: - Public
|
|
|
|
@ViewBuilder
|
|
var body: some View {
|
|
VStack {
|
|
ThemableNavigationBar(title: nil, showBackButton: true) {
|
|
viewModel.send(viewAction: .back)
|
|
} closeAction: {
|
|
viewModel.send(viewAction: .cancel)
|
|
}
|
|
mainView
|
|
.animation(.easeInOut(duration: 0.2), value: viewModel.viewState.loading)
|
|
.waitOverlay(show: viewModel.viewState.loading)
|
|
}
|
|
.background(theme.colors.background.ignoresSafeArea())
|
|
.navigationBarHidden(true)
|
|
}
|
|
|
|
// MARK: - Private
|
|
|
|
@ViewBuilder
|
|
private var mainView: some View {
|
|
VStack {
|
|
GeometryReader { reader in
|
|
ScrollView {
|
|
VStack {
|
|
headerView
|
|
Spacer()
|
|
formView
|
|
}
|
|
.frame(minHeight: reader.size.height - 2)
|
|
}
|
|
}
|
|
footerView
|
|
}
|
|
.padding(EdgeInsets(top: 0, leading: 16, bottom: 24, trailing: 16))
|
|
}
|
|
|
|
@ViewBuilder
|
|
private var headerView: some View {
|
|
VStack {
|
|
Text(VectorL10n.spacesCreationEmailInvitesTitle)
|
|
.multilineTextAlignment(.center)
|
|
.font(theme.fonts.title3SB)
|
|
.foregroundColor(theme.colors.primaryContent)
|
|
Spacer().frame(height: 20)
|
|
Text(VectorL10n.spacesCreationEmailInvitesMessage)
|
|
.multilineTextAlignment(.center)
|
|
.font(theme.fonts.body)
|
|
.foregroundColor(theme.colors.secondaryContent)
|
|
}
|
|
}
|
|
|
|
@ViewBuilder
|
|
private var formView: some View {
|
|
VStack {
|
|
VStack(spacing: 20) {
|
|
ForEach(viewModel.emailInvites.indices, id: \.self) { index in
|
|
RoundedBorderTextField(title: VectorL10n.spacesCreationEmailInvitesEmailTitle, placeHolder: VectorL10n.spacesCreationEmailInvitesEmailTitle, text: $viewModel.emailInvites[index], footerText: viewModel.viewState.emailAddressesValid[index] ? nil : VectorL10n.authInvalidEmail, isError: !viewModel.viewState.emailAddressesValid[index], configuration: UIKitTextInputConfiguration(keyboardType: .emailAddress, returnKeyType: index < viewModel.emailInvites.endIndex - 1 ? .next : .done, autocapitalizationType: .none, autocorrectionType: .no))
|
|
.accessibility(identifier: "emailTextField")
|
|
}
|
|
}
|
|
.padding(.horizontal, 2)
|
|
.padding(.bottom)
|
|
Text(VectorL10n.or)
|
|
.font(theme.fonts.caption1)
|
|
.foregroundColor(theme.colors.secondaryContent)
|
|
.padding(.bottom)
|
|
OptionButton(icon: Asset.Images.spacesInviteUsers.image, title: VectorL10n.spacesCreationInviteByUsername, detailMessage: nil) {
|
|
viewModel.send(viewAction: .inviteByUsername)
|
|
}
|
|
.padding(.bottom)
|
|
}
|
|
}
|
|
|
|
@ViewBuilder
|
|
private var footerView: some View {
|
|
ThemableButton(icon: nil, title: VectorL10n.next) {
|
|
viewModel.send(viewAction: .done)
|
|
}
|
|
}
|
|
}
|
|
|
|
// MARK: - Previews
|
|
|
|
struct SpaceCreationEmailInvites_Previews: PreviewProvider {
|
|
static let stateRenderer = MockSpaceCreationEmailInvitesScreenState.stateRenderer
|
|
static var previews: some View {
|
|
stateRenderer.screenGroup(addNavigation: true).theme(.light).preferredColorScheme(.light)
|
|
stateRenderer.screenGroup(addNavigation: true).theme(.dark).preferredColorScheme(.dark)
|
|
}
|
|
}
|