Add Account Picker now displays accounts

This commit is contained in:
Stuart Breckenridge 2020-07-13 10:57:42 +08:00
parent cbeb74ab76
commit 564f96ae47
No known key found for this signature in database
GPG Key ID: 79BD673276AE83CE
1 changed files with 103 additions and 41 deletions

View File

@ -6,10 +6,17 @@
// //
import SwiftUI import SwiftUI
import Account
struct AccountPreferencesViewModel { struct AccountPreferencesViewModel {
let accountTypes = ["On My Mac", "FeedBin"]
var selectedAccount = Int?.none // Sorted Accounts
let sortedAccounts = AccountManager.shared.sortedAccounts
// Available Accounts
let accountTypes: [AccountType] = [.onMyMac, .feedbin, .feedly]
var selectedAccount: Int? = 0
} }
struct AccountsPreferencesView: View { struct AccountsPreferencesView: View {
@ -24,18 +31,21 @@ struct AccountsPreferencesView: View {
VStack { VStack {
HStack(alignment: .top, spacing: 10) { HStack(alignment: .top, spacing: 10) {
VStack(alignment: .leading) { VStack(alignment: .leading) {
List(selection: $viewModel.selectedAccount, content: { List(selection: $viewModel.selectedAccount) {
ForEach(0..<viewModel.accountTypes.count, content: { i in ForEach(0..<viewModel.sortedAccounts.count, content: { i in
AccountDetailRow(imageName: "desktopcomputer", accountName: viewModel.accountTypes[i]).padding(.vertical, 8) ConfiguredAccountRow(account: viewModel.sortedAccounts[i])
.tag(i)
}) })
}).overlay( }.overlay(
Group { Group {
bottomButtonStack bottomButtonStack
}, alignment: .bottom) }, alignment: .bottom)
}.frame(width: 225, height: 300, alignment: .leading).border(Color.gray, width: 1) }
.frame(width: 225, height: 300, alignment: .leading)
.border(Color.gray, width: 1)
VStack(alignment: .leading) { VStack(alignment: .leading) {
viewModel.selectedAccount == nil ? Text("Select Account") : Text(viewModel.accountTypes[viewModel.selectedAccount!]) EmptyView()
Spacer() Spacer()
}.frame(width: 225, height: 300, alignment: .leading) }.frame(width: 225, height: 300, alignment: .leading)
} }
@ -57,7 +67,8 @@ struct AccountsPreferencesView: View {
Image(systemName: "plus") Image(systemName: "plus")
.font(.title) .font(.title)
.frame(width: 30, height: 30) .frame(width: 30, height: 30)
.overlay(RoundedRectangle(cornerRadius: 4, style: .continuous).foregroundColor(hoverOnAdd ? Color.gray.opacity(0.1) : Color.clear)) .overlay(RoundedRectangle(cornerRadius: 4, style: .continuous)
.foregroundColor(hoverOnAdd ? Color.gray.opacity(0.1) : Color.clear))
.padding(4) .padding(4)
}) })
.buttonStyle(BorderlessButtonStyle()) .buttonStyle(BorderlessButtonStyle())
@ -67,12 +78,13 @@ struct AccountsPreferencesView: View {
.help("Add Account") .help("Add Account")
Button(action: { Button(action: {
showAddAccountView.toggle() //
}, label: { }, label: {
Image(systemName: "minus") Image(systemName: "minus")
.font(.title) .font(.title)
.frame(width: 30, height: 30) .frame(width: 30, height: 30)
.overlay(RoundedRectangle(cornerRadius: 4, style: .continuous).foregroundColor(hoverOnRemove ? Color.gray.opacity(0.1) : Color.clear)) .overlay(RoundedRectangle(cornerRadius: 4, style: .continuous)
.foregroundColor(hoverOnRemove ? Color.gray.opacity(0.1) : Color.clear))
.padding(4) .padding(4)
}) })
.buttonStyle(BorderlessButtonStyle()) .buttonStyle(BorderlessButtonStyle())
@ -92,27 +104,65 @@ struct AccountsPreferencesView: View {
} }
struct AccountDetailRow: View { struct ConfiguredAccountRow: View {
var imageName: String var account: Account
var accountName: String
var body: some View { var body: some View {
HStack { HStack(alignment: .center) {
Image(systemName: imageName).font(.headline) if let img = account.smallIcon?.image {
Text(accountName).font(.headline) Image(rsImage: img)
} }
Text(account.nameForDisplay)
}.padding(.vertical, 4)
} }
} }
struct AddAccountPickerRow: View {
var accountType: AccountType
var body: some View {
HStack {
if let img = AppAssets.image(for: accountType) {
Image(rsImage: img)
.resizable()
.frame(width: 15, height: 15)
}
switch accountType {
case .onMyMac:
Text(Account.defaultLocalAccountName)
case .cloudKit:
Text("iCloud")
case .feedbin:
Text("Feedbin")
case .feedWrangler:
Text("FeedWrangler")
case .freshRSS:
Text("FreshRSS")
case .feedly:
Text("Feedly")
case .newsBlur:
Text("NewsBlur")
}
}
}
}
struct AddAccountView: View { struct AddAccountView: View {
@Environment(\.presentationMode) var presentationMode @Environment(\.presentationMode) var presentationMode
let accountTypes = ["On My Mac", "FeedBin"] let addableAccountTypes: [AccountType] = [.onMyMac, .feedbin, .feedly]
@State var selectedAccount: Int = 0 @State private var selectedAccount: AccountType = .onMyMac
@State private var userName: String = "" @State private var userName: String = ""
@State private var password: String = "" @State private var password: String = ""
@State private var newLocalAccountName = ""
var body: some View { var body: some View {
@ -122,14 +172,24 @@ struct AddAccountView: View {
Picker("Account Type", Picker("Account Type",
selection: $selectedAccount, selection: $selectedAccount,
content: { content: {
ForEach(0..<accountTypes.count, content: { ForEach(0..<addableAccountTypes.count, content: { i in
AccountDetailRow(imageName: "desktopcomputer", accountName: accountTypes[$0]) AddAccountPickerRow(accountType: addableAccountTypes[i]).tag(addableAccountTypes[i])
}) })
}) })
if selectedAccount == 1 { if selectedAccount != .onMyMac {
TextField("Email", text: $userName) TextField("Email", text: $userName)
.textFieldStyle(RoundedBorderTextFieldStyle())
SecureField("Password", text: $password) SecureField("Password", text: $password)
.textFieldStyle(RoundedBorderTextFieldStyle())
}
if selectedAccount == .onMyMac {
TextField("Account Name", text: $newLocalAccountName)
.textFieldStyle(RoundedBorderTextFieldStyle())
Text("This account stores all of its data on your device. It does not sync.")
.foregroundColor(.secondary)
.multilineTextAlignment(.leading)
} }
} }
Spacer() Spacer()
@ -141,18 +201,20 @@ struct AddAccountView: View {
Text("Cancel") Text("Cancel")
}) })
if selectedAccount == 0 { if selectedAccount == .onMyMac {
Button("Add", action: {}) Button("Add", action: {})
} }
if selectedAccount != 0 { if selectedAccount != .onMyMac {
Button("Create", action: {}) Button("Add Account", action: {})
.disabled(userName.count == 0 || password.count == 0) .disabled(userName.count == 0 || password.count == 0)
} }
} }
}.frame(width: 300, alignment: .top).padding() }
.frame(idealWidth: 300, idealHeight: 200, alignment: .top)
.padding()
} }