2022-05-09 09:52:09 +01:00
|
|
|
//
|
|
|
|
// CreateProfile.swift
|
|
|
|
// SimpleX (iOS)
|
|
|
|
//
|
|
|
|
// Created by Evgeny on 07/05/2022.
|
|
|
|
// Copyright © 2022 SimpleX Chat. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct CreateProfile: View {
|
|
|
|
@EnvironmentObject var m: ChatModel
|
|
|
|
@State private var displayName: String = ""
|
|
|
|
@State private var fullName: String = ""
|
|
|
|
@FocusState private var focusDisplayName
|
|
|
|
@FocusState private var focusFullName
|
|
|
|
|
|
|
|
var body: some View {
|
2022-05-09 17:40:39 +01:00
|
|
|
VStack(alignment: .leading) {
|
|
|
|
Text("Create your profile")
|
|
|
|
.font(.largeTitle)
|
|
|
|
.padding(.bottom, 4)
|
|
|
|
Text("Your profile, contacts and delivered messages are stored on your device.")
|
|
|
|
.padding(.bottom, 4)
|
|
|
|
Text("The profile is only shared with your contacts.")
|
|
|
|
.padding(.bottom)
|
|
|
|
ZStack(alignment: .topLeading) {
|
|
|
|
if !validDisplayName(displayName) {
|
|
|
|
Image(systemName: "exclamationmark.circle")
|
|
|
|
.foregroundColor(.red)
|
|
|
|
.padding(.top, 4)
|
2022-05-09 09:52:09 +01:00
|
|
|
}
|
2022-05-09 17:40:39 +01:00
|
|
|
textField("Display name", text: $displayName)
|
|
|
|
.focused($focusDisplayName)
|
|
|
|
.submitLabel(.next)
|
2022-05-09 09:52:09 +01:00
|
|
|
.onSubmit {
|
2022-05-09 17:40:39 +01:00
|
|
|
if canCreateProfile() { focusFullName = true }
|
|
|
|
else { focusDisplayName = true }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
textField("Full name (optional)", text: $fullName)
|
|
|
|
.focused($focusFullName)
|
|
|
|
.submitLabel(.go)
|
|
|
|
.onSubmit {
|
|
|
|
if canCreateProfile() { createProfile() }
|
|
|
|
else { focusFullName = true }
|
|
|
|
}
|
|
|
|
|
|
|
|
Spacer()
|
|
|
|
|
|
|
|
HStack {
|
|
|
|
Button {
|
|
|
|
hideKeyboard()
|
|
|
|
withAnimation { m.onboardingStage = .step1_SimpleXInfo }
|
|
|
|
} label: {
|
|
|
|
HStack {
|
|
|
|
Image(systemName: "lessthan")
|
|
|
|
Text("About SimpleX")
|
2022-05-09 09:52:09 +01:00
|
|
|
}
|
2022-05-09 17:40:39 +01:00
|
|
|
}
|
2022-05-09 09:52:09 +01:00
|
|
|
|
|
|
|
Spacer()
|
|
|
|
|
|
|
|
HStack {
|
|
|
|
Button {
|
2022-05-09 17:40:39 +01:00
|
|
|
createProfile()
|
2022-05-09 09:52:09 +01:00
|
|
|
} label: {
|
2022-05-09 17:40:39 +01:00
|
|
|
Text("Create")
|
|
|
|
Image(systemName: "greaterthan")
|
2022-05-09 09:52:09 +01:00
|
|
|
}
|
2022-05-09 17:40:39 +01:00
|
|
|
.disabled(!canCreateProfile())
|
2022-05-09 09:52:09 +01:00
|
|
|
}
|
|
|
|
}
|
2022-05-09 17:40:39 +01:00
|
|
|
}
|
|
|
|
.onAppear() {
|
|
|
|
focusDisplayName = true
|
2022-05-09 09:52:09 +01:00
|
|
|
}
|
|
|
|
.padding()
|
|
|
|
}
|
|
|
|
|
|
|
|
func textField(_ placeholder: LocalizedStringKey, text: Binding<String>) -> some View {
|
|
|
|
TextField(placeholder, text: text)
|
|
|
|
.textInputAutocapitalization(.never)
|
|
|
|
.disableAutocorrection(true)
|
|
|
|
.padding(.leading, 28)
|
|
|
|
.padding(.bottom)
|
|
|
|
}
|
|
|
|
|
|
|
|
func createProfile() {
|
|
|
|
hideKeyboard()
|
|
|
|
let profile = Profile(
|
|
|
|
displayName: displayName,
|
|
|
|
fullName: fullName
|
|
|
|
)
|
|
|
|
do {
|
|
|
|
m.currentUser = try apiCreateActiveUser(profile)
|
|
|
|
startChat()
|
|
|
|
withAnimation { m.onboardingStage = .step3_MakeConnection }
|
|
|
|
|
|
|
|
} catch {
|
|
|
|
fatalError("Failed to create user: \(error)")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func hideKeyboard() {
|
|
|
|
UIApplication.shared.sendAction(#selector(UIResponder.resignFirstResponder), to: nil, from: nil, for: nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
func validDisplayName(_ name: String) -> Bool {
|
|
|
|
name.firstIndex(of: " ") == nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func canCreateProfile() -> Bool {
|
|
|
|
displayName != "" && validDisplayName(displayName)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct CreateProfile_Previews: PreviewProvider {
|
|
|
|
static var previews: some View {
|
|
|
|
CreateProfile()
|
|
|
|
}
|
|
|
|
}
|