summaryrefslogtreecommitdiffhomepage
path: root/ios/MullvadVPN/Presentation controllers/FormsheetPresentationController.swift
blob: 06bfcd60fd457e5618dbad5d2858553da81d68d0 (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
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
//
//  FormSheetPresentationController.swift
//  MullvadVPN
//
//  Created by pronebird on 18/02/2023.
//  Copyright © 2025 Mullvad VPN AB. All rights reserved.
//

import MullvadTypes
import UIKit

struct FormSheetPresentationOptions {
    /**
     Indicates whether the presentation controller should use a fullscreen presentation when in a compact width environment
     */
    var useFullScreenPresentationInCompactWidth = false

    /**
     Indicates whether the presentation controller should handle keyboard notifications
     */
    var adjustViewWhenKeyboardAppears = false
}

/**
 Custom implementation of a formsheet presentation controller.
 */
class FormSheetPresentationController: UIPresentationController {
    /**
     Name of notification posted when fullscreen presentation changes, including during initial presentation.
     */
    static let willChangeFullScreenPresentation =
        Notification
        .Name(rawValue: "FormSheetPresentationControllerWillChangeFullScreenPresentation")

    /**
     User info key passed along with `willChangeFullScreenPresentation` notification that contains boolean value that
     indicates if presentation controller is using fullscreen presentation.
     */
    static let isFullScreenUserInfoKey = "isFullScreen"

    /**
     Last known presentation style used to prevent emitting duplicate `willChangeFullScreenPresentation` notifications.
     */
    private var lastKnownIsInFullScreen: Bool?

    /**
     Change the position of `presentedView` if `FormSheetPresentationOptions.adjustViewWhenKeyboardAppears` is `true`
     */
    private var keyboardResponder: AutomaticKeyboardResponder?

    private let dimmingView: UIView = {
        let dimmingView = UIView()
        dimmingView.backgroundColor = UIMetrics.DimmingView.backgroundColor
        return dimmingView
    }()

    override var shouldRemovePresentersView: Bool {
        false
    }

    /**
     Returns `true` if presentation controller is in fullscreen presentation.
     */
    var isInFullScreenPresentation: Bool {
        options.useFullScreenPresentationInCompactWidth && traitCollection.horizontalSizeClass == .compact
    }

    private let options: FormSheetPresentationOptions

    init(
        presentedViewController: UIViewController,
        presenting presentingViewController: UIViewController?,
        options: FormSheetPresentationOptions
    ) {
        self.options = options
        super.init(presentedViewController: presentedViewController, presenting: presentingViewController)
        addKeyboardResponderIfNeeded()
    }

    override var frameOfPresentedViewInContainerView: CGRect {
        guard let containerView else {
            return super.frameOfPresentedViewInContainerView
        }

        if isInFullScreenPresentation {
            return containerView.bounds
        }

        let preferredContentSize = presentedViewController.preferredContentSize

        assert(preferredContentSize.width > 0 && preferredContentSize.height > 0)

        return CGRect(
            origin: CGPoint(
                x: containerView.bounds.midX - preferredContentSize.width * 0.5,
                y: containerView.bounds.midY - preferredContentSize.height * 0.5
            ),
            size: preferredContentSize
        )
    }

    override func containerViewWillLayoutSubviews() {
        dimmingView.frame = containerView?.bounds ?? .zero
        presentedView?.frame = frameOfPresentedViewInContainerView
    }

    override func presentationTransitionWillBegin() {
        dimmingView.alpha = 0
        containerView?.addSubview(dimmingView)

        presentedView?.layer.cornerRadius = UIMetrics.DimmingView.cornerRadius
        presentedView?.clipsToBounds = true

        let revealDimmingView = {
            self.dimmingView.alpha = UIMetrics.DimmingView.opacity
        }

        if let transitionCoordinator = presentingViewController.transitionCoordinator {
            transitionCoordinator.animate { _ in
                revealDimmingView()
            }
        } else {
            revealDimmingView()
        }

        postFullscreenPresentationWillChangeIfNeeded()
    }

    override func presentationTransitionDidEnd(_ completed: Bool) {
        if !completed {
            dimmingView.removeFromSuperview()
        }
    }

    override func dismissalTransitionWillBegin() {
        let fadeDimmingView = {
            self.dimmingView.alpha = 0
        }

        if let transitionCoordinator = presentingViewController.transitionCoordinator {
            transitionCoordinator.animate { _ in
                fadeDimmingView()
            }
        } else {
            fadeDimmingView()
        }
    }

    override func dismissalTransitionDidEnd(_ completed: Bool) {
        if completed {
            dimmingView.removeFromSuperview()
        }
    }

    override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
        super.traitCollectionDidChange(previousTraitCollection)

        postFullscreenPresentationWillChangeIfNeeded()
    }

    private func postFullscreenPresentationWillChangeIfNeeded() {
        let currentIsInFullScreen = isInFullScreenPresentation

        guard lastKnownIsInFullScreen != currentIsInFullScreen else { return }

        lastKnownIsInFullScreen = currentIsInFullScreen

        NotificationCenter.default.post(
            name: Self.willChangeFullScreenPresentation,
            object: presentedViewController,
            userInfo: [Self.isFullScreenUserInfoKey: NSNumber(value: currentIsInFullScreen)]
        )
    }

    private func addKeyboardResponderIfNeeded() {
        guard options.adjustViewWhenKeyboardAppears,
            let presentedView
        else { return }
        keyboardResponder = AutomaticKeyboardResponder(
            targetView: presentedView,
            handler: { [weak self] view, adjustment in
                guard let self,
                    let containerView,
                    !isInFullScreenPresentation
                else { return }
                let frame = view.frame
                let bottomMarginFromKeyboard = adjustment > 0 ? UIMetrics.TableView.sectionSpacing : 0
                view.frame = CGRect(
                    origin: CGPoint(
                        x: frame.origin.x,
                        y: containerView.bounds.midY - presentedViewController.preferredContentSize
                            .height * 0.5 - adjustment - bottomMarginFromKeyboard
                    ),
                    size: frame.size
                )
                view.layoutIfNeeded()
            }
        )
    }
}

