2020-07-30 01:50:30 +02:00
|
|
|
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct AddIdentityView: View {
|
|
|
|
@StateObject var viewModel: AddIdentityViewModel
|
2020-08-07 03:41:59 +02:00
|
|
|
@EnvironmentObject var rootViewModel: RootViewModel
|
2020-07-30 01:50:30 +02:00
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
Form {
|
2020-08-03 17:20:51 +02:00
|
|
|
#if os(macOS)
|
2020-08-03 07:54:47 +02:00
|
|
|
Spacer()
|
2020-08-03 17:20:51 +02:00
|
|
|
urlTextField
|
|
|
|
#else
|
2020-07-30 01:50:30 +02:00
|
|
|
urlTextField
|
|
|
|
.autocapitalization(.none)
|
|
|
|
.disableAutocorrection(true)
|
|
|
|
.keyboardType(.URL)
|
|
|
|
#endif
|
|
|
|
Group {
|
|
|
|
if viewModel.loading {
|
|
|
|
ProgressView()
|
|
|
|
} else {
|
|
|
|
Button(
|
|
|
|
action: viewModel.goTapped,
|
|
|
|
label: { Text("go") })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.frame(maxWidth: .infinity, alignment: .center)
|
2020-08-03 17:20:51 +02:00
|
|
|
#if os(macOS)
|
2020-08-03 07:54:47 +02:00
|
|
|
Spacer()
|
2020-08-03 17:20:51 +02:00
|
|
|
#endif
|
2020-07-30 01:50:30 +02:00
|
|
|
}
|
2020-08-03 17:20:51 +02:00
|
|
|
.paddingIfMac()
|
2020-07-30 01:50:30 +02:00
|
|
|
.alertItem($viewModel.alertItem)
|
2020-08-07 03:41:59 +02:00
|
|
|
.onReceive(viewModel.addedIdentityID) { id in
|
|
|
|
withAnimation {
|
|
|
|
rootViewModel.newIdentitySelected(id: id)
|
|
|
|
}
|
|
|
|
}
|
2020-07-30 01:50:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension AddIdentityView {
|
|
|
|
private var urlTextField: some View {
|
|
|
|
TextField("add-identity.instance-url", text: $viewModel.urlFieldText)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-03 17:20:51 +02:00
|
|
|
private extension View {
|
|
|
|
func paddingIfMac() -> some View {
|
|
|
|
#if os(macOS)
|
|
|
|
return padding()
|
|
|
|
#else
|
|
|
|
return self
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-31 23:40:57 +02:00
|
|
|
#if DEBUG
|
2020-07-30 01:50:30 +02:00
|
|
|
struct AddAccountView_Previews: PreviewProvider {
|
|
|
|
static var previews: some View {
|
2020-08-09 07:37:04 +02:00
|
|
|
AddIdentityView(viewModel: .development)
|
2020-07-30 01:50:30 +02:00
|
|
|
}
|
|
|
|
}
|
2020-07-31 23:40:57 +02:00
|
|
|
#endif
|