IceCubes/IceCubesApp/App/Tabs/ExploreTab.swift

46 lines
1.3 KiB
Swift
Raw Normal View History

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