blob: 7ed1efcc3f2f0eae5727093e1ae1365bce9702b4 (
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
76
77
78
79
80
81
82
|
//
// PresentAlertOperation.swift
// PresentAlertOperation
//
// Created by pronebird on 06/09/2021.
// Copyright © 2021 Mullvad VPN AB. All rights reserved.
//
import UIKit
class PresentAlertOperation: AsyncOperation {
private let alertController: UIAlertController
private let presentingController: UIViewController
private let presentCompletion: (() -> Void)?
init(alertController: UIAlertController, presentingController: UIViewController, presentCompletion: (() -> Void)? = nil) {
self.alertController = alertController
self.presentingController = presentingController
self.presentCompletion = presentCompletion
super.init()
}
override func cancel() {
DispatchQueue.main.async {
// Guard against executing cancellation more than once.
guard !self.isCancelled else { return }
// Call super implementation to toggle isCancelled flag
super.cancel()
// Guard against trying to dismiss the alert when operation hasn't started yet.
guard self.isExecuting else { return }
// Guard against dismissing controller during transition.
if !self.alertController.isBeingPresented && !self.alertController.isBeingDismissed {
self.dismissAndFinish()
}
}
}
override func main() {
DispatchQueue.main.async {
guard !self.isCancelled else {
self.finish()
return
}
NotificationCenter.default.addObserver(
self,
selector: #selector(self.alertControllerDidDismiss(_:)),
name: AlertPresenter.alertControllerDidDismissNotification,
object: self.alertController
)
self.presentingController.present(self.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: self.alertController
)
alertController.dismiss(animated: false) {
self.finish()
}
}
@objc private func alertControllerDidDismiss(_ note: Notification) {
finish()
}
}
|