@@ -226,9 +226,9 @@ class CalloutView: RCTView, CalloutWindowLifeCycleDelegate {
226
226
227
227
isCalloutWindowShown = false
228
228
}
229
-
230
- // Return the TextView and TextShadowView of a Leaf node ShadowView for specialized nested TextView anchoring
231
- private func getTextViewsForLeafShadow ( leafShadowView: RCTShadowView ) -> ( textView: RCTTextView , textShadowView: RCTTextShadowView ) ? {
229
+
230
+ /// Return the TextView and TextShadowView of a Leaf node ShadowView for specialized nested TextView anchoring
231
+ private func getTextViews ( leafShadowView: RCTShadowView ) -> ( textView: RCTTextView , textShadowView: RCTTextShadowView ) ? {
232
232
// Do not proceed if the preconditions of this function are not met
233
233
guard leafShadowView. isYogaLeafNode ( ) else {
234
234
preconditionFailure ( " leafshadow is not a leaf node " )
@@ -260,7 +260,7 @@ class CalloutView: RCTView, CalloutWindowLifeCycleDelegate {
260
260
}
261
261
262
262
// Get the TextView and TextShadowView we need to calculate the bounds of the subview
263
- guard let ( textView, textShadowView) = getTextViewsForLeafShadow ( leafShadowView: leafShadowView) else {
263
+ guard let ( textView, textShadowView) = getTextViews ( leafShadowView: leafShadowView) else {
264
264
return nil
265
265
}
266
266
@@ -294,12 +294,10 @@ class CalloutView: RCTView, CalloutWindowLifeCycleDelegate {
294
294
return nil
295
295
}
296
296
297
- let zeroRect = CGRect ( x: 0 , y: 0 , width: 0 , height: 0 )
298
-
299
297
// If the targetView is backed by an NSView and has a representative rect, return it as the anchor rect for the target
300
298
if let targetView = reactBridge. uiManager. view ( forReactTag: reactTag) {
301
- if !targetView. bounds. equalTo ( zeroRect ) {
302
- return calculateAnchorViewScreenRect ( anchorView: targetView, anchorBounds : targetView . bounds )
299
+ if !targetView. bounds. equalTo ( CGRect . zero ) {
300
+ return calculateAnchorViewScreenRect ( anchorView: targetView)
303
301
}
304
302
}
305
303
@@ -324,8 +322,8 @@ class CalloutView: RCTView, CalloutWindowLifeCycleDelegate {
324
322
}
325
323
326
324
// If we could find the bounding rect of our target view and it's a representative rect, return it as the anchor rect for the target
327
- if !targetViewBounds. equalTo ( zeroRect ) {
328
- return calculateAnchorViewScreenRect ( anchorView: leafNSView, anchorBounds : targetViewBounds)
325
+ if !targetViewBounds. equalTo ( CGRect . zero ) {
326
+ return calculateAnchorViewScreenRect ( anchorView: leafNSView, subviewAnchorBounds : targetViewBounds)
329
327
}
330
328
331
329
// Unfortunately our efforts could not determine a valid anchor rect for our target prop
@@ -392,12 +390,12 @@ class CalloutView: RCTView, CalloutWindowLifeCycleDelegate {
392
390
}
393
391
394
392
/// Calculates the NSRect of the anchorView in the coordinate space of the current screen
395
- private func calculateAnchorViewScreenRect( anchorView: NSView , anchorBounds : NSRect ) -> NSRect {
393
+ private func calculateAnchorViewScreenRect( anchorView: NSView , subviewAnchorBounds : NSRect ? = nil ) -> NSRect {
396
394
guard let window = window else {
397
395
preconditionFailure ( " No window found " )
398
396
}
399
397
400
- let anchorBoundsInWindow = anchorView. convert ( anchorBounds , to: nil )
398
+ let anchorBoundsInWindow = anchorView. convert ( subviewAnchorBounds ?? anchorView . bounds , to: nil )
401
399
let anchorFrameInScreenCoordinates = window. convertToScreen ( anchorBoundsInWindow)
402
400
403
401
return anchorFrameInScreenCoordinates
@@ -526,17 +524,14 @@ class CalloutView: RCTView, CalloutWindowLifeCycleDelegate {
526
524
}
527
525
}
528
526
529
- // The app's main menu bar is active while callout is shown, dismiss.
527
+ /// The app's main menu bar is active while callout is shown, dismiss.
530
528
@objc private func menuDidBeginTracking( ) {
531
529
self . dismissCallout ( )
532
530
}
533
531
534
532
// MARK: Private variables
535
533
536
- /// The view the Callout is presented from.
537
- private var anchorReactTag : NSNumber ?
538
-
539
- /// The view we forward Callout's Children to. It's hosted within the CalloutWindow's
534
+ /// The view we forward Callout's Children to. It's hosted within the CalloutWindow's
540
535
/// view hierarchy, ensuring our React Views are not placed in the main window.
541
536
private lazy var proxyView : NSView = {
542
537
let visualEffectView = FlippedVisualEffectView ( )
0 commit comments