-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathToolkitManager.swift
62 lines (52 loc) · 1.67 KB
/
ToolkitManager.swift
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
//
// ToolkitManager.swift
// Preply
//
// Created by Yurii Kliuiev on 26.06.2022.
//
import UIKit
import Foundation
import AVFoundation
@objc(ToolkitManager)
class ToolkitManager: NSObject {
@objc static func requiresMainQueueSetup() -> Bool {
return false
}
private func traverseViewHierarchy(view: UIView) -> [String: Any] {
var children: [[String: Any]] = []
for subview in view.subviews {
let childInfo = traverseViewHierarchy(view: subview)
children.append(childInfo)
}
let viewInfo: [String: Any] = [
"left": view.frame.origin.x,
"top": view.frame.origin.y,
"width": view.frame.size.width,
"height": view.frame.size.height,
"accessibilityLabel": view.accessibilityLabel ?? "",
"accessibilityIdentifier": view.accessibilityIdentifier ?? "",
"children": children,
"instanceOf": String(describing: type(of: view)),
]
return viewInfo
}
@objc
func getAllReactNativeComponents(
_ resolve: @escaping RCTPromiseResolveBlock,
rejecter reject: @escaping RCTPromiseRejectBlock) {
do {
guard let rootView = UIApplication.shared.keyWindow?.rootViewController?.view else {
reject("NoRootView", "Could not find the root view", nil)
return
}
let viewportWidth = UIScreen.main.bounds.size.width
let viewportHeight = UIScreen.main.bounds.size.height
var rootInfo = traverseViewHierarchy(view: rootView)
rootInfo["viewportWidth"] = viewportWidth
rootInfo["viewportHeight"] = viewportHeight
resolve(rootInfo)
} catch {
reject("Toolkit - getVolume", "Failed to get volume \(error)", nil)
}
}
}