IceCubes/IceCubesApp/App/Tabs/NavigationTab.swift

47 lines
1.3 KiB
Swift
Raw Normal View History

import SwiftUI
import Env
2023-12-28 11:26:00 +01:00
import AppAccount
import DesignSystem
import Network
@MainActor
struct NavigationTab<Content: View>: View {
2023-12-28 11:26:00 +01:00
@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
2023-12-28 11:26:00 +01:00
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()
2023-12-28 11:26:00 +01:00
.withSheetDestinations(sheetDestinations: $routerPath.presentedSheet)
.withSafariRouter()
2023-12-28 11:26:00 +01:00
.toolbar {
ToolbarTab(routerPath: $routerPath)
2023-12-28 11:26:00 +01:00
}
.toolbarBackground(theme.primaryBackgroundColor.opacity(0.50), for: .navigationBar)
.onChange(of: client.id) {
routerPath.path = []
}
.onAppear {
routerPath.client = client
}
.withSafariRouter()
}
2023-12-28 11:26:00 +01:00
.environment(routerPath)
}
}