2020-08-08 08:01:45 +02:00
|
|
|
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
|
2021-01-08 03:29:08 +01:00
|
|
|
import Kingfisher
|
2020-09-05 04:31:43 +02:00
|
|
|
import SwiftUI
|
2020-09-01 09:33:49 +02:00
|
|
|
import ViewModels
|
2020-08-08 08:01:45 +02:00
|
|
|
|
|
|
|
struct SecondaryNavigationView: View {
|
2020-09-10 01:00:10 +02:00
|
|
|
@ObservedObject var viewModel: NavigationViewModel
|
2020-09-10 00:48:56 +02:00
|
|
|
@EnvironmentObject var rootViewModel: RootViewModel
|
2020-08-08 08:01:45 +02:00
|
|
|
@Environment(\.displayScale) var displayScale: CGFloat
|
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
NavigationView {
|
|
|
|
Form {
|
|
|
|
Section {
|
|
|
|
NavigationLink(
|
2020-09-10 01:40:40 +02:00
|
|
|
destination: IdentitiesView(viewModel: .init(identification: viewModel.identification)),
|
2020-08-08 08:01:45 +02:00
|
|
|
label: {
|
|
|
|
HStack {
|
2021-01-08 03:29:08 +01:00
|
|
|
KFImage(viewModel.identification.identity.image)
|
|
|
|
.downsampled(dimension: .avatarDimension, scaleFactor: displayScale)
|
2020-08-08 08:01:45 +02:00
|
|
|
VStack(alignment: .leading) {
|
2020-09-10 01:40:40 +02:00
|
|
|
if viewModel.identification.identity.authenticated {
|
|
|
|
if let account = viewModel.identification.identity.account {
|
2020-09-09 07:40:49 +02:00
|
|
|
CustomEmojiText(
|
|
|
|
text: account.displayName,
|
2021-01-12 08:33:35 +01:00
|
|
|
emojis: account.emojis,
|
2020-09-09 07:40:49 +02:00
|
|
|
textStyle: .headline)
|
|
|
|
}
|
2020-09-10 01:40:40 +02:00
|
|
|
Text(viewModel.identification.identity.handle)
|
2020-09-09 07:40:49 +02:00
|
|
|
.font(.subheadline)
|
|
|
|
.foregroundColor(.secondary)
|
|
|
|
.lineLimit(1)
|
|
|
|
.minimumScaleFactor(0.5)
|
|
|
|
} else {
|
2020-09-10 01:40:40 +02:00
|
|
|
Text(viewModel.identification.identity.handle)
|
2020-09-09 07:40:49 +02:00
|
|
|
.font(.headline)
|
2020-09-10 01:40:40 +02:00
|
|
|
if let instance = viewModel.identification.identity.instance {
|
2020-09-09 07:40:49 +02:00
|
|
|
Text(instance.uri)
|
|
|
|
.font(.subheadline)
|
|
|
|
.foregroundColor(.secondary)
|
|
|
|
.lineLimit(1)
|
|
|
|
.minimumScaleFactor(0.5)
|
|
|
|
}
|
2020-08-08 11:10:05 +02:00
|
|
|
}
|
2020-09-09 07:40:49 +02:00
|
|
|
|
2020-08-08 08:01:45 +02:00
|
|
|
Spacer()
|
2020-08-08 11:10:05 +02:00
|
|
|
Text("secondary-navigation.manage-accounts")
|
2020-08-08 08:01:45 +02:00
|
|
|
.font(.subheadline)
|
|
|
|
}
|
|
|
|
.padding()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2020-08-29 05:50:58 +02:00
|
|
|
Section {
|
2020-09-10 01:40:40 +02:00
|
|
|
NavigationLink(destination: ListsView(viewModel: .init(identification: viewModel.identification))) {
|
2020-08-29 05:50:58 +02:00
|
|
|
Label("secondary-navigation.lists", systemImage: "scroll")
|
|
|
|
}
|
|
|
|
}
|
2020-08-08 08:01:45 +02:00
|
|
|
Section {
|
|
|
|
NavigationLink(
|
|
|
|
"secondary-navigation.preferences",
|
|
|
|
destination: PreferencesView(
|
2020-09-10 01:40:40 +02:00
|
|
|
viewModel: .init(identification: viewModel.identification)))
|
2020-08-08 08:01:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.navigationBarTitleDisplayMode(.inline)
|
|
|
|
.toolbar {
|
|
|
|
ToolbarItem(placement: .cancellationAction) {
|
|
|
|
Button {
|
2020-09-10 00:48:56 +02:00
|
|
|
viewModel.presentingSecondaryNavigation = false
|
2020-08-08 08:01:45 +02:00
|
|
|
} label: {
|
|
|
|
Image(systemName: "xmark.circle.fill")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.navigationViewStyle(StackNavigationViewStyle())
|
2020-09-10 01:40:40 +02:00
|
|
|
.environmentObject(viewModel.identification)
|
2020-08-08 08:01:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if DEBUG
|
2020-09-01 09:33:49 +02:00
|
|
|
import PreviewViewModels
|
|
|
|
|
2020-08-08 08:01:45 +02:00
|
|
|
struct SecondaryNavigationView_Previews: PreviewProvider {
|
|
|
|
static var previews: some View {
|
2020-09-10 01:00:10 +02:00
|
|
|
SecondaryNavigationView(viewModel: NavigationViewModel(identification: .preview))
|
2020-09-10 00:48:56 +02:00
|
|
|
.environmentObject(RootViewModel.preview)
|
2020-08-08 08:01:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|