2021-09-25 08:18:22 +00:00
|
|
|
import Defaults
|
|
|
|
import SwiftUI
|
|
|
|
|
2021-10-23 11:51:02 +00:00
|
|
|
struct AccountForm: View {
|
2021-09-25 08:18:22 +00:00
|
|
|
let instance: Instance
|
2021-10-20 22:21:50 +00:00
|
|
|
var selectedAccount: Binding<Account?>?
|
2021-09-25 08:18:22 +00:00
|
|
|
|
|
|
|
@State private var name = ""
|
2021-11-14 23:06:01 +00:00
|
|
|
@State private var username = ""
|
|
|
|
@State private var password = ""
|
2021-09-25 08:18:22 +00:00
|
|
|
|
2021-09-28 20:33:12 +00:00
|
|
|
@State private var isValid = false
|
|
|
|
@State private var isValidated = false
|
|
|
|
@State private var isValidating = false
|
2021-11-14 23:06:01 +00:00
|
|
|
@State private var validationError: String?
|
2021-09-26 20:12:43 +00:00
|
|
|
@State private var validationDebounce = Debounce()
|
2021-09-25 08:18:22 +00:00
|
|
|
|
2021-12-05 17:09:25 +00:00
|
|
|
@Environment(\.colorScheme) private var colorScheme
|
2022-01-06 14:56:03 +00:00
|
|
|
@Environment(\.openURL) private var openURL
|
2021-11-28 14:37:55 +00:00
|
|
|
@Environment(\.presentationMode) private var presentationMode
|
2021-09-25 08:18:22 +00:00
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
VStack {
|
2021-09-28 18:06:05 +00:00
|
|
|
Group {
|
|
|
|
header
|
|
|
|
form
|
2022-12-17 14:57:59 +00:00
|
|
|
#if os(macOS)
|
|
|
|
VStack {
|
|
|
|
validationStatus
|
|
|
|
}
|
|
|
|
.frame(minHeight: 60, alignment: .topLeading)
|
|
|
|
.padding(.horizontal, 15)
|
|
|
|
#endif
|
2021-09-28 18:06:05 +00:00
|
|
|
footer
|
|
|
|
}
|
|
|
|
.frame(maxWidth: 1000)
|
2021-09-26 20:12:43 +00:00
|
|
|
}
|
|
|
|
#if os(iOS)
|
2021-11-08 16:29:35 +00:00
|
|
|
.padding(.vertical)
|
2021-09-28 18:06:05 +00:00
|
|
|
#elseif os(tvOS)
|
2021-11-08 16:29:35 +00:00
|
|
|
.frame(minWidth: 0, maxWidth: .infinity, minHeight: 0, maxHeight: .infinity)
|
2021-12-05 17:09:25 +00:00
|
|
|
.background(Color.background(scheme: colorScheme))
|
2021-09-26 20:12:43 +00:00
|
|
|
#else
|
2022-12-17 14:57:59 +00:00
|
|
|
.frame(width: 400, height: 180)
|
|
|
|
.padding(.vertical)
|
2021-09-26 20:12:43 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
var header: some View {
|
2022-11-25 18:31:48 +00:00
|
|
|
HStack {
|
2021-09-26 20:12:43 +00:00
|
|
|
Text("Add Account")
|
|
|
|
.font(.title2.bold())
|
|
|
|
|
|
|
|
Spacer()
|
|
|
|
|
|
|
|
Button("Cancel") {
|
2021-11-28 14:37:55 +00:00
|
|
|
presentationMode.wrappedValue.dismiss()
|
2021-09-25 08:18:22 +00:00
|
|
|
}
|
2021-09-26 20:12:43 +00:00
|
|
|
#if !os(tvOS)
|
2021-11-08 16:29:35 +00:00
|
|
|
.keyboardShortcut(.cancelAction)
|
2021-09-26 20:12:43 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
.padding(.horizontal)
|
|
|
|
}
|
|
|
|
|
2021-09-28 18:06:05 +00:00
|
|
|
private var form: some View {
|
|
|
|
Group {
|
|
|
|
#if !os(tvOS)
|
|
|
|
Form {
|
|
|
|
formFields
|
|
|
|
#if os(macOS)
|
2021-11-08 16:29:35 +00:00
|
|
|
.padding(.horizontal)
|
2021-09-28 18:06:05 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
formFields
|
|
|
|
#endif
|
|
|
|
}
|
2021-11-14 23:06:01 +00:00
|
|
|
.onChange(of: username) { _ in validate() }
|
|
|
|
.onChange(of: password) { _ in validate() }
|
2021-09-28 18:06:05 +00:00
|
|
|
}
|
|
|
|
|
2022-12-17 14:57:59 +00:00
|
|
|
@ViewBuilder var formFields: some View {
|
|
|
|
TextField("Username", text: $username)
|
|
|
|
SecureField("Password", text: $password)
|
|
|
|
|
|
|
|
#if os(tvOS)
|
|
|
|
VStack {
|
|
|
|
validationStatus
|
|
|
|
}
|
|
|
|
.frame(minHeight: 100)
|
|
|
|
#elseif os(iOS)
|
|
|
|
validationStatus
|
|
|
|
#endif
|
2021-11-14 23:06:01 +00:00
|
|
|
}
|
|
|
|
|
2022-12-17 14:57:59 +00:00
|
|
|
@ViewBuilder var validationStatus: some View {
|
|
|
|
if !username.isEmpty && !password.isEmpty {
|
|
|
|
Section {
|
|
|
|
AccountValidationStatus(
|
|
|
|
app: .constant(instance.app),
|
|
|
|
isValid: $isValid,
|
|
|
|
isValidated: $isValidated,
|
|
|
|
isValidating: $isValidating,
|
|
|
|
error: $validationError
|
|
|
|
)
|
|
|
|
}
|
2021-09-26 20:12:43 +00:00
|
|
|
}
|
|
|
|
}
|
2021-09-25 08:18:22 +00:00
|
|
|
|
2021-09-26 20:12:43 +00:00
|
|
|
var footer: some View {
|
|
|
|
HStack {
|
|
|
|
Spacer()
|
2021-09-25 08:18:22 +00:00
|
|
|
|
2021-09-26 20:12:43 +00:00
|
|
|
Button("Save", action: submitForm)
|
2021-09-28 20:33:12 +00:00
|
|
|
.disabled(!isValid)
|
2021-09-26 20:12:43 +00:00
|
|
|
#if !os(tvOS)
|
|
|
|
.keyboardShortcut(.defaultAction)
|
2021-09-25 08:18:22 +00:00
|
|
|
#endif
|
2021-09-26 20:12:43 +00:00
|
|
|
}
|
|
|
|
.frame(minHeight: 35)
|
2021-09-28 18:06:05 +00:00
|
|
|
#if os(tvOS)
|
|
|
|
.padding(.top, 30)
|
|
|
|
#endif
|
2021-11-08 16:29:35 +00:00
|
|
|
.padding(.horizontal)
|
2021-09-26 20:12:43 +00:00
|
|
|
}
|
2021-09-25 08:18:22 +00:00
|
|
|
|
2021-09-26 20:12:43 +00:00
|
|
|
private func validate() {
|
2021-11-07 21:39:28 +00:00
|
|
|
isValid = false
|
2021-09-26 20:12:43 +00:00
|
|
|
validationDebounce.invalidate()
|
|
|
|
|
2022-08-25 23:36:46 +00:00
|
|
|
guard !username.isEmpty, !password.isEmpty else {
|
2021-09-25 08:18:22 +00:00
|
|
|
validator.reset()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-09-28 20:33:12 +00:00
|
|
|
isValidating = true
|
|
|
|
|
|
|
|
validationDebounce.debouncing(1) {
|
2021-11-14 23:06:01 +00:00
|
|
|
validator.validateAccount()
|
2021-09-26 20:12:43 +00:00
|
|
|
}
|
2021-09-25 08:18:22 +00:00
|
|
|
}
|
|
|
|
|
2021-09-26 20:12:43 +00:00
|
|
|
private func submitForm() {
|
2021-09-28 20:33:12 +00:00
|
|
|
guard isValid else {
|
2021-09-25 08:18:22 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-14 23:06:01 +00:00
|
|
|
let account = AccountsModel.add(instance: instance, name: name, username: username, password: password)
|
2021-09-25 08:18:22 +00:00
|
|
|
selectedAccount?.wrappedValue = account
|
|
|
|
|
2021-11-28 14:37:55 +00:00
|
|
|
presentationMode.wrappedValue.dismiss()
|
2021-09-25 08:18:22 +00:00
|
|
|
}
|
|
|
|
|
2021-09-26 20:12:43 +00:00
|
|
|
private var validator: AccountValidator {
|
|
|
|
AccountValidator(
|
2021-10-16 22:48:58 +00:00
|
|
|
app: .constant(instance.app),
|
2022-12-09 00:15:19 +00:00
|
|
|
url: instance.apiURLString,
|
|
|
|
account: Account(instanceID: instance.id, urlString: instance.apiURLString, username: username, password: password),
|
2021-11-14 23:06:01 +00:00
|
|
|
id: $username,
|
2021-09-28 20:33:12 +00:00
|
|
|
isValid: $isValid,
|
|
|
|
isValidated: $isValidated,
|
2021-11-14 23:06:01 +00:00
|
|
|
isValidating: $isValidating,
|
|
|
|
error: $validationError
|
2021-09-25 08:18:22 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct AccountFormView_Previews: PreviewProvider {
|
|
|
|
static var previews: some View {
|
2021-10-23 11:51:02 +00:00
|
|
|
AccountForm(instance: Instance.fixture)
|
2021-09-25 08:18:22 +00:00
|
|
|
}
|
|
|
|
}
|