mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-28 20:29:53 +00:00
* fix: disable create when display name is empty * update version/build 1.0 (17) * update build number (18) * terms and privacy policy
87 lines
3.2 KiB
Swift
87 lines
3.2 KiB
Swift
//
|
|
// WelcomeView.swift
|
|
// SimpleX
|
|
//
|
|
// Created by Evgeny Poberezkin on 18/01/2022.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct WelcomeView: View {
|
|
@EnvironmentObject var chatModel: ChatModel
|
|
@State var displayName: String = ""
|
|
@State var fullName: String = ""
|
|
|
|
var body: some View {
|
|
GeometryReader { g in
|
|
VStack(alignment: .leading) {
|
|
Image("logo")
|
|
.resizable()
|
|
.aspectRatio(contentMode: .fit)
|
|
.frame(width: g.size.width * 0.7)
|
|
.padding(.vertical)
|
|
Text("You control your chat!")
|
|
.font(.title)
|
|
.padding(.bottom)
|
|
Text("The messaging and application platform protecting your privacy and security.")
|
|
.padding(.bottom, 8)
|
|
Text("We don't store any of your contacts or messages (once delivered) on the servers.")
|
|
.padding(.bottom, 32)
|
|
Text("Create profile")
|
|
.font(.largeTitle)
|
|
.padding(.bottom)
|
|
Text("Your profile is stored on your device and shared only with your contacts.")
|
|
.padding(.bottom)
|
|
ZStack(alignment: .topLeading) {
|
|
if !validDisplayName(displayName) {
|
|
Button {
|
|
AlertManager.shared.showAlertMsg(
|
|
title: "Display name",
|
|
message: "Display name can't contain spaces"
|
|
)
|
|
} label: {
|
|
Image(systemName: "exclamationmark.circle")
|
|
.foregroundColor(.red)
|
|
.padding(.top, 4)
|
|
}
|
|
}
|
|
TextField("Display name", text: $displayName)
|
|
.textInputAutocapitalization(.never)
|
|
.disableAutocorrection(true)
|
|
.padding(.leading, 28)
|
|
.padding(.bottom, 2)
|
|
}
|
|
.padding(.bottom)
|
|
TextField("Full name (optional)", text: $fullName)
|
|
.textInputAutocapitalization(.never)
|
|
.disableAutocorrection(true)
|
|
.padding(.leading, 28)
|
|
.padding(.bottom)
|
|
Button("Create") {
|
|
let profile = Profile(
|
|
displayName: displayName,
|
|
fullName: fullName
|
|
)
|
|
do {
|
|
let user = try apiCreateActiveUser(profile)
|
|
chatModel.currentUser = user
|
|
} catch {
|
|
fatalError("Failed to create user: \(error)")
|
|
}
|
|
}
|
|
.disabled(!validDisplayName(displayName) || displayName == "")
|
|
}
|
|
}
|
|
.padding()
|
|
}
|
|
|
|
func validDisplayName(_ name: String) -> Bool {
|
|
name.firstIndex(of: " ") == nil
|
|
}
|
|
}
|
|
|
|
struct WelcomeView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
WelcomeView()
|
|
}
|
|
}
|