IceCubesApp/IceCubesApp/App/Tabs/NotificationTab.swift

102 lines
3.1 KiB
Swift
Raw Normal View History

2023-01-17 10:36:01 +00:00
import AppAccount
import DesignSystem
2022-12-22 09:53:36 +00:00
import Env
2023-01-22 05:38:30 +00:00
import Models
2022-12-19 11:28:55 +00:00
import Network
import Notifications
2023-01-17 10:36:01 +00:00
import SwiftUI
import Timeline
2022-12-19 11:28:55 +00:00
2023-09-19 07:18:20 +00:00
@MainActor
2022-12-19 11:28:55 +00:00
struct NotificationsTab: View {
2023-01-29 16:59:04 +00:00
@Environment(\.isSecondaryColumn) private var isSecondaryColumn: Bool
@Environment(\.scenePhase) private var scenePhase
2023-01-30 06:27:06 +00:00
2023-09-18 19:03:52 +00:00
@Environment(Theme.self) private var theme
@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-09-19 07:18:20 +00:00
@Environment(UserPreferences.self) private var userPreferences
@Environment(PushNotificationsService.self) private var pushNotificationsService
@State private var routerPath = RouterPath()
@State private var scrollToTopSignal: Int = 0
2024-02-14 11:48:14 +00:00
@Binding var selectedTab: Tab
2022-12-27 08:25:26 +00:00
@Binding var popToRootTab: Tab
2023-01-22 05:38:30 +00:00
let lockedType: Models.Notification.NotificationType?
2023-01-17 10:36:01 +00:00
2022-12-19 11:28:55 +00:00
var body: some View {
NavigationStack(path: $routerPath.path) {
NotificationsListView(lockedType: lockedType, scrollToTopSignal: $scrollToTopSignal)
.withAppRouter()
.withSheetDestinations(sheetDestinations: $routerPath.presentedSheet)
2022-12-29 16:22:07 +00:00
.toolbar {
ToolbarItem(placement: .topBarTrailing) {
Button {
routerPath.presentedSheet = .accountPushNotficationsSettings
} label: {
2024-01-06 21:08:41 +00:00
Image(systemName: "bell")
}
}
ToolbarTab(routerPath: $routerPath)
2022-12-29 16:22:07 +00:00
}
2024-01-23 07:51:58 +00:00
.toolbarBackground(theme.primaryBackgroundColor.opacity(0.30), for: .navigationBar)
.id(client.id)
2022-12-19 11:28:55 +00:00
}
2022-12-25 12:09:43 +00:00
.onAppear {
routerPath.client = client
2023-12-26 12:51:41 +00:00
clearNotifications()
2022-12-25 12:09:43 +00:00
}
.withSafariRouter()
.environment(routerPath)
.onChange(of: $popToRootTab.wrappedValue) { _, newValue in
if newValue == .notifications {
if routerPath.path.isEmpty {
scrollToTopSignal += 1
} else {
routerPath.path = []
}
2022-12-24 10:50:05 +00:00
}
}
2024-02-14 11:48:14 +00:00
.onChange(of: selectedTab) { _, _ in
clearNotifications()
2024-02-14 11:48:14 +00:00
}
.onChange(of: pushNotificationsService.handledNotification) { _, newValue in
if let newValue, let type = newValue.notification.supportedType {
2023-02-14 11:17:27 +00:00
DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) {
2023-02-13 21:30:06 +00:00
switch type {
case .follow, .follow_request:
routerPath.navigate(to: .accountDetailWithAccount(account: newValue.notification.account))
2023-02-13 21:30:06 +00:00
default:
if let status = newValue.notification.status {
2023-02-13 21:30:06 +00:00
routerPath.navigate(to: .statusDetailWithStatus(status: status))
}
}
}
}
}
.onChange(of: scenePhase) { _, newValue in
switch newValue {
case .active:
2023-02-22 11:14:57 +00:00
clearNotifications()
default:
break
}
}
.onChange(of: client.id) {
routerPath.path = []
}
2022-12-19 11:28:55 +00:00
}
2023-02-22 18:09:39 +00:00
2023-02-22 11:14:57 +00:00
private func clearNotifications() {
2023-12-26 12:51:41 +00:00
if selectedTab == .notifications || isSecondaryColumn {
2023-02-22 11:14:57 +00:00
if let token = appAccount.currentAccount.oauthToken {
2023-09-19 06:44:11 +00:00
userPreferences.notificationsCount[token] = 0
2023-02-22 11:14:57 +00:00
}
watcher.unreadNotificationsCount = 0
}
}
2022-12-19 11:28:55 +00:00
}