zircles-ios/Zircles/Views/WelcomeView.swift

174 lines
6.9 KiB
Swift

//
// WelcomeView.swift
// Zircles
//
// Created by Francisco Gindre on 6/23/20.
// Copyright © 2020 Electric Coin Company. All rights reserved.
//
import SwiftUI
import MnemonicSwift
import ZcashLightClientKit
struct WelcomeView: View {
@State var username: String = ""
@State var seedPhrase: String = ""
@State var birthdayHeight: String = ""
@State var isWelcome = false
@State var showError = false
@State var error: Error? = nil
var body: some View {
ZStack {
Color.background.edgesIgnoringSafeArea(.all)
VStack(alignment: .leading, spacing: 16) {
Text("It looks like you are a new user, let's get to know you! What is your name?")
.fontWeight(.heavy)
.foregroundColor(Color.textDarkGray)
.frame(alignment: .leading)
VStack(alignment: .leading, spacing: 3) {
Text("Name or Nickname")
.foregroundColor(.textLightGray)
.fontWeight(.heavy)
.font(.footnote)
.frame(alignment: .leading)
Card(isOn: .constant(true),cornerRadius: 5,padding: 8) {
TextField("some title text", text: $username)
.foregroundColor(Color.textDarkGray)
.font(.system(size: 14, weight: .heavy, design: .default))
}
}.padding(.all, 0)
Text("Import an existing Zcash wallet by entering the seed words of that wallet here")
.fontWeight(.heavy)
.foregroundColor(Color.textDarkGray)
.frame(alignment: .leading)
VStack(alignment: .leading, spacing: 4) {
Text("Existing Wallet Seed Phrase")
.foregroundColor(.textLightGray)
.fontWeight(.heavy)
.font(.footnote)
.frame(alignment: .leading)
Card(isOn: .constant(true),cornerRadius: 5,padding: 8) {
TextField("Existing Wallet Seed Phrase", text: $seedPhrase)
.foregroundColor(Color.textDarkGray)
.font(.system(size: 14, weight: .heavy, design: .default))
}
}.padding(.all, 0)
VStack(alignment: .leading, spacing: 4) {
Text("Birthday height")
.foregroundColor(.textLightGray)
.fontWeight(.heavy)
.font(.footnote)
.frame(alignment: .leading)
Card(isOn: .constant(true),cornerRadius: 5,padding: 8) {
TextField("Birthday height", text: $birthdayHeight)
.foregroundColor(Color.textDarkGray)
.font(.system(size: 14, weight: .heavy, design: .default))
}
}.padding(.all, 0)
Spacer()
Text("The Zircles app will only send ZEC to other Zircles app.")
.foregroundColor(.textLightGray)
.fontWeight(.heavy)
.font(.footnote)
.frame(alignment: .center)
Spacer()
Button(action: {
do {
try initialize()
} catch {
ZirclesEnvironment.shared.errorPublisher.send(error)
}
}) {
Text("Add Wallet to Zircles")
.font(.system(size: 20, weight: .bold, design: .default))
.shadow(color:Color(.sRGBLinear, red: 0.2, green: 0.2, blue: 0.2, opacity: 0.5), radius: 1, x: 0, y: 2)
.foregroundColor(Color.background)
.modifier(ZcashButtonBackground(buttonShape: .roundedCorners(fillStyle: .gradient(gradient: LinearGradient.zButtonGradient))))
.shadow(color: Color(red: 0.2, green: 0.2, blue: 0.2).opacity(0.5), radius: 25, x: 10, y: 10)
.frame(height: 50)
}.disabled(!validInput())
.opacity(validInput() ? 1.0 : 0.6)
NavigationLink(
destination: HomeScreen(),
isActive: $isWelcome,
label: {
EmptyView()
})
}
.padding([.horizontal,.bottom], 30)
}
.navigationBarTitle(Text("Welcome"))
.alert(isPresented: $showError) {
Alert(
title: Text("Error"),
message: Text( error == nil ? "It would be embarrasing if it wasn't a hackathon" : "Error: \( ZirclesEnvironment.WalletError.mapError(error: error!).localizedDescription)"),
dismissButton: .default(Text("dismiss"), action: {
self.error = nil
}))
}.onReceive(ZirclesEnvironment.shared.errorPublisher) { e in
self.error = e
self.showError = true
if let _ = e as? SeedManager.SeedManagerError {
ZirclesEnvironment.shared.nuke()
}
}
}
func initialize() throws {
ZircleDataStorage.default.saveUsername(self.username)
try self.importSeed()
try self.importBirthday()
try ZirclesEnvironment.shared.initialize()
self.isWelcome = true
}
func validInput() -> Bool {
validSeedPhrase() && validName() && validBirthday()
}
func validSeedPhrase() -> Bool {
Mnemonic.validate(mnemonic: seedPhrase)
}
func validName() -> Bool {
!username.isEmpty
}
func validBirthday() -> Bool {
birthdayHeight.isEmpty || Int64(birthdayHeight) != nil
}
func validateSeed(_ seed: String) -> Bool {
MnemonicSeedProvider.default.isValid(mnemonic: seed)
}
func importBirthday() throws {
let b = BlockHeight(self.birthdayHeight.trimmingCharacters(in: .whitespacesAndNewlines)) ?? ZcashSDK.SAPLING_ACTIVATION_HEIGHT
try SeedManager.default.importBirthday(b)
}
func importSeed() throws {
let trimmedSeedPhrase = seedPhrase.trimmingCharacters(in: .whitespacesAndNewlines)
guard !trimmedSeedPhrase.isEmpty, let seedBytes =
MnemonicSeedProvider.default.toSeed(mnemonic: trimmedSeedPhrase) else { throw ZirclesEnvironment.WalletError.createFailed
}
try SeedManager.default.importSeed(seedBytes)
try SeedManager.default.importPhrase(bip39: trimmedSeedPhrase)
}
}
struct WelcomeView_Previews: PreviewProvider {
static var previews: some View {
NavigationView {
WelcomeView()
}
}
}