2023-01-17 11:36:01 +01:00
|
|
|
import AppAccount
|
2023-01-22 06:53:18 +01:00
|
|
|
import DesignSystem
|
2022-12-22 10:53:36 +01:00
|
|
|
import Env
|
2023-01-22 06:38:30 +01:00
|
|
|
import Models
|
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 {
|
2023-01-22 06:53:18 +01:00
|
|
|
@EnvironmentObject private var theme: Theme
|
2022-12-27 08:31:47 +01:00
|
|
|
@EnvironmentObject private var client: Client
|
2022-12-25 13:09:43 +01:00
|
|
|
@EnvironmentObject private var watcher: StreamWatcher
|
2023-01-29 11:52:11 +01:00
|
|
|
@EnvironmentObject private var appAccount: AppAccountsManager
|
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
|
2023-01-17 15:14:50 +01:00
|
|
|
@StateObject private var routerPath = RouterPath()
|
2022-12-27 09:25:26 +01:00
|
|
|
@Binding var popToRootTab: Tab
|
2023-01-22 06:38:30 +01:00
|
|
|
|
2023-01-19 07:24:24 +01:00
|
|
|
let lockedType: Models.Notification.NotificationType?
|
2023-01-29 16:45:58 +01:00
|
|
|
let isSecondaryColumn: Bool
|
2023-01-17 11:36:01 +01:00
|
|
|
|
2022-12-19 12:28:55 +01:00
|
|
|
var body: some View {
|
2023-01-17 15:14:50 +01:00
|
|
|
NavigationStack(path: $routerPath.path) {
|
2023-01-19 07:24:24 +01:00
|
|
|
NotificationsListView(lockedType: lockedType)
|
2023-01-17 15:14:50 +01:00
|
|
|
.withAppRouter()
|
|
|
|
.withSheetDestinations(sheetDestinations: $routerPath.presentedSheet)
|
2022-12-29 17:22:07 +01:00
|
|
|
.toolbar {
|
2023-01-29 16:45:58 +01:00
|
|
|
if !isSecondaryColumn {
|
|
|
|
statusEditorToolbarItem(routerPath: routerPath,
|
|
|
|
visibility: userPreferences.postVisibility)
|
|
|
|
if UIDevice.current.userInterfaceIdiom != .pad {
|
|
|
|
ToolbarItem(placement: .navigationBarLeading) {
|
|
|
|
AppAccountsSelectorView(routerPath: routerPath)
|
|
|
|
}
|
2023-01-16 21:15:33 +01:00
|
|
|
}
|
2023-01-06 12:14:05 +01:00
|
|
|
}
|
2022-12-29 17:22:07 +01:00
|
|
|
}
|
2023-01-22 06:53:18 +01:00
|
|
|
.toolbarBackground(theme.primaryBackgroundColor.opacity(0.50), for: .navigationBar)
|
2023-01-29 11:52:11 +01:00
|
|
|
.id(appAccount.currentAccount.id)
|
2022-12-19 12:28:55 +01:00
|
|
|
}
|
2022-12-25 13:09:43 +01:00
|
|
|
.onAppear {
|
2023-01-17 15:14:50 +01:00
|
|
|
routerPath.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
|
|
|
}
|
2023-01-17 15:14:50 +01:00
|
|
|
.withSafariRouter()
|
|
|
|
.environmentObject(routerPath)
|
2022-12-24 11:50:05 +01:00
|
|
|
.onChange(of: $popToRootTab.wrappedValue) { popToRootTab in
|
|
|
|
if popToRootTab == .notifications {
|
2023-01-17 15:14:50 +01:00
|
|
|
routerPath.path = []
|
2022-12-24 11:50:05 +01:00
|
|
|
}
|
|
|
|
}
|
2023-01-02 19:23:44 +01:00
|
|
|
.onChange(of: currentAccount.account?.id) { _ in
|
2023-01-17 15:14:50 +01:00
|
|
|
routerPath.path = []
|
2023-01-02 19:23:44 +01:00
|
|
|
}
|
2022-12-19 12:28:55 +01:00
|
|
|
}
|
|
|
|
}
|