2021-09-25 13:48:22 +05:30
|
|
|
import Defaults
|
|
|
|
import SwiftUI
|
|
|
|
|
2022-12-12 05:48:29 +05:30
|
|
|
struct AccountViewButton: View {
|
2022-11-25 02:06:05 +05:30
|
|
|
@ObservedObject private var model = AccountsModel.shared
|
2022-12-12 03:45:56 +05:30
|
|
|
private var navigation = NavigationModel.shared
|
2021-09-25 13:48:22 +05:30
|
|
|
|
|
|
|
@Default(.instances) private var instances
|
2022-01-03 01:04:50 +05:30
|
|
|
@Default(.accountPickerDisplaysUsername) private var accountPickerDisplaysUsername
|
2021-09-25 13:48:22 +05:30
|
|
|
|
2022-07-02 02:58:32 +05:30
|
|
|
@ViewBuilder var body: some View {
|
|
|
|
if !instances.isEmpty {
|
2022-12-12 03:45:56 +05:30
|
|
|
Button {
|
|
|
|
navigation.presentingAccounts = true
|
2022-07-02 02:58:32 +05:30
|
|
|
} label: {
|
2022-12-16 04:43:36 +05:30
|
|
|
HStack(spacing: 6) {
|
2022-07-02 02:58:32 +05:30
|
|
|
if !accountPickerDisplaysUsername || !(model.current?.isPublic ?? true) {
|
2023-10-15 17:05:23 +05:30
|
|
|
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")
|
|
|
|
}
|
2022-12-12 05:48:29 +05:30
|
|
|
} else {
|
|
|
|
Image(systemName: "globe")
|
|
|
|
}
|
2022-07-02 02:58:32 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if accountPickerDisplaysUsername {
|
|
|
|
label
|
|
|
|
}
|
2021-11-28 20:07:55 +05:30
|
|
|
}
|
|
|
|
}
|
2022-07-02 02:58:32 +05:30
|
|
|
.transaction { t in t.animation = .none }
|
2021-09-25 13:48:22 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-13 16:18:04 +05:30
|
|
|
private var accountImageSize: Double {
|
|
|
|
#if os(macOS)
|
|
|
|
20
|
|
|
|
#else
|
|
|
|
30
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-11-28 20:07:55 +05:30
|
|
|
private var label: some View {
|
2023-12-10 02:26:16 +05:30
|
|
|
Text(model.current?.description ?? "Select Account")
|
2021-11-28 20:07:55 +05:30
|
|
|
}
|
2021-09-25 13:48:22 +05:30
|
|
|
}
|