class FormSheetTransitioningDelegate: NSObject, UIViewControllerTransitioningDelegate {
    let options: FormSheetPresentationOptions

    init(options: FormSheetPresentationOptions = FormSheetPresentationOptions()) {
        self.options = options
    }

    func animationController(
        forPresented presented: UIViewController,
        presenting: UIViewController,
        source: UIViewController
    ) -> UIViewControllerAnimatedTransitioning? {
        FormSheetPresentationAnimator()
    }

    func animationController(forDismissed dismissed: UIViewController)
        -> UIViewControllerAnimatedTransitioning?
    {
        FormSheetPresentationAnimator()
    }

    func presentationController(
        forPresented presented: UIViewController,
        presenting: UIViewController?,
        source: UIViewController
    ) -> UIPresentationController? {
        FormSheetPresentationController(
            presentedViewController: presented,
            presenting: source,
            options: options
        )
    }
}

class FormSheetPresentationAnimator: NSObject, UIViewControllerAnimatedTransitioning {
    func transitionDuration(using transitionContext: UIViewControllerContextTransitioning?)
        -> TimeInterval
    {
        (transitionContext?.isAnimated ?? true) ? UIMetrics.FormSheetTransition.duration.timeInterval : 0
    }

    func animateTransition(using transitionContext: UIViewControllerContextTransitioning) {
        let destination = transitionContext.viewController(forKey: .to)

        if destination?.isBeingPresented ?? false {
            animatePresentation(transitionContext)
        } else {
            animateDismissal(transitionContext)
        }
    }

    private func animatePresentation(_ transitionContext: UIViewControllerContextTransitioning) {
        let duration = transitionDuration(using: transitionContext)
        let containerView = transitionContext.containerView
        let destinationView = transitionContext.view(forKey: .to)!
        let destinationController = transitionContext.viewController(forKey: .to)!

        containerView.addSubview(destinationView)

        var initialFrame = transitionContext.finalFrame(for: destinationController)
        initialFrame.origin.y = containerView.bounds.maxY
        destinationView.frame = initialFrame

        if transitionContext.isAnimated {
            UIView.animate(
                withDuration: duration,
                delay: UIMetrics.FormSheetTransition.delay.timeInterval,
                options: UIMetrics.FormSheetTransition.animationOptions,
                animations: {
                    destinationView.frame = transitionContext.finalFrame(for: destinationController)
                },
                completion: { _ in
                    transitionContext.completeTransition(true)
                }
            )
        } else {
            destinationView.frame = transitionContext.finalFrame(for: destinationController)
        }
    }

    private func animateDismissal(_ transitionContext: UIViewControllerContextTransitioning) {
        let duration = transitionDuration(using: transitionContext)
        let containerView = transitionContext.containerView
        let sourceView = transitionContext.view(forKey: .from)!
        let sourceController = transitionContext.viewController(forKey: .from)!

        var initialFrame = transitionContext.finalFrame(for: sourceController)
        initialFrame.origin.y = containerView.bounds.maxY

        if transitionContext.isAnimated {
            UIView.animate(
                withDuration: duration,
                delay: UIMetrics.FormSheetTransition.delay.timeInterval,
                options: UIMetrics.FormSheetTransition.animationOptions,
                animations: {
                    sourceView.frame = initialFrame
                },
                completion: { _ in
                    transitionContext.completeTransition(true)
                }
            )
        } else {
            sourceView.frame = initialFrame
            transitionContext.completeTransition(true)
        }
    }
}