blob: f9fae07e0c260cc545d51e64805277af4af25a47 (
plain)
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
|
//
// PresentAlertOperation.swift
// PresentAlertOperation
//
// Created by pronebird on 06/09/2021.
// Copyright © 2021 Mullvad VPN AB. All rights reserved.
//
#if canImport(UIKit)
import UIKit
public final class PresentAlertOperation: AsyncOperation {
private let alertController: UIAlertController
private let presentingController: UIViewController
private let presentCompletion: (() -> Void)?
public init(
alertController: UIAlertController,
presentingController: UIViewController,
presentCompletion: (() -> Void)? = nil
) {
self.alertController = alertController
self.presentingController = presentingController
self.presentCompletion = presentCompletion
super.init(dispatchQueue: .main)
}
override public func operationDidCancel() {
// Guard against trying to dismiss the alert when operation hasn't started yet.
guard isExecuting else { return }
// Guard against dismissing controller during transition.
if !alertController.isBeingPresented, !alertController.isBeingDismissed {
dismissAndFinish()
}
}
override public func main() {
NotificationCenter.default.addObserver(
self,
selector: #selector(alertControllerDidDismiss(_:)),
name: AlertPresenter.alertControllerDidDismissNotification,
object: alertController
)
presentingController.present(alertController, animated: true) {
self.presentCompletion?()
// Alert operation was cancelled during transition?
if self.isCancelled {
self.dismissAndFinish()
}
}
}
private func dismissAndFinish() {
NotificationCenter.default.removeObserver(
self,
name: AlertPresenter.alertControllerDidDismissNotification,
object: alertController
)
alertController.dismiss(animated: false) {
self.finish()
}
}
@objc private func alertControllerDidDismiss(_ note: Notification) {
finish()
}
}
#endif
|