mirror of
https://github.com/kean/Pulse.git
synced 2026-05-30 21:07:33 +00:00
55 lines
1.6 KiB
Swift
55 lines
1.6 KiB
Swift
// The MIT License (MIT)
|
||
//
|
||
// Copyright (c) 2020–2023 Alexander Grebenyuk (github.com/kean).
|
||
|
||
#if os(iOS)
|
||
|
||
import Foundation
|
||
import UIKit
|
||
import Pulse
|
||
import SwiftUI
|
||
|
||
public final class MainViewController: UIViewController {
|
||
private let environment: ConsoleEnvironment
|
||
|
||
public static var isAutomaticAppearanceOverrideRemovalEnabled = true
|
||
|
||
public init(store: LoggerStore = .shared) {
|
||
self.environment = ConsoleEnvironment(store: store)
|
||
super.init(nibName: nil, bundle: nil)
|
||
|
||
if MainViewController.isAutomaticAppearanceOverrideRemovalEnabled {
|
||
removeAppearanceOverrides()
|
||
}
|
||
let console = ConsoleView(environment: environment)
|
||
let vc = UIHostingController(rootView: NavigationView { console })
|
||
addChild(vc)
|
||
view.addSubview(vc.view)
|
||
vc.view.pinToSuperview()
|
||
}
|
||
|
||
@available(*, deprecated, message: "onDismiss parameter is deprecated")
|
||
public convenience init(store: LoggerStore = .shared, onDismiss: @escaping () -> Void) {
|
||
self.init(store: store)
|
||
}
|
||
|
||
required init?(coder: NSCoder) {
|
||
fatalError("init(coder:) has not been implemented")
|
||
}
|
||
}
|
||
|
||
private var isAppearanceCleanupNeeded = true
|
||
|
||
private func removeAppearanceOverrides() {
|
||
guard isAppearanceCleanupNeeded else { return }
|
||
isAppearanceCleanupNeeded = false
|
||
|
||
let appearance = UINavigationBar.appearance(whenContainedInInstancesOf: [MainViewController.self])
|
||
appearance.tintColor = nil
|
||
appearance.barTintColor = nil
|
||
appearance.titleTextAttributes = nil
|
||
appearance.isTranslucent = true
|
||
}
|
||
|
||
#endif
|