mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
200 lines
7.1 KiB
Swift
200 lines
7.1 KiB
Swift
import Foundation
|
|
import Display
|
|
import TelegramLegacyComponents
|
|
|
|
public enum LegacyControllerPresentation {
|
|
case custom
|
|
case modal(animateIn: Bool)
|
|
}
|
|
|
|
private func passControllerAppearanceAnimated(in: Bool, presentation: LegacyControllerPresentation) -> Bool {
|
|
switch presentation {
|
|
case let .modal(animateIn):
|
|
if `in` {
|
|
return animateIn
|
|
} else {
|
|
return true
|
|
}
|
|
default:
|
|
return false
|
|
}
|
|
}
|
|
|
|
private final class LegacyControllerApplicationInterface: NSObject, TGLegacyApplicationInterface {
|
|
private weak var controller: ViewController?
|
|
|
|
init(controller: ViewController?) {
|
|
self.controller = controller
|
|
|
|
super.init()
|
|
}
|
|
|
|
@available(iOS 8.0, *)
|
|
public func currentSizeClass() -> UIUserInterfaceSizeClass {
|
|
return .compact
|
|
}
|
|
|
|
@available(iOS 8.0, *)
|
|
public func currentHorizontalSizeClass() -> UIUserInterfaceSizeClass {
|
|
return .compact
|
|
}
|
|
|
|
public func forceSetStatusBarHidden(_ hidden: Bool, with animation: UIStatusBarAnimation) {
|
|
if let controller = self.controller {
|
|
controller.statusBar.isHidden = hidden
|
|
}
|
|
}
|
|
|
|
public func applicationBounds() -> CGRect {
|
|
if let controller = controller {
|
|
return controller.view.bounds;
|
|
} else {
|
|
return CGRect(origin: CGPoint(x: 0.0, y: 0.0), size: CGSize(width: 320.0, height: 480.0))
|
|
}
|
|
}
|
|
|
|
public func applicationStatusBarAlpha() -> CGFloat {
|
|
return controller?.statusBar.alpha ?? 1.0
|
|
}
|
|
|
|
public func setApplicationStatusBarAlpha(_ alpha: CGFloat) {
|
|
controller?.statusBar.alpha = alpha
|
|
}
|
|
|
|
public func applicationStatusBarOffset() -> CGFloat {
|
|
return 0.0
|
|
}
|
|
|
|
public func setApplicationStatusBarOffset(_ offset: CGFloat) {
|
|
|
|
}
|
|
|
|
public func animateApplicationStatusBarAppearance(_ statusBarAnimation: Int32, delay: TimeInterval, duration: TimeInterval, completion: (() -> Swift.Void)!) {
|
|
if let completion = completion {
|
|
completion()
|
|
}
|
|
}
|
|
|
|
public func animateApplicationStatusBarAppearance(_ statusBarAnimation: Int32, duration: TimeInterval, completion: (() -> Swift.Void)!) {
|
|
if let completion = completion {
|
|
completion()
|
|
}
|
|
}
|
|
|
|
public func animateApplicationStatusBarStyleTransition(withDuration duration: TimeInterval) {
|
|
|
|
}
|
|
|
|
public func makeOverlayControllerWindow(_ parentController: TGViewController!, contentController: TGOverlayController!, keepKeyboard: Bool) -> TGOverlayControllerWindow! {
|
|
return LegacyOverlayWindowHost(presentInWindow: { [weak self] c in
|
|
self?.controller?.present(c, in: .window(.root))
|
|
}, parentController: parentController, contentController: contentController, keepKeyboard: keepKeyboard)
|
|
}
|
|
}
|
|
|
|
public class LegacyController: ViewController {
|
|
private let legacyController: UIViewController
|
|
private let presentation: LegacyControllerPresentation
|
|
|
|
private var controllerNode: LegacyControllerNode {
|
|
return self.displayNode as! LegacyControllerNode
|
|
}
|
|
|
|
var applicationInterface: TGLegacyApplicationInterface {
|
|
return LegacyControllerApplicationInterface(controller: self)
|
|
}
|
|
|
|
var controllerLoaded: (() -> Void)?
|
|
public var presentationCompleted: (() -> Void)?
|
|
|
|
public init(legacyController: UIViewController, presentation: LegacyControllerPresentation) {
|
|
self.legacyController = legacyController
|
|
self.presentation = presentation
|
|
|
|
super.init(navigationBarTheme: nil)
|
|
|
|
if let legacyController = legacyController as? TGLegacyApplicationInterfaceHolder {
|
|
legacyController.applicationInterface = self.applicationInterface
|
|
}
|
|
}
|
|
|
|
required public init(coder aDecoder: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
|
|
override public func loadDisplayNode() {
|
|
self.displayNode = LegacyControllerNode()
|
|
self.displayNodeDidLoad()
|
|
}
|
|
|
|
override public func viewWillAppear(_ animated: Bool) {
|
|
super.viewWillAppear(animated)
|
|
|
|
if self.controllerNode.controllerView == nil {
|
|
self.controllerNode.controllerView = self.legacyController.view
|
|
self.controllerNode.view.insertSubview(self.legacyController.view, at: 0)
|
|
|
|
if let controllerLoaded = self.controllerLoaded {
|
|
controllerLoaded()
|
|
}
|
|
}
|
|
|
|
self.legacyController.viewWillAppear(animated && passControllerAppearanceAnimated(in: true, presentation: self.presentation))
|
|
}
|
|
|
|
override public func viewWillDisappear(_ animated: Bool) {
|
|
super.viewWillDisappear(animated)
|
|
|
|
self.legacyController.viewWillDisappear(animated && passControllerAppearanceAnimated(in: false, presentation: self.presentation))
|
|
}
|
|
|
|
override public func viewDidAppear(_ animated: Bool) {
|
|
super.viewDidAppear(animated)
|
|
|
|
switch self.presentation {
|
|
case let .modal(animateIn):
|
|
if animateIn {
|
|
self.controllerNode.animateModalIn(completion: { [weak self] in
|
|
self?.presentationCompleted?()
|
|
})
|
|
}
|
|
self.legacyController.viewDidAppear(animated && animateIn)
|
|
case .custom:
|
|
self.legacyController.viewDidAppear(animated)
|
|
}
|
|
}
|
|
|
|
override public func viewDidDisappear(_ animated: Bool) {
|
|
super.viewDidDisappear(animated)
|
|
|
|
self.legacyController.viewDidDisappear(animated && passControllerAppearanceAnimated(in: false, presentation: self.presentation))
|
|
}
|
|
|
|
override public func containerLayoutUpdated(_ layout: ContainerViewLayout, transition: ContainedViewLayoutTransition) {
|
|
super.containerLayoutUpdated(layout, transition: transition)
|
|
|
|
self.controllerNode.containerLayoutUpdated(layout, navigationBarHeight: self.navigationHeight, transition: transition)
|
|
}
|
|
|
|
override open func dismiss(completion: (() -> Void)? = nil) {
|
|
switch self.presentation {
|
|
case .modal:
|
|
self.controllerNode.animateModalOut { [weak self] in
|
|
if let controller = self?.legacyController as? TGViewController {
|
|
controller.didDismiss()
|
|
} else if let controller = self?.legacyController as? TGNavigationController {
|
|
controller.didDismiss()
|
|
}
|
|
self?.presentingViewController?.dismiss(animated: false, completion: completion)
|
|
}
|
|
case .custom:
|
|
if let controller = self.legacyController as? TGViewController {
|
|
controller.didDismiss()
|
|
} else if let controller = self.legacyController as? TGNavigationController {
|
|
controller.didDismiss()
|
|
}
|
|
self.presentingViewController?.dismiss(animated: false, completion: completion)
|
|
}
|
|
}
|
|
}
|