Beam/ElementX/Sources/Application/AppDelegate.swift

48 lines
2.0 KiB
Swift
Raw Normal View History

2022-02-14 18:05:21 +02:00
//
// Copyright 2022 New Vector Ltd
2022-02-14 18:05:21 +02:00
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2022-02-14 18:05:21 +02:00
//
2022-11-21 19:37:13 +03:00
import Combine
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)
}
class AppDelegate: NSObject, UIApplicationDelegate {
2022-11-21 19:37:13 +03:00
let callbacks = PassthroughSubject<AppDelegateCallback, Never>()
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 {
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
}
}