* Fix Timeline on Xcode 14/iOS 16
Raise requirement to iOS 16+
Reduce pagination jumping.
Sonarcloud fixes.
Fix verification test.
Adopt if let optional { syntax.
* Remove unused ScrollViewReader
The ScrollViewReader didn't appear to change the behaviour.
* Fix warnings on Run Scripts.
Run script build phase 'SwiftLint' will be run during every build because it does not specify any outputs. To address this warning, either add output dependencies to the script phase, or configure it to run in every build by unchecking "Based on dependency analysis" in the script phase.
76 lines
2.9 KiB
Swift
76 lines
2.9 KiB
Swift
//
|
|
// Copyright 2022 New Vector Ltd
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
/// A presenter responsible for showing / hiding a full-screen loading view that obscures (and thus disables) all other controls.
|
|
/// It is managed by a `UserIndicator`, meaning the `present` and `dismiss` methods will be called when the parent `UserIndicator` starts or completes.
|
|
class FullscreenLoadingViewPresenter: UserIndicatorViewPresentable {
|
|
private let label: String
|
|
private let presentationContext: UserIndicatorPresentationContext
|
|
private weak var view: UIView?
|
|
private var animator: UIViewPropertyAnimator?
|
|
|
|
init(label: String, presentationContext: UserIndicatorPresentationContext) {
|
|
self.label = label
|
|
self.presentationContext = presentationContext
|
|
}
|
|
|
|
func present() {
|
|
// Find the current top navigation controller
|
|
var presentingController: UIViewController? = presentationContext.indicatorPresentingViewController
|
|
while presentingController?.navigationController != nil {
|
|
presentingController = presentingController?.navigationController
|
|
}
|
|
guard let presentingController else {
|
|
return
|
|
}
|
|
|
|
let view = LabelledActivityIndicatorView(text: label)
|
|
self.view = view
|
|
|
|
view.translatesAutoresizingMaskIntoConstraints = false
|
|
presentingController.view.addSubview(view)
|
|
NSLayoutConstraint.activate([
|
|
view.topAnchor.constraint(equalTo: presentingController.view.topAnchor),
|
|
view.bottomAnchor.constraint(equalTo: presentingController.view.bottomAnchor),
|
|
view.leadingAnchor.constraint(equalTo: presentingController.view.leadingAnchor),
|
|
view.trailingAnchor.constraint(equalTo: presentingController.view.trailingAnchor)
|
|
])
|
|
|
|
view.alpha = 0
|
|
animator = UIViewPropertyAnimator(duration: 0.2, curve: .easeOut) {
|
|
view.alpha = 1
|
|
}
|
|
animator?.startAnimation()
|
|
}
|
|
|
|
func dismiss() {
|
|
guard let view, view.superview != nil else {
|
|
return
|
|
}
|
|
|
|
animator?.stopAnimation(true)
|
|
animator = UIViewPropertyAnimator(duration: 0.2, curve: .easeIn) {
|
|
view.alpha = 0
|
|
}
|
|
animator?.addCompletion { _ in
|
|
view.removeFromSuperview()
|
|
}
|
|
animator?.startAnimation()
|
|
}
|
|
}
|