IceCubesApp/IceCubesApp/App/Tabs/NotificationTab.swift

99 lines
3.2 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
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
@EnvironmentObject private var theme: 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-01-09 17:52:53 +00:00
@EnvironmentObject private var userPreferences: UserPreferences
@Environment(PushNotificationsService.self) private var pushNotificationsService
@State private var routerPath = RouterPath()
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)
.withAppRouter()
.withSheetDestinations(sheetDestinations: $routerPath.presentedSheet)
2022-12-29 16:22:07 +00:00
.toolbar {
if !isSecondaryColumn {
statusEditorToolbarItem(routerPath: routerPath,
visibility: userPreferences.postVisibility)
if UIDevice.current.userInterfaceIdiom != .pad {
ToolbarItem(placement: .navigationBarLeading) {
AppAccountsSelectorView(routerPath: routerPath)
}
2023-01-16 20:15:33 +00:00
}
}
if UIDevice.current.userInterfaceIdiom == .pad {
if (!isSecondaryColumn && !userPreferences.showiPadSecondaryColumn) || isSecondaryColumn {
SecondaryColumnToolbarItem()
}
}
2022-12-29 16:22:07 +00:00
}
.toolbarBackground(theme.primaryBackgroundColor.opacity(0.50), 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-02-22 11:14:57 +00:00
if isSecondaryColumn {
clearNotifications()
}
2022-12-25 12:09:43 +00:00
}
.withSafariRouter()
.environment(routerPath)
.onChange(of: $popToRootTab.wrappedValue) { _, newValue in
if newValue == .notifications {
routerPath.path = []
2022-12-24 10:50:05 +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() {
if isSecondaryColumn {
if let token = appAccount.currentAccount.oauthToken {
userPreferences.setNotification(count: 0, token: token)
}
watcher.unreadNotificationsCount = 0
}
}
2022-12-19 11:28:55 +00:00
}