@@ -18,10 +18,7 @@ import type {
18
18
TouchedViewDataAtPoint ,
19
19
} from './ReactNativeTypes' ;
20
20
21
- import {
22
- mountSafeCallback_NOT_REALLY_SAFE ,
23
- warnForStyleProps ,
24
- } from './NativeMethodsMixinUtils' ;
21
+ import { warnForStyleProps } from './NativeMethodsMixinUtils' ;
25
22
import { create , diff } from './ReactNativeAttributePayload' ;
26
23
27
24
import { dispatchEvent } from './ReactFabricEventEmitter' ;
@@ -107,6 +104,8 @@ if (registerEventHandler) {
107
104
registerEventHandler ( dispatchEvent ) ;
108
105
}
109
106
107
+ const noop = ( ) => { } ;
108
+
110
109
/**
111
110
* This is used for refs on host components.
112
111
*/
@@ -137,22 +136,20 @@ class ReactFabricHostComponent implements NativeMethods {
137
136
}
138
137
139
138
measure ( callback : MeasureOnSuccessCallback ) {
140
- const { stateNode} = this . _internalInstanceHandle ;
141
- if ( stateNode != null ) {
142
- fabricMeasure (
143
- stateNode . node ,
144
- mountSafeCallback_NOT_REALLY_SAFE ( this , callback ) ,
145
- ) ;
139
+ const node = getShadowNodeFromInternalInstanceHandle (
140
+ this . _internalInstanceHandle ,
141
+ ) ;
142
+ if ( node != null ) {
143
+ fabricMeasure ( node , callback ) ;
146
144
}
147
145
}
148
146
149
147
measureInWindow ( callback : MeasureInWindowOnSuccessCallback ) {
150
- const { stateNode} = this . _internalInstanceHandle ;
151
- if ( stateNode != null ) {
152
- fabricMeasureInWindow (
153
- stateNode . node ,
154
- mountSafeCallback_NOT_REALLY_SAFE ( this , callback ) ,
155
- ) ;
148
+ const node = getShadowNodeFromInternalInstanceHandle (
149
+ this . _internalInstanceHandle ,
150
+ ) ;
151
+ if ( node != null ) {
152
+ fabricMeasureInWindow ( node , callback ) ;
156
153
}
157
154
}
158
155
@@ -174,24 +171,29 @@ class ReactFabricHostComponent implements NativeMethods {
174
171
return ;
175
172
}
176
173
177
- const toStateNode = this . _internalInstanceHandle . stateNode ;
178
- const fromStateNode =
179
- relativeToNativeNode . _internalInstanceHandle . stateNode ;
174
+ const toStateNode = getShadowNodeFromInternalInstanceHandle (
175
+ this . _internalInstanceHandle ,
176
+ ) ;
177
+ const fromStateNode = getShadowNodeFromInternalInstanceHandle (
178
+ relativeToNativeNode . _internalInstanceHandle ,
179
+ ) ;
180
180
181
181
if ( toStateNode != null && fromStateNode != null ) {
182
182
fabricMeasureLayout (
183
- toStateNode . node ,
184
- fromStateNode . node ,
185
- mountSafeCallback_NOT_REALLY_SAFE ( this , onFail ) ,
186
- mountSafeCallback_NOT_REALLY_SAFE ( this , onSuccess ) ,
183
+ toStateNode ,
184
+ fromStateNode ,
185
+ onFail != null ? onFail : noop ,
186
+ onSuccess != null ? onSuccess : noop ,
187
187
) ;
188
188
}
189
189
}
190
190
191
191
unstable_getBoundingClientRect ( ) : DOMRect {
192
- const { stateNode } = this . _internalInstanceHandle ;
193
- if ( stateNode != null ) {
194
- const rect = fabricGetBoundingClientRect ( stateNode . node ) ;
192
+ const node = getShadowNodeFromInternalInstanceHandle (
193
+ this . _internalInstanceHandle ,
194
+ ) ;
195
+ if ( node != null ) {
196
+ const rect = fabricGetBoundingClientRect ( node ) ;
195
197
196
198
if ( rect ) {
197
199
return new DOMRect ( rect [ 0 ] , rect [ 1 ] , rect [ 2 ] , rect [ 3 ] ) ;
@@ -208,13 +210,31 @@ class ReactFabricHostComponent implements NativeMethods {
208
210
}
209
211
const updatePayload = create ( nativeProps , this . viewConfig . validAttributes ) ;
210
212
211
- const { stateNode } = this . _internalInstanceHandle ;
212
- if ( stateNode != null && updatePayload != null ) {
213
- setNativeProps ( stateNode . node , updatePayload ) ;
213
+ const node = getShadowNodeFromInternalInstanceHandle (
214
+ this . _internalInstanceHandle ,
215
+ ) ;
216
+ if ( node != null && updatePayload != null ) {
217
+ setNativeProps ( node , updatePayload ) ;
214
218
}
215
219
}
216
220
}
217
221
222
+ type ParamOf < Fn > = $Call << T > ( ( arg : T ) => mixed ) => T , Fn > ;
223
+ type ShadowNode = ParamOf < ( typeof nativeFabricUIManager ) [ 'measure' ] > ;
224
+
225
+ export function getShadowNodeFromInternalInstanceHandle (
226
+ internalInstanceHandle : mixed ,
227
+ ) : ?ShadowNode {
228
+ return (
229
+ // $FlowExpectedError[incompatible-return] internalInstanceHandle is opaque but we need to make an exception here.
230
+ internalInstanceHandle &&
231
+ // $FlowExpectedError[incompatible-return]
232
+ internalInstanceHandle . stateNode &&
233
+ // $FlowExpectedError[incompatible-use]
234
+ internalInstanceHandle . stateNode . node
235
+ ) ;
236
+ }
237
+
218
238
export * from 'react-reconciler/src/ReactFiberHostConfigWithNoMutation' ;
219
239
export * from 'react-reconciler/src/ReactFiberHostConfigWithNoHydration' ;
220
240
export * from 'react-reconciler/src/ReactFiberHostConfigWithNoScopes' ;
0 commit comments