IceCubesApp/IceCubesApp/App/Tabs/ExploreTab.swift

46 lines
1.3 KiB
Swift
Raw Normal View History

2023-01-17 10:36:01 +00:00
import AppAccount
import Env
import Explore
2023-01-17 10:36:01 +00:00
import Models
import Network
2023-01-17 10:36:01 +00:00
import Shimmer
import SwiftUI
struct ExploreTab: View {
@EnvironmentObject private var preferences: UserPreferences
2022-12-30 07:36:22 +00:00
@EnvironmentObject private var currentAccount: CurrentAccount
@EnvironmentObject private var client: Client
@StateObject private var routeurPath = RouterPath()
2022-12-27 08:25:26 +00:00
@Binding var popToRootTab: Tab
2023-01-17 10:36:01 +00:00
var body: some View {
NavigationStack(path: $routeurPath.path) {
ExploreView()
.withAppRouteur()
.withSheetDestinations(sheetDestinations: $routeurPath.presentedSheet)
2022-12-29 16:22:07 +00:00
.toolbar {
statusEditorToolbarItem(routeurPath: routeurPath,
visibility: preferences.serverPreferences?.postVisibility ?? .pub)
2023-01-16 21:01:04 +00:00
if UIDevice.current.userInterfaceIdiom != .pad {
2023-01-16 20:15:33 +00:00
ToolbarItem(placement: .navigationBarLeading) {
AppAccountsSelectorView(routeurPath: routeurPath)
}
}
2022-12-29 16:22:07 +00:00
}
}
.withSafariRouteur()
.environmentObject(routeurPath)
2022-12-24 10:50:05 +00:00
.onChange(of: $popToRootTab.wrappedValue) { popToRootTab in
if popToRootTab == .explore {
routeurPath.path = []
}
}
.onChange(of: currentAccount.account?.id) { _ in
routeurPath.path = []
}
.onAppear {
routeurPath.client = client
}
}
}