Newer
Older
import UIKit
import Combine
import DependencyInjection
public final class RootViewController: UIViewController {
@Dependency var barStylist: StatusBarStylist
@Dependency var toastDispatcher: ToastController
var cancellables = Set<AnyCancellable>()
public let navController: UINavigationController
var toastTimer: Timer?
let toastTopPadding: CGFloat = 10
var topToastConstraint: NSLayoutConstraint?
public init(_ content: UINavigationController) {
self.navController = content
super.init(nibName: nil, bundle: nil)
}
required init?(coder: NSCoder) { nil }
public override var preferredStatusBarStyle: UIStatusBarStyle {
barStylist.styleSubject.value
}
public override func viewDidLoad() {
super.viewDidLoad()
addChild(navController)
view.addSubview(navController.view)
navController.view.autoresizingMask = [.flexibleWidth, .flexibleHeight]
navController.view.frame = view.bounds
navController.didMove(toParent: self)
barStylist
.styleSubject
.receive(on: DispatchQueue.main)
.sink { [weak self] _ in
UIView.animate(withDuration: 0.2) {
self?.setNeedsStatusBarAppearanceUpdate()
}
}.store(in: &cancellables)
.receive(on: DispatchQueue.main)
.sink { [unowned self] model in
let toastView = ToastView(model: model)
add(toastView: toastView)
present(toastView: toastView)
}.store(in: &cancellables)
hudDispatcher
.modelPublisher
.receive(on: DispatchQueue.main)
.sink { [unowned self] model in
guard let model else {
guard let hud else { return }
UIView.animate(withDuration: 0.2) {
hud.alpha = 0.0
} completion: { _ in
hud.removeFromSuperview()
self.hud = nil
}
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
@objc private func didPanToast(_ sender: UIPanGestureRecognizer) {
guard let toastView = sender.view else { return }
switch sender.state {
case .began, .changed:
toastTimer?.invalidate()
let padding = toastTopPadding + min(0, sender.translation(in: view).y)
topToastConstraint?.constant = padding
case .cancelled, .ended, .failed:
let halfFrameHeight = -0.5 * toastView.frame.height
let verticalTranslation = sender.translation(in: toastView).y
let didSwipeAboveHalf = verticalTranslation < halfFrameHeight
if didSwipeAboveHalf {
dismiss(toastView: toastView)
} else {
present(toastView: toastView)
}
case .possible:
break
@unknown default:
break
}
}
private func dismiss(toastView: UIView) {
toastView.isUserInteractionEnabled = false
topToastConstraint?.constant = -(toastView.frame.height + view.safeAreaLayoutGuide.layoutFrame.minY)
topToastConstraint = nil
UIView.animate(withDuration: 0.25) {
self.view.setNeedsLayout()
self.view.layoutIfNeeded()
} completion: { _ in
toastView.isUserInteractionEnabled = true
toastView.removeFromSuperview()
self.toastDispatcher.dismissCurrentToast()
}
}
private func add(toastView: UIView) {
let gestureRecognizer = UIPanGestureRecognizer(target: self, action: #selector(didPanToast(_:)))
toastView.addGestureRecognizer(gestureRecognizer)
toastView.translatesAutoresizingMaskIntoConstraints = false
view.addSubview(toastView)
NSLayoutConstraint.activate([
toastView.heightAnchor.constraint(equalToConstant: 78),
toastView.leftAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leftAnchor, constant: 20),
toastView.rightAnchor.constraint(equalTo: view.safeAreaLayoutGuide.rightAnchor, constant: -20)
])
topToastConstraint = toastView.topAnchor.constraint(
equalTo: view.safeAreaLayoutGuide.topAnchor,
constant: -(toastView.frame.height + view.safeAreaLayoutGuide.layoutFrame.height)
)
topToastConstraint?.isActive = true
view.setNeedsLayout()
view.layoutIfNeeded()
}
private func present(toastView: UIView) {
toastView.isUserInteractionEnabled = false
topToastConstraint?.constant = toastTopPadding
UIView.animate(
withDuration: 0.5,
delay: 0,
usingSpringWithDamping: 1,
initialSpringVelocity: 0.5,
options: .curveEaseInOut
) {
self.view.setNeedsLayout()
self.view.layoutIfNeeded()
} completion: { _ in
toastView.isUserInteractionEnabled = true
self.toastTimer?.invalidate()
self.toastTimer = Timer.scheduledTimer(withTimeInterval: 5, repeats: false) { [weak self] _ in
guard let self = self else { return }
self.dismiss(toastView: toastView)
}
}
}
}
private func add(hudView: HUDView) {
if let hud {
hud.removeFromSuperview()
self.hud = nil
}
hudView.alpha = 0.0
hudView.translatesAutoresizingMaskIntoConstraints = false
view.addSubview(hudView)
NSLayoutConstraint.activate([
hudView.topAnchor.constraint(equalTo: view.topAnchor),
hudView.leftAnchor.constraint(equalTo: view.leftAnchor),
hudView.rightAnchor.constraint(equalTo: view.rightAnchor),
hudView.bottomAnchor.constraint(equalTo: view.bottomAnchor)
])
view.setNeedsLayout()
view.layoutIfNeeded()
UIView.animate(withDuration: 0.2) {
hudView.alpha = 1.0
}
hud = hudView
}
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
// if statusSubject.value.isPresented == true && status.isPresented == true {
// self.errorView = nil
// self.animation = nil
// self.window = nil
// self.actionButton = nil
// self.titleLabel = nil
//
// switch status {
// case .on:
// animation = DotAnimation()
//
// case .onTitle(let text):
// animation = DotAnimation()
// titleLabel = UILabel()
// titleLabel!.text = text
//
// case .onAction(let title):
// animation = DotAnimation()
// actionButton = CapsuleButton()
// actionButton!.set(style: .seeThroughWhite, title: title)
//
// case .error(let error):
// errorView = ErrorView(with: error)
// case .none:
// break
// }
//
// showWindow()
// }
// if statusSubject.value.isPresented == false && status.isPresented == true {
// switch status {
// case .on:
// animation = DotAnimation()
//
// case .onTitle(let text):
// animation = DotAnimation()
// titleLabel = UILabel()
// titleLabel!.text = text
//
// case .onAction(let title):
// animation = DotAnimation()
// actionButton = CapsuleButton()
// actionButton!.set(style: .seeThroughWhite, title: title)
//
// case .error(let error):
// errorView = ErrorView(with: error)
// case .none:
// break
// }
//
// showWindow()
// }
// if statusSubject.value.isPresented == true && status.isPresented == false {
// hideWindow()
// }
}