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-09-18 21:03:52 +02:00
|
|
|
@Environment(Theme.self) private var theme
|
2023-09-18 07:01:23 +02:00
|
|
|
@Environment(Client.self) private var client
|
|
|
|
@Environment(StreamWatcher.self) private var watcher
|
|
|
|
@Environment(AppAccountsManager.self) private var appAccount
|
|
|
|
@Environment(CurrentAccount.self) private var currentAccount
|
2023-01-09 18:52:53 +01:00
|
|
|
@EnvironmentObject private var userPreferences: UserPreferences
|
2023-09-18 07:01:23 +02:00
|
|
|
@Environment(PushNotificationsService.self) private var pushNotificationsService
|
|
|
|
@State 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()
|
2023-09-18 07:01:23 +02:00
|
|
|
.environment(routerPath)
|
|
|
|
.onChange(of: $popToRootTab.wrappedValue) { _, newValue in
|
|
|
|
if newValue == .notifications {
|
2023-01-17 15:14:50 +01:00
|
|
|
routerPath.path = []
|
2022-12-24 11:50:05 +01:00
|
|
|
}
|
|
|
|
}
|
2023-09-18 07:01:23 +02:00
|
|
|
.onChange(of: pushNotificationsService.handledNotification) { _, newValue in
|
|
|
|
if let newValue, let type = newValue.notification.supportedType {
|
2023-02-14 12:17:27 +01:00
|
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) {
|
2023-02-13 22:30:06 +01:00
|
|
|
switch type {
|
|
|
|
case .follow, .follow_request:
|
2023-09-18 07:01:23 +02:00
|
|
|
routerPath.navigate(to: .accountDetailWithAccount(account: newValue.notification.account))
|
2023-02-13 22:30:06 +01:00
|
|
|
default:
|
2023-09-18 07:01:23 +02:00
|
|
|
if let status = newValue.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-09-18 07:01:23 +02:00
|
|
|
.onChange(of: scenePhase) { _, newValue in
|
|
|
|
switch newValue {
|
2023-01-30 19:14:43 +01:00
|
|
|
case .active:
|
2023-02-22 12:14:57 +01:00
|
|
|
clearNotifications()
|
2023-01-30 19:14:43 +01:00
|
|
|
default:
|
|
|
|
break
|
|
|
|
}
|
2023-09-18 07:01:23 +02:00
|
|
|
}
|
|
|
|
.onChange(of: client.id) {
|
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 {
|
2023-09-19 08:44:11 +02:00
|
|
|
userPreferences.notificationsCount[token] = 0
|
2023-02-22 12:14:57 +01:00
|
|
|
}
|
|
|
|
watcher.unreadNotificationsCount = 0
|
|
|
|
}
|
|
|
|
}
|
2022-12-19 12:28:55 +01:00
|
|
|
}
|