Skip to content

Commit 8298834

Browse files
committed
Swift-ier function signatures and CGRect.zero
1 parent 3495b9d commit 8298834

File tree

1 file changed

+12
-17
lines changed

1 file changed

+12
-17
lines changed

packages/components/Callout/macos/CalloutView.swift

+12-17
Original file line numberDiff line numberDiff line change
@@ -226,9 +226,9 @@ class CalloutView: RCTView, CalloutWindowLifeCycleDelegate {
226226

227227
isCalloutWindowShown = false
228228
}
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)? {
232232
// Do not proceed if the preconditions of this function are not met
233233
guard leafShadowView.isYogaLeafNode() else {
234234
preconditionFailure("leafshadow is not a leaf node")
@@ -260,7 +260,7 @@ class CalloutView: RCTView, CalloutWindowLifeCycleDelegate {
260260
}
261261

262262
// 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 {
264264
return nil
265265
}
266266

@@ -294,12 +294,10 @@ class CalloutView: RCTView, CalloutWindowLifeCycleDelegate {
294294
return nil
295295
}
296296

297-
let zeroRect = CGRect(x: 0, y: 0, width: 0, height: 0)
298-
299297
// If the targetView is backed by an NSView and has a representative rect, return it as the anchor rect for the target
300298
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)
303301
}
304302
}
305303

@@ -324,8 +322,8 @@ class CalloutView: RCTView, CalloutWindowLifeCycleDelegate {
324322
}
325323

326324
// 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)
329327
}
330328

331329
// Unfortunately our efforts could not determine a valid anchor rect for our target prop
@@ -392,12 +390,12 @@ class CalloutView: RCTView, CalloutWindowLifeCycleDelegate {
392390
}
393391

394392
/// 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 {
396394
guard let window = window else {
397395
preconditionFailure("No window found")
398396
}
399397

400-
let anchorBoundsInWindow = anchorView.convert(anchorBounds, to: nil)
398+
let anchorBoundsInWindow = anchorView.convert(subviewAnchorBounds ?? anchorView.bounds, to: nil)
401399
let anchorFrameInScreenCoordinates = window.convertToScreen(anchorBoundsInWindow)
402400

403401
return anchorFrameInScreenCoordinates
@@ -526,17 +524,14 @@ class CalloutView: RCTView, CalloutWindowLifeCycleDelegate {
526524
}
527525
}
528526

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.
530528
@objc private func menuDidBeginTracking() {
531529
self.dismissCallout()
532530
}
533531

534532
// MARK: Private variables
535533

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
540535
/// view hierarchy, ensuring our React Views are not placed in the main window.
541536
private lazy var proxyView: NSView = {
542537
let visualEffectView = FlippedVisualEffectView()

0 commit comments

Comments
 (0)