2022-02-14 18:05:21 +02:00
|
|
|
//
|
2024-09-06 16:34:30 +03:00
|
|
|
// Copyright 2022-2024 New Vector Ltd.
|
2022-02-14 18:05:21 +02:00
|
|
|
//
|
2025-01-06 11:27:37 +01:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
|
|
// Please see LICENSE files in the repository root for full details.
|
2022-02-14 18:05:21 +02:00
|
|
|
//
|
|
|
|
|
2022-11-21 19:37:13 +03:00
|
|
|
import Combine
|
2023-11-10 15:38:54 +00:00
|
|
|
import SwiftUI
|
2022-02-14 18:05:21 +02:00
|
|
|
|
2022-11-21 19:37:13 +03:00
|
|
|
enum AppDelegateCallback {
|
|
|
|
case registeredNotifications(deviceToken: Data)
|
|
|
|
case failedToRegisteredNotifications(error: Error)
|
2022-11-16 15:37:34 +02:00
|
|
|
}
|
|
|
|
|
2024-01-18 14:24:15 +01:00
|
|
|
final class AppDelegate: NSObject, UIApplicationDelegate {
|
2022-11-21 19:37:13 +03:00
|
|
|
let callbacks = PassthroughSubject<AppDelegateCallback, Never>()
|
2024-01-18 14:24:15 +01:00
|
|
|
var orientationLock = UIInterfaceOrientationMask.all
|
2023-10-11 13:59:47 +01:00
|
|
|
|
|
|
|
func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration {
|
|
|
|
// Add a SceneDelegate to the SwiftUI scene so that we can connect up the WindowManager.
|
|
|
|
let configuration = UISceneConfiguration(name: nil, sessionRole: connectingSceneSession.role)
|
|
|
|
configuration.delegateClass = SceneDelegate.self
|
|
|
|
return configuration
|
|
|
|
}
|
2022-11-21 19:37:13 +03:00
|
|
|
|
|
|
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil) -> Bool {
|
2023-08-22 12:14:23 +02:00
|
|
|
NSTextAttachment.registerViewProviderClass(PillAttachmentViewProvider.self, forFileType: InfoPlistReader.main.pillsUTType)
|
2022-11-21 19:37:13 +03:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
|
|
|
|
callbacks.send(.registeredNotifications(deviceToken: deviceToken))
|
|
|
|
}
|
|
|
|
|
|
|
|
func application(_ application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {
|
|
|
|
callbacks.send(.failedToRegisteredNotifications(error: error))
|
2022-02-14 18:05:21 +02:00
|
|
|
}
|
2024-01-18 14:24:15 +01:00
|
|
|
|
|
|
|
func application(_ application: UIApplication, supportedInterfaceOrientationsFor window: UIWindow?) -> UIInterfaceOrientationMask {
|
|
|
|
orientationLock
|
|
|
|
}
|
2022-02-14 18:05:21 +02:00
|
|
|
}
|