mirror of
https://github.com/yattee/yattee.git
synced 2024-12-14 06:10:32 +05:30
34 lines
1.1 KiB
Swift
34 lines
1.1 KiB
Swift
|
import Defaults
|
||
|
import SwiftUI
|
||
|
|
||
|
struct AccountsMenuView: View {
|
||
|
@EnvironmentObject<InvidiousAPI> private var api
|
||
|
|
||
|
@Default(.instances) private var instances
|
||
|
|
||
|
var body: some View {
|
||
|
Menu {
|
||
|
ForEach(instances, id: \.self) { instance in
|
||
|
Button(accountButtonTitle(instance: instance, account: instance.anonymousAccount)) {
|
||
|
api.setAccount(instance.anonymousAccount)
|
||
|
}
|
||
|
|
||
|
ForEach(instance.accounts, id: \.self) { account in
|
||
|
Button(accountButtonTitle(instance: instance, account: account)) {
|
||
|
api.setAccount(account)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
} label: {
|
||
|
Label(api.account?.name ?? "Accounts", systemImage: "person.crop.circle")
|
||
|
.labelStyle(.titleAndIcon)
|
||
|
}
|
||
|
.disabled(instances.isEmpty)
|
||
|
.transaction { t in t.animation = .none }
|
||
|
}
|
||
|
|
||
|
func accountButtonTitle(instance: Instance, account: Instance.Account) -> String {
|
||
|
instances.count > 1 ? "\(account.description) — \(instance.shortDescription)" : account.description
|
||
|
}
|
||
|
}
|