mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +00:00
2f2fd67860
Fix #224
52 lines
1.7 KiB
Swift
52 lines
1.7 KiB
Swift
import Defaults
|
|
import Foundation
|
|
import SwiftUI
|
|
|
|
struct AccountSelectionView: View {
|
|
var showHeader = true
|
|
|
|
@EnvironmentObject<AccountsModel> private var accountsModel
|
|
|
|
@Default(.accounts) private var accounts
|
|
@Default(.instances) private var instances
|
|
@Default(.accountPickerDisplaysAnonymousAccounts) private var accountPickerDisplaysAnonymousAccounts
|
|
|
|
var body: some View {
|
|
Section(header: Text(showHeader ? "Current Location" : "")) {
|
|
Button(accountButtonTitle(account: accountsModel.current)) {
|
|
if let account = nextAccount {
|
|
accountsModel.setCurrent(account)
|
|
}
|
|
}
|
|
.disabled(instances.isEmpty && Defaults[.countryOfPublicInstances].isNil)
|
|
.contextMenu {
|
|
ForEach(allAccounts) { account in
|
|
Button(accountButtonTitle(account: account)) {
|
|
accountsModel.setCurrent(account)
|
|
}
|
|
}
|
|
|
|
Button("Cancel", role: .cancel) {}
|
|
}
|
|
}
|
|
.id(UUID())
|
|
}
|
|
|
|
var allAccounts: [Account] {
|
|
let anonymousAccounts = accountPickerDisplaysAnonymousAccounts ? instances.map(\.anonymousAccount) : []
|
|
return accounts + anonymousAccounts + [accountsModel.publicAccount].compactMap { $0 }
|
|
}
|
|
|
|
private var nextAccount: Account? {
|
|
allAccounts.next(after: accountsModel.current)
|
|
}
|
|
|
|
func accountButtonTitle(account: Account! = nil) -> String {
|
|
guard account != nil else {
|
|
return "Not selected"
|
|
}
|
|
|
|
return account.isPublic ? account.description : "\(account.description) — \(account.instance.shortDescription)"
|
|
}
|
|
}
|