mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-12-22 21:08:15 +01:00
6297a428a3
* Compile on iOS 18
* Fix more warnings
* Tweak build settings
* Migrate to Swift Tests
* better tests
* Fix
* Fix tests
* More TabView cleanup
Bump to iOS 18 only + remove custom sidebar
* Revert "More TabView cleanup"
This reverts commit e051437fcb
.
* Tabbar fix + bump to iOS 18
* Remove popToRoot
* Cleanup scrollToTop
* Support both TapBar
* Better TabView support
* Better TabView support
* Cleanup
* Disable TabView animations
* Remove id in ForEach
* Remove external init for StatusRowView
* Cleanup
* More Swift 6 concurrency
* Swift 6 mode
* Fixes
* Full Swift 6 packages support
* For now compile env in Swift 5 mode
* Fix archive
* More fix to Archive
* Address `dispatch_assert_queue_fail` (#2161)
See https://twitter.com/dimillian/status/1823089444397724003?s=61&t=SC3rvyJQWn1NQqAgMVrT0Q
* Bump Env to Swift 6
* Fix push notification
* Remove unecessary workaround
* Cleanup
* Move to @Entry
* Fix TabView on Catalyst
* Fix build
* Fix build 2
* fix warning
* Fix icons for iOS 18
---------
Co-authored-by: NachoSoto <NachoSoto@users.noreply.github.com>
93 lines
2.9 KiB
Swift
93 lines
2.9 KiB
Swift
import AppAccount
|
|
import DesignSystem
|
|
import Env
|
|
import Models
|
|
import Network
|
|
import Notifications
|
|
import SwiftUI
|
|
import Timeline
|
|
|
|
@MainActor
|
|
struct NotificationsTab: View {
|
|
@Environment(\.isSecondaryColumn) private var isSecondaryColumn: Bool
|
|
@Environment(\.scenePhase) private var scenePhase
|
|
|
|
@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
|
|
@Environment(UserPreferences.self) private var userPreferences
|
|
@Environment(PushNotificationsService.self) private var pushNotificationsService
|
|
@State private var routerPath = RouterPath()
|
|
|
|
@Binding var selectedTab: AppTab
|
|
|
|
let lockedType: Models.Notification.NotificationType?
|
|
|
|
var body: some View {
|
|
NavigationStack(path: $routerPath.path) {
|
|
NotificationsListView(lockedType: lockedType)
|
|
.withAppRouter()
|
|
.withSheetDestinations(sheetDestinations: $routerPath.presentedSheet)
|
|
.toolbar {
|
|
ToolbarItem(placement: .topBarTrailing) {
|
|
Button {
|
|
routerPath.presentedSheet = .accountPushNotficationsSettings
|
|
} label: {
|
|
Image(systemName: "bell")
|
|
}
|
|
}
|
|
ToolbarTab(routerPath: $routerPath)
|
|
}
|
|
.toolbarBackground(theme.primaryBackgroundColor.opacity(0.30), for: .navigationBar)
|
|
.id(client.id)
|
|
}
|
|
.onAppear {
|
|
routerPath.client = client
|
|
clearNotifications()
|
|
}
|
|
.withSafariRouter()
|
|
.environment(routerPath)
|
|
.onChange(of: selectedTab) { _, _ in
|
|
clearNotifications()
|
|
}
|
|
.onChange(of: pushNotificationsService.handledNotification) { _, newValue in
|
|
if let newValue, let type = newValue.notification.supportedType {
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) {
|
|
switch type {
|
|
case .follow, .follow_request:
|
|
routerPath.navigate(to: .accountDetailWithAccount(account: newValue.notification.account))
|
|
default:
|
|
if let status = newValue.notification.status {
|
|
routerPath.navigate(to: .statusDetailWithStatus(status: status))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.onChange(of: scenePhase) { _, newValue in
|
|
switch newValue {
|
|
case .active:
|
|
clearNotifications()
|
|
default:
|
|
break
|
|
}
|
|
}
|
|
.onChange(of: client.id) {
|
|
routerPath.path = []
|
|
}
|
|
}
|
|
|
|
private func clearNotifications() {
|
|
if selectedTab == .notifications || isSecondaryColumn {
|
|
if let token = appAccount.currentAccount.oauthToken, userPreferences.notificationsCount[token] ?? 0 > 0 {
|
|
userPreferences.notificationsCount[token] = 0
|
|
}
|
|
if watcher.unreadNotificationsCount > 0 {
|
|
watcher.unreadNotificationsCount = 0
|
|
}
|
|
}
|
|
}
|
|
}
|