-
-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathKeyboardExtenderContainerView.swift
More file actions
136 lines (110 loc) · 3.54 KB
/
KeyboardExtenderContainerView.swift
File metadata and controls
136 lines (110 loc) · 3.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
//
// KeyboardExtenderContainerView.swift
// Pods
//
// Created by Kiryl Ziusko on 11/07/2025.
//
import UIKit
@objc
public class KeyboardExtenderContainerView: NSObject {
@objc public static func create(frame: CGRect, contentView: UIView) -> UIView {
#if canImport(UIKit.UIGlassEffect)
if #available(iOS 26.0, *) {
return ModernContainerView(frame: frame, contentView: contentView)
}
#endif
return LegacyContainerView(frame: frame, contentView: contentView)
}
}
private class BaseContainerView: UIInputView {
var contentView: UIView!
init(frame: CGRect, contentView: UIView) {
super.init(frame: frame, inputViewStyle: .keyboard)
self.contentView = contentView
commonSetup()
}
@available(*, unavailable)
required init?(coder _: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
private func commonSetup() {
allowsSelfSizing = true
autoresizingMask = [.flexibleHeight]
setupContainerSpecifics()
}
func setupContainerSpecifics() {
// Override in subclasses
}
func calculateDesiredHeight() -> CGFloat {
guard let firstSubview = contentView.subviews.first else { return 0 }
return firstSubview.frame.height
}
override func layoutSubviews() {
super.layoutSubviews()
let desiredHeight = calculateDesiredHeight()
if frame.height != desiredHeight {
frame.size.height = desiredHeight
updateContentFrame(desiredHeight: desiredHeight)
// Trigger layout updates
invalidateIntrinsicContentSize()
setNeedsLayout()
UIResponder.current?.reloadInputViews()
}
}
func updateContentFrame(desiredHeight _: CGFloat) {
// Override in subclasses
}
override public var intrinsicContentSize: CGSize {
return CGSize(width: UIView.noIntrinsicMetric, height: frame.height)
}
}
// MARK: - Modern Implementation (iOS 26.0+)
@available(iOS 26.0, *)
private class ModernContainerView: BaseContainerView {
private let paddingHorizontal: CGFloat = 20.0
private let paddingBottom: CGFloat = 10.0
private var visualEffectView: UIVisualEffectView?
override func setupContainerSpecifics() {
setupVisualEffect()
}
private func setupVisualEffect() {
#if canImport(UIKit.UIGlassEffect)
let isDark = FocusedInputHolder.shared.get()?.keyboardAppearanceValue == "dark"
let glassEffect = UIGlassEffect()
let color =
isDark ? UIColor.black.withAlphaComponent(0.3) : UIColor.gray.withAlphaComponent(0.3)
glassEffect.tintColor = color
glassEffect.isInteractive = true
visualEffectView = UIVisualEffectView(effect: glassEffect)
visualEffectView?.overrideUserInterfaceStyle = isDark ? .dark : .light
visualEffectView?.cornerConfiguration = .capsule()
if let visualEffectView = visualEffectView {
visualEffectView.contentView.addSubview(contentView)
addSubview(visualEffectView)
}
#endif
}
override func updateContentFrame(desiredHeight: CGFloat) {
visualEffectView?.frame = CGRect(
x: paddingHorizontal,
y: -paddingBottom,
width: bounds.width - 2 * paddingHorizontal,
height: desiredHeight
)
contentView.frame = CGRect(
x: -paddingHorizontal,
y: 0,
width: bounds.width,
height: desiredHeight
)
}
}
// MARK: - Legacy Implementation (Pre-iOS 26.0)
private class LegacyContainerView: BaseContainerView {
override func setupContainerSpecifics() {
addSubview(contentView)
}
override func updateContentFrame(desiredHeight _: CGFloat) {
contentView.frame = bounds
}
}