// // Copyright 2021 New Vector Ltd // // 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. // import SwiftUI struct AnalyticsPromptCoordinatorParameters { /// The session to use if analytics are enabled. let session: MXSession } final class AnalyticsPromptCoordinator: Coordinator, Presentable { // MARK: - Properties // MARK: Private private let parameters: AnalyticsPromptCoordinatorParameters private let analyticsPromptHostingController: VectorHostingController private var _analyticsPromptViewModel: Any? fileprivate var analyticsPromptViewModel: AnalyticsPromptViewModel { _analyticsPromptViewModel as! AnalyticsPromptViewModel } // MARK: Public // Must be used only internally var childCoordinators: [Coordinator] = [] var completion: (() -> Void)? // MARK: - Setup init(parameters: AnalyticsPromptCoordinatorParameters) { self.parameters = parameters let strings = AnalyticsPromptStrings() let promptType: AnalyticsPromptType if Analytics.shared.promptShouldDisplayUpgradeMessage { promptType = .upgrade } else { promptType = .newUser } let viewModel = AnalyticsPromptViewModel(promptType: promptType, strings: strings, termsURL: BuildSettings.analyticsConfiguration.termsURL) let view = AnalyticsPrompt(viewModel: viewModel.context) _analyticsPromptViewModel = viewModel analyticsPromptHostingController = VectorHostingController(rootView: view) analyticsPromptHostingController.isNavigationBarHidden = true } // MARK: - Public func start() { MXLog.debug("[AnalyticsPromptCoordinator] did start.") analyticsPromptViewModel.completion = { [weak self] result in MXLog.debug("[AnalyticsPromptCoordinator] AnalyticsPromptViewModel did complete with result: \(result).") guard let self = self else { return } switch result { case .enable: Analytics.shared.optIn(with: self.parameters.session) self.completion?() case .disable: Analytics.shared.optOut() self.completion?() } } } func toPresentable() -> UIViewController { analyticsPromptHostingController } }