mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-25 17:12:23 +01:00
151 lines
3.6 KiB
Swift
151 lines
3.6 KiB
Swift
//
|
|
// AddFeedbinAccountView.swift
|
|
// Multiplatform macOS
|
|
//
|
|
// Created by Stuart Breckenridge on 02/12/2020.
|
|
// Copyright © 2020 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
import Account
|
|
import RSCore
|
|
import RSWeb
|
|
import Secrets
|
|
|
|
struct AddFeedbinAccountView: View {
|
|
|
|
@Environment (\.presentationMode) var presentationMode
|
|
@StateObject private var model = AddFeedbinViewModel()
|
|
|
|
var body: some View {
|
|
#if os(macOS)
|
|
macBody
|
|
#else
|
|
iosBody
|
|
#endif
|
|
}
|
|
|
|
#if os(iOS)
|
|
var iosBody: some View {
|
|
List {
|
|
Section(header: formHeader, footer: ProgressView()
|
|
.scaleEffect(CGSize(width: 0.5, height: 0.5))
|
|
.hidden(!model.isAuthenticating) , content: {
|
|
TextField("me@email.com", text: $model.username)
|
|
SecureField("•••••••••••", text: $model.password)
|
|
})
|
|
}.navigationBarItems(leading:
|
|
Button(action: {
|
|
presentationMode.wrappedValue.dismiss()
|
|
}, label: {
|
|
Text("Dismiss")
|
|
})
|
|
, trailing:
|
|
Button(action: {
|
|
model.authenticateFeedbin()
|
|
}, label: {
|
|
Text("Add")
|
|
}).disabled(model.username.isEmpty || model.password.isEmpty)
|
|
)
|
|
}
|
|
#endif
|
|
|
|
#if os(macOS)
|
|
var macBody: some View {
|
|
VStack {
|
|
HStack(spacing: 16) {
|
|
VStack(alignment: .leading) {
|
|
AccountType.feedbin.image()
|
|
.frame(width: 50, height: 50)
|
|
Spacer()
|
|
}
|
|
VStack(alignment: .leading, spacing: 8) {
|
|
Text("Sign in to your Feedbin account.")
|
|
.font(.headline)
|
|
HStack {
|
|
Text("Don't have a Feedbin account?")
|
|
.font(.callout)
|
|
Button(action: {
|
|
NSWorkspace.shared.open(URL(string: "https://feedbin.com/signup")!)
|
|
}, label: {
|
|
Text("Sign up here.").font(.callout)
|
|
}).buttonStyle(LinkButtonStyle())
|
|
}
|
|
|
|
HStack {
|
|
VStack(alignment: .trailing, spacing: 14) {
|
|
Text("Email")
|
|
Text("Password")
|
|
}
|
|
VStack(spacing: 8) {
|
|
TextField("me@email.com", text: $model.username)
|
|
SecureField("•••••••••••", text: $model.password)
|
|
}
|
|
}
|
|
|
|
Text("Your username and password will be encrypted and stored in Keychain.")
|
|
.foregroundColor(.secondary)
|
|
.font(.callout)
|
|
.lineLimit(2)
|
|
.padding(.top, 4)
|
|
|
|
Spacer()
|
|
HStack(spacing: 8) {
|
|
Spacer()
|
|
ProgressView()
|
|
.scaleEffect(CGSize(width: 0.5, height: 0.5))
|
|
.hidden(!model.isAuthenticating)
|
|
Button(action: {
|
|
presentationMode.wrappedValue.dismiss()
|
|
}, label: {
|
|
Text("Cancel")
|
|
.frame(width: 60)
|
|
}).keyboardShortcut(.cancelAction)
|
|
|
|
Button(action: {
|
|
model.authenticateFeedbin()
|
|
}, label: {
|
|
Text("Sign In")
|
|
.frame(width: 60)
|
|
})
|
|
.keyboardShortcut(.defaultAction)
|
|
.disabled(model.username.isEmpty || model.password.isEmpty)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.padding()
|
|
.frame(minWidth: 400, maxWidth: 400, minHeight: 230, maxHeight: 260)
|
|
.textFieldStyle(RoundedBorderTextFieldStyle())
|
|
.alert(isPresented: $model.showError, content: {
|
|
Alert(title: Text("Sign In Error"), message: Text(model.accountUpdateError.description), dismissButton: .cancel())
|
|
})
|
|
.onReceive(model.$canDismiss, perform: { value in
|
|
if value == true {
|
|
presentationMode.wrappedValue.dismiss()
|
|
}
|
|
})
|
|
}
|
|
#endif
|
|
|
|
var formHeader: some View {
|
|
HStack {
|
|
VStack(alignment: .center) {
|
|
AccountType.feedbin.image()
|
|
.resizable()
|
|
.frame(width: 50, height: 50)
|
|
Text("Sign in to your Feedbin account.")
|
|
.font(.headline)
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
|
|
struct AddFeedbinAccountView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
AddFeedbinAccountView()
|
|
}
|
|
}
|