47 lines
1.3 KiB
Swift
47 lines
1.3 KiB
Swift
import AppAccount
|
|
import DesignSystem
|
|
import Env
|
|
import Network
|
|
import SwiftUI
|
|
|
|
@MainActor
|
|
struct NavigationTab<Content: View>: View {
|
|
@Environment(\.isSecondaryColumn) private var isSecondaryColumn: Bool
|
|
|
|
@Environment(AppAccountsManager.self) private var appAccount
|
|
@Environment(CurrentAccount.self) private var currentAccount
|
|
@Environment(UserPreferences.self) private var userPreferences
|
|
@Environment(Theme.self) private var theme
|
|
@Environment(Client.self) private var client
|
|
|
|
var content: () -> Content
|
|
|
|
@State private var routerPath = RouterPath()
|
|
|
|
init(@ViewBuilder content: @escaping () -> Content) {
|
|
self.content = content
|
|
}
|
|
|
|
var body: some View {
|
|
NavigationStack(path: $routerPath.path) {
|
|
content()
|
|
.withEnvironments()
|
|
.withAppRouter()
|
|
.withSheetDestinations(sheetDestinations: $routerPath.presentedSheet)
|
|
.withSafariRouter()
|
|
.toolbar {
|
|
ToolbarTab(routerPath: $routerPath)
|
|
}
|
|
.toolbarBackground(theme.primaryBackgroundColor.opacity(0.30), for: .navigationBar)
|
|
.onChange(of: client.id) {
|
|
routerPath.path = []
|
|
}
|
|
.onAppear {
|
|
routerPath.client = client
|
|
}
|
|
.withSafariRouter()
|
|
}
|
|
.environment(routerPath)
|
|
}
|
|
}
|