mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 00:08:21 +00:00
52 lines
1.6 KiB
Swift
52 lines
1.6 KiB
Swift
import Defaults
|
|
import SwiftUI
|
|
|
|
struct AccountViewButton: View {
|
|
@ObservedObject private var model = AccountsModel.shared
|
|
private var navigation = NavigationModel.shared
|
|
|
|
@Default(.instances) private var instances
|
|
@Default(.accountPickerDisplaysUsername) private var accountPickerDisplaysUsername
|
|
|
|
@ViewBuilder var body: some View {
|
|
if !instances.isEmpty {
|
|
Button {
|
|
navigation.presentingAccounts = true
|
|
} label: {
|
|
HStack(spacing: 6) {
|
|
if !accountPickerDisplaysUsername || !(model.current?.isPublic ?? true) {
|
|
if #available(iOS 15, macOS 12, *) {
|
|
if let name = model.current?.app?.rawValue.capitalized {
|
|
Image(name)
|
|
.resizable()
|
|
.frame(width: accountImageSize, height: accountImageSize)
|
|
} else {
|
|
Image(systemName: "globe")
|
|
}
|
|
} else {
|
|
Image(systemName: "globe")
|
|
}
|
|
}
|
|
|
|
if accountPickerDisplaysUsername {
|
|
label
|
|
}
|
|
}
|
|
}
|
|
.transaction { t in t.animation = .none }
|
|
}
|
|
}
|
|
|
|
private var accountImageSize: Double {
|
|
#if os(macOS)
|
|
20
|
|
#else
|
|
30
|
|
#endif
|
|
}
|
|
|
|
private var label: some View {
|
|
Text(model.current?.description ?? "Select Account")
|
|
}
|
|
}
|