IceCubes/IceCubesApp/App/Tabs/NotificationTab.swift

99 lines
3.2 KiB
Swift
Raw Normal View History

2023-01-17 11:36:01 +01:00
import AppAccount
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
@Environment(\.scenePhase) private var scenePhase
2023-01-30 07:27:06 +01:00
@EnvironmentObject private var theme: Theme
@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
@EnvironmentObject private var pushNotificationsService: PushNotificationsService
@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
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 {
NavigationStack(path: $routerPath.path) {
NotificationsListView(lockedType: lockedType)
.withAppRouter()
.withSheetDestinations(sheetDestinations: $routerPath.presentedSheet)
2022-12-29 17:22:07 +01:00
.toolbar {
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
}
}
if UIDevice.current.userInterfaceIdiom == .pad {
if (!isSecondaryColumn && !userPreferences.showiPadSecondaryColumn) || isSecondaryColumn {
SecondaryColumnToolbarItem()
}
}
2022-12-29 17:22:07 +01:00
}
.toolbarBackground(theme.primaryBackgroundColor.opacity(0.50), for: .navigationBar)
.id(client.id)
2022-12-19 12:28:55 +01:00
}
2022-12-25 13:09:43 +01:00
.onAppear {
routerPath.client = client
2023-02-22 12:14:57 +01:00
if isSecondaryColumn {
clearNotifications()
}
2022-12-25 13:09:43 +01:00
}
.withSafariRouter()
.environmentObject(routerPath)
2022-12-24 11:50:05 +01:00
.onChange(of: $popToRootTab.wrappedValue) { popToRootTab in
if popToRootTab == .notifications {
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))
}
}
}
}
}
.onChange(of: scenePhase, perform: { scenePhase in
switch scenePhase {
case .active:
2023-02-22 12:14:57 +01:00
clearNotifications()
default:
break
}
})
2023-02-14 14:27:29 +01:00
.onChange(of: client.id) { _ in
routerPath.path = []
}
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
}