IceCubes/IceCubesApp/App/Tabs/NotificationTab.swift

49 lines
1.5 KiB
Swift
Raw Normal View History

2023-01-17 11:36:01 +01:00
import AppAccount
2022-12-22 10:53:36 +01:00
import Env
2022-12-19 12:28:55 +01:00
import Network
import Notifications
2023-01-17 11:36:01 +01:00
import SwiftUI
import Timeline
2022-12-19 12:28:55 +01:00
struct NotificationsTab: View {
@EnvironmentObject private var client: Client
2022-12-25 13:09:43 +01:00
@EnvironmentObject private var watcher: StreamWatcher
2022-12-30 08:36:22 +01:00
@EnvironmentObject private var currentAccount: CurrentAccount
2023-01-09 18:52:53 +01:00
@EnvironmentObject private var userPreferences: UserPreferences
2022-12-19 12:28:55 +01:00
@StateObject private var routeurPath = RouterPath()
2022-12-27 09:25:26 +01:00
@Binding var popToRootTab: Tab
2023-01-17 11:36:01 +01:00
2022-12-19 12:28:55 +01:00
var body: some View {
NavigationStack(path: $routeurPath.path) {
NotificationsListView()
.withAppRouteur()
2022-12-20 09:37:07 +01:00
.withSheetDestinations(sheetDestinations: $routeurPath.presentedSheet)
2022-12-29 17:22:07 +01:00
.toolbar {
statusEditorToolbarItem(routeurPath: routeurPath,
visibility: userPreferences.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(routeurPath: routeurPath)
}
}
2022-12-29 17:22:07 +01:00
}
2022-12-30 08:36:22 +01:00
.id(currentAccount.account?.id)
2022-12-19 12:28:55 +01:00
}
2022-12-25 13:09:43 +01:00
.onAppear {
routeurPath.client = client
2022-12-25 13:09:43 +01:00
watcher.unreadNotificationsCount = 0
2023-01-09 18:52:53 +01:00
userPreferences.pushNotificationsCount = 0
2022-12-25 13:09:43 +01:00
}
.withSafariRouteur()
2022-12-19 12:28:55 +01:00
.environmentObject(routeurPath)
2022-12-24 11:50:05 +01:00
.onChange(of: $popToRootTab.wrappedValue) { popToRootTab in
if popToRootTab == .notifications {
routeurPath.path = []
}
}
.onChange(of: currentAccount.account?.id) { _ in
routeurPath.path = []
}
2022-12-19 12:28:55 +01:00
}
}