forked from shadowfacts/Tusker
45 lines
1.4 KiB
Swift
45 lines
1.4 KiB
Swift
//
|
|
// API.swift
|
|
// Duckable
|
|
//
|
|
// Created by Shadowfacts on 11/7/22.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
public protocol DuckableViewController: UIViewController {
|
|
var duckableDelegate: DuckableViewControllerDelegate? { get set }
|
|
|
|
func duckableViewControllerMayAttemptToDuck()
|
|
|
|
func duckableViewControllerWillAnimateDuck(withDuration duration: CGFloat, afterDelay delay: CGFloat)
|
|
|
|
func duckableViewControllerDidFinishAnimatingDuck()
|
|
}
|
|
|
|
extension DuckableViewController {
|
|
public func duckableViewControllerMayAttemptToDuck() {}
|
|
public func duckableViewControllerWillAnimateDuck(withDuration duration: CGFloat, afterDelay delay: CGFloat) {}
|
|
public func duckableViewControllerDidFinishAnimatingDuck() {}
|
|
}
|
|
|
|
public protocol DuckableViewControllerDelegate: AnyObject {
|
|
func duckableViewControllerWillDismiss(animated: Bool)
|
|
}
|
|
|
|
extension UIViewController {
|
|
@available(iOS 16.0, *)
|
|
public func presentDuckable(_ viewController: DuckableViewController, animated: Bool, isDucked: Bool = false) -> Bool {
|
|
var cur: UIViewController? = self
|
|
while let vc = cur {
|
|
if let container = vc as? DuckableContainerViewController {
|
|
container.presentDuckable(viewController, animated: animated, isDucked: isDucked, completion: nil)
|
|
return true
|
|
} else {
|
|
cur = vc.parent
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
}
|