1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-14 22:30:32 +05:30
yattee/Shared/Navigation/AccountsMenuView.swift

53 lines
1.6 KiB
Swift
Raw Normal View History

2021-09-25 13:48:22 +05:30
import Defaults
import SwiftUI
struct AccountsMenuView: View {
2021-10-17 04:18:58 +05:30
@EnvironmentObject<AccountsModel> private var model
2021-09-25 13:48:22 +05:30
@Default(.accounts) private var accounts
2021-09-25 13:48:22 +05:30
@Default(.instances) private var instances
@Default(.accountPickerDisplaysUsername) private var accountPickerDisplaysUsername
2021-09-25 13:48:22 +05:30
var body: some View {
Menu {
ForEach(allAccounts, id: \.id) { account in
Button {
model.setCurrent(account)
} label: {
HStack {
Text(accountButtonTitle(account: account))
Spacer()
if model.current == account {
Image(systemName: "checkmark")
}
}
2021-09-25 13:48:22 +05:30
}
}
} label: {
HStack {
Image(systemName: "person.crop.circle")
if accountPickerDisplaysUsername {
2021-11-28 20:07:55 +05:30
label
.labelStyle(.titleOnly)
}
}
2021-09-25 13:48:22 +05:30
}
.disabled(instances.isEmpty)
.transaction { t in t.animation = .none }
}
2021-11-28 20:07:55 +05:30
private var label: some View {
Label(model.current?.description ?? "Select Account", systemImage: "person.crop.circle")
}
2021-10-21 03:51:50 +05:30
private var allAccounts: [Account] {
accounts + instances.map(\.anonymousAccount)
}
2021-10-21 03:51:50 +05:30
private func accountButtonTitle(account: Account) -> String {
2021-10-17 04:18:58 +05:30
instances.count > 1 ? "\(account.description)\(account.instance.description)" : account.description
2021-09-25 13:48:22 +05:30
}
}