File tree 4 files changed +26
-5
lines changed
packages/react-native-renderer/src
4 files changed +26
-5
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import type {
13
13
MeasureInWindowOnSuccessCallback ,
14
14
MeasureLayoutOnSuccessCallback ,
15
15
MeasureOnSuccessCallback ,
16
- NativeMethods ,
16
+ INativeMethods ,
17
17
ViewConfig ,
18
18
TouchedViewDataAtPoint ,
19
19
} from './ReactNativeTypes' ;
@@ -109,7 +109,7 @@ const noop = () => {};
109
109
/**
110
110
* This is used for refs on host components.
111
111
*/
112
- class ReactFabricHostComponent implements NativeMethods {
112
+ class ReactFabricHostComponent implements INativeMethods {
113
113
_nativeTag : number ;
114
114
viewConfig : ViewConfig ;
115
115
currentProps : Props ;
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import type {
13
13
MeasureInWindowOnSuccessCallback ,
14
14
MeasureLayoutOnSuccessCallback ,
15
15
MeasureOnSuccessCallback ,
16
- NativeMethods ,
16
+ INativeMethods ,
17
17
ViewConfig ,
18
18
} from './ReactNativeTypes' ;
19
19
import type { Instance } from './ReactNativeHostConfig' ;
@@ -30,7 +30,7 @@ import {
30
30
warnForStyleProps ,
31
31
} from './NativeMethodsMixinUtils' ;
32
32
33
- class ReactNativeFiberHostComponent implements NativeMethods {
33
+ class ReactNativeFiberHostComponent implements INativeMethods {
34
34
_children : Array < Instance | number > ;
35
35
_nativeTag : number ;
36
36
_internalFiberInstanceHandleDEV : Object ;
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ export function findHostInstance_DEPRECATED<TElementType: ElementType>(
68
68
hostInstance = findHostInstance ( componentOrHandle ) ;
69
69
}
70
70
71
+ // $FlowFixMe[incompatible-exact] we need to fix the definition of `HostComponent` to use NativeMethods as an interface, not as a type.
71
72
return hostInstance ;
72
73
}
73
74
Original file line number Diff line number Diff line change @@ -95,7 +95,10 @@ export type PartialViewConfig = $ReadOnly<{
95
95
validAttributes ?: PartialAttributeConfiguration ,
96
96
} > ;
97
97
98
- export interface NativeMethods {
98
+ /**
99
+ * Current usages should migrate to this definition
100
+ */
101
+ export interface INativeMethods {
99
102
blur ( ) : void ;
100
103
focus ( ) : void ;
101
104
measure ( callback : MeasureOnSuccessCallback ) : void ;
@@ -108,6 +111,23 @@ export interface NativeMethods {
108
111
setNativeProps ( nativeProps : { ...} ) : void ;
109
112
}
110
113
114
+ export type NativeMethods = $ReadOnly < { |
115
+ blur ( ) : void ,
116
+ focus ( ) : void ,
117
+ measure ( callback : MeasureOnSuccessCallback ) : void ,
118
+ measureInWindow ( callback : MeasureInWindowOnSuccessCallback ) : void ,
119
+ measureLayout (
120
+ relativeToNativeNode : number | ElementRef < HostComponent < mixed >> ,
121
+ onSuccess : MeasureLayoutOnSuccessCallback ,
122
+ onFail ?: ( ) => void ,
123
+ ) : void ,
124
+ setNativeProps ( nativeProps : { ...} ) : void ,
125
+ | } > ;
126
+
127
+ // This validates that INativeMethods and NativeMethods stay in sync using Flow!
128
+ declare var ensureNativeMethodsAreSynced : NativeMethods ;
129
+ ( ensureNativeMethodsAreSynced : INativeMethods ) ;
130
+
111
131
export type HostComponent < T > = AbstractComponent < T , $ReadOnly < NativeMethods >> ;
112
132
113
133
type SecretInternalsType = {
You can’t perform that action at this time.
0 commit comments