2022-12-19 11:28:55 +00:00
|
|
|
import SwiftUI
|
|
|
|
import Timeline
|
2022-12-22 09:53:36 +00:00
|
|
|
import Env
|
2022-12-19 11:28:55 +00:00
|
|
|
import Network
|
|
|
|
import Notifications
|
|
|
|
|
|
|
|
struct NotificationsTab: View {
|
2022-12-27 07:31:47 +00:00
|
|
|
@EnvironmentObject private var client: Client
|
2022-12-25 12:09:43 +00:00
|
|
|
@EnvironmentObject private var watcher: StreamWatcher
|
2022-12-30 07:36:22 +00:00
|
|
|
@EnvironmentObject private var currentAccount: CurrentAccount
|
2022-12-19 11:28:55 +00:00
|
|
|
@StateObject private var routeurPath = RouterPath()
|
2022-12-27 08:25:26 +00:00
|
|
|
@Binding var popToRootTab: Tab
|
2022-12-19 11:28:55 +00:00
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
NavigationStack(path: $routeurPath.path) {
|
|
|
|
NotificationsListView()
|
|
|
|
.withAppRouteur()
|
2022-12-20 08:37:07 +00:00
|
|
|
.withSheetDestinations(sheetDestinations: $routeurPath.presentedSheet)
|
2022-12-29 16:22:07 +00:00
|
|
|
.toolbar {
|
2023-01-05 11:21:54 +00:00
|
|
|
statusEditorToolbarItem(routeurPath: routeurPath, visibility: .pub)
|
2023-01-06 11:14:05 +00:00
|
|
|
ToolbarItem(placement: .navigationBarLeading) {
|
|
|
|
AppAccountsSelectorView(routeurPath: routeurPath)
|
|
|
|
}
|
2022-12-29 16:22:07 +00:00
|
|
|
}
|
2022-12-30 07:36:22 +00:00
|
|
|
.id(currentAccount.account?.id)
|
2022-12-19 11:28:55 +00:00
|
|
|
}
|
2022-12-25 12:09:43 +00:00
|
|
|
.onAppear {
|
2022-12-27 07:31:47 +00:00
|
|
|
routeurPath.client = client
|
2022-12-25 12:09:43 +00:00
|
|
|
watcher.unreadNotificationsCount = 0
|
|
|
|
}
|
2023-01-08 18:56:16 +00:00
|
|
|
.withSafariRouteur()
|
2022-12-19 11:28:55 +00:00
|
|
|
.environmentObject(routeurPath)
|
2022-12-24 10:50:05 +00:00
|
|
|
.onChange(of: $popToRootTab.wrappedValue) { popToRootTab in
|
|
|
|
if popToRootTab == .notifications {
|
|
|
|
routeurPath.path = []
|
|
|
|
}
|
|
|
|
}
|
2023-01-02 18:23:44 +00:00
|
|
|
.onChange(of: currentAccount.account?.id) { _ in
|
|
|
|
routeurPath.path = []
|
|
|
|
}
|
2022-12-19 11:28:55 +00:00
|
|
|
}
|
|
|
|
}
|