IceCubesApp/IceCubesApp/App/Tabs/NotificationTab.swift
2022-12-30 08:36:22 +01:00

36 lines
1,001 B
Swift

import SwiftUI
import Timeline
import Env
import Network
import Notifications
struct NotificationsTab: View {
@EnvironmentObject private var client: Client
@EnvironmentObject private var watcher: StreamWatcher
@EnvironmentObject private var currentAccount: CurrentAccount
@StateObject private var routeurPath = RouterPath()
@Binding var popToRootTab: Tab
var body: some View {
NavigationStack(path: $routeurPath.path) {
NotificationsListView()
.withAppRouteur()
.withSheetDestinations(sheetDestinations: $routeurPath.presentedSheet)
.toolbar {
statusEditorToolbarItem(routeurPath: routeurPath)
}
.id(currentAccount.account?.id)
}
.onAppear {
routeurPath.client = client
watcher.unreadNotificationsCount = 0
}
.environmentObject(routeurPath)
.onChange(of: $popToRootTab.wrappedValue) { popToRootTab in
if popToRootTab == .notifications {
routeurPath.path = []
}
}
}
}