2021-09-28 18:06:05 +00:00
|
|
|
import Defaults
|
|
|
|
import Foundation
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct AccountSelectionView: View {
|
2021-10-17 23:06:00 +00:00
|
|
|
var showHeader = true
|
|
|
|
|
2021-10-19 21:27:04 +00:00
|
|
|
@EnvironmentObject<AccountsModel> private var accountsModel
|
2021-09-28 18:06:05 +00:00
|
|
|
|
2021-10-19 21:27:04 +00:00
|
|
|
@Default(.accounts) private var accounts
|
2021-09-28 18:06:05 +00:00
|
|
|
@Default(.instances) private var instances
|
|
|
|
|
|
|
|
var body: some View {
|
2021-11-04 22:01:27 +00:00
|
|
|
Section(header: SettingsHeader(text: showHeader ? "Current Account" : "")) {
|
2021-10-22 15:00:09 +00:00
|
|
|
Button(accountButtonTitle(account: accountsModel.current, long: true)) {
|
2021-09-28 18:06:05 +00:00
|
|
|
if let account = nextAccount {
|
2021-10-19 21:27:04 +00:00
|
|
|
accountsModel.setCurrent(account)
|
2021-09-28 18:06:05 +00:00
|
|
|
}
|
|
|
|
}
|
2021-09-29 14:29:17 +00:00
|
|
|
.disabled(instances.isEmpty)
|
2021-09-28 18:06:05 +00:00
|
|
|
.contextMenu {
|
2021-10-19 21:27:04 +00:00
|
|
|
ForEach(allAccounts) { account in
|
2021-10-16 22:48:58 +00:00
|
|
|
Button(accountButtonTitle(account: account)) {
|
2021-10-19 21:27:04 +00:00
|
|
|
accountsModel.setCurrent(account)
|
2021-09-28 18:06:05 +00:00
|
|
|
}
|
|
|
|
}
|
2021-09-29 12:36:52 +00:00
|
|
|
|
|
|
|
Button("Cancel", role: .cancel) {}
|
2021-09-28 18:06:05 +00:00
|
|
|
}
|
|
|
|
}
|
2021-10-16 22:48:58 +00:00
|
|
|
.id(UUID())
|
2021-09-28 18:06:05 +00:00
|
|
|
}
|
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
var allAccounts: [Account] {
|
2021-10-19 21:27:04 +00:00
|
|
|
accounts + instances.map(\.anonymousAccount)
|
|
|
|
}
|
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
private var nextAccount: Account? {
|
2021-10-19 21:27:04 +00:00
|
|
|
allAccounts.next(after: accountsModel.current)
|
2021-09-28 18:06:05 +00:00
|
|
|
}
|
|
|
|
|
2021-10-22 15:00:09 +00:00
|
|
|
func accountButtonTitle(account: Account! = nil, long: Bool = false) -> String {
|
2021-10-16 22:48:58 +00:00
|
|
|
guard account != nil else {
|
|
|
|
return "Not selected"
|
|
|
|
}
|
|
|
|
|
2021-10-22 15:00:09 +00:00
|
|
|
let instanceDescription = long ? account.instance.longDescription : account.instance.description
|
|
|
|
|
|
|
|
return instances.count > 1 ? "\(account.description) — \(instanceDescription)" : account.description
|
2021-09-28 18:06:05 +00:00
|
|
|
}
|
|
|
|
}
|