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-29 17:59:04 +01:00
|
|
|
@Environment(\.isSecondaryColumn) private var isSecondaryColumn: Bool
|
2023-01-30 19:14:43 +01:00
|
|
|
@Environment(\.scenePhase) private var scenePhase
|
2023-01-30 07:27:06 +01:00
|
|
|
|
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-02-13 21:50:44 +01:00
|
|
|
@EnvironmentObject private var pushNotificationsService: PushNotificationsService
|
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-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
|
|
|
}
|
2023-02-21 13:37:31 +01:00
|
|
|
if UIDevice.current.userInterfaceIdiom == .pad {
|
|
|
|
if (!isSecondaryColumn && !userPreferences.showiPadSecondaryColumn) || isSecondaryColumn {
|
|
|
|
SecondaryColumnToolbarItem()
|
|
|
|
}
|
|
|
|
}
|
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-30 19:14:43 +01:00
|
|
|
.id(client.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
|
2023-02-22 12:14:57 +01:00
|
|
|
if isSecondaryColumn {
|
|
|
|
clearNotifications()
|
|
|
|
}
|
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-02-14 12:17:27 +01:00
|
|
|
.onChange(of: pushNotificationsService.handledNotification) { notification in
|
|
|
|
if let notification, let type = notification.notification.supportedType {
|
|
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) {
|
2023-02-13 22:30:06 +01:00
|
|
|
switch type {
|
|
|
|
case .follow, .follow_request:
|
2023-02-14 12:17:27 +01:00
|
|
|
routerPath.navigate(to: .accountDetailWithAccount(account: notification.notification.account))
|
2023-02-13 22:30:06 +01:00
|
|
|
default:
|
2023-02-14 12:17:27 +01:00
|
|
|
if let status = notification.notification.status {
|
2023-02-13 22:30:06 +01:00
|
|
|
routerPath.navigate(to: .statusDetailWithStatus(status: status))
|
|
|
|
}
|
2023-02-13 21:50:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-01-30 19:14:43 +01:00
|
|
|
.onChange(of: scenePhase, perform: { scenePhase in
|
|
|
|
switch scenePhase {
|
|
|
|
case .active:
|
2023-02-22 12:14:57 +01:00
|
|
|
clearNotifications()
|
2023-01-30 19:14:43 +01:00
|
|
|
default:
|
|
|
|
break
|
|
|
|
}
|
|
|
|
})
|
2023-02-14 14:27:29 +01:00
|
|
|
.onChange(of: client.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
|
|
|
}
|
2023-02-22 19:09:39 +01:00
|
|
|
|
2023-02-22 12:14:57 +01:00
|
|
|
private func clearNotifications() {
|
|
|
|
if isSecondaryColumn {
|
|
|
|
if let token = appAccount.currentAccount.oauthToken {
|
|
|
|
userPreferences.setNotification(count: 0, token: token)
|
|
|
|
}
|
|
|
|
watcher.unreadNotificationsCount = 0
|
|
|
|
}
|
|
|
|
}
|
2022-12-19 12:28:55 +01:00
|
|
|
}
|