@office-iss/react-native-win32 0.0.0-canary.259 → 0.0.0-canary.261

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (125) hide show
  1. package/.flowconfig +4 -3
  2. package/CHANGELOG.json +31 -1
  3. package/CHANGELOG.md +20 -4
  4. package/Libraries/Animated/AnimatedImplementation.js +7 -7
  5. package/Libraries/Animated/animations/Animation.js +10 -0
  6. package/Libraries/Animated/animations/TimingAnimation.js +1 -0
  7. package/Libraries/Animated/components/AnimatedScrollView.js +2 -2
  8. package/Libraries/Animated/createAnimatedComponent.js +1 -1
  9. package/Libraries/Animated/useAnimatedProps.js +71 -4
  10. package/Libraries/Blob/FileReader.js +1 -1
  11. package/Libraries/Blob/URL.js +2 -62
  12. package/Libraries/Blob/URLSearchParams.js +71 -0
  13. package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.android.js +1 -1
  14. package/Libraries/Components/RefreshControl/__mocks__/RefreshControlMock.js +1 -1
  15. package/Libraries/Components/ScrollView/AndroidHorizontalScrollViewNativeComponent.js +3 -0
  16. package/Libraries/Components/ScrollView/ScrollView.js +5 -5
  17. package/Libraries/Components/ScrollView/ScrollViewNativeComponent.js +3 -3
  18. package/Libraries/Components/ScrollView/ScrollViewStickyHeader.js +1 -1
  19. package/Libraries/Components/StatusBar/StatusBar.js +3 -1
  20. package/Libraries/Components/TextInput/AndroidTextInputNativeComponent.js +3 -0
  21. package/Libraries/Components/TextInput/TextInput.d.ts +32 -2
  22. package/Libraries/Components/TextInput/TextInput.js +19 -10
  23. package/Libraries/Components/TextInput/TextInput.win32.js +19 -10
  24. package/Libraries/Components/View/ReactNativeStyleAttributes.js +11 -0
  25. package/Libraries/Components/View/ReactNativeViewAttributes.js +2 -0
  26. package/Libraries/Components/View/ReactNativeViewAttributes.win32.js +2 -0
  27. package/Libraries/Components/View/ViewAccessibility.d.ts +15 -0
  28. package/Libraries/Components/View/ViewNativeComponent.js +6 -0
  29. package/Libraries/Components/View/ViewPropTypes.js +14 -0
  30. package/Libraries/Components/View/ViewPropTypes.win32.js +14 -0
  31. package/Libraries/Core/InitializeCore.js +1 -1
  32. package/Libraries/Core/ReactNativeVersion.js +1 -1
  33. package/Libraries/Core/setUpErrorHandling.js +7 -1
  34. package/Libraries/Image/AssetSourceResolver.js +28 -1
  35. package/Libraries/Image/Image.android.js +9 -14
  36. package/Libraries/Image/Image.ios.js +11 -22
  37. package/Libraries/Image/Image.win32.js +10 -21
  38. package/Libraries/Image/ImageBackground.js +1 -8
  39. package/Libraries/Image/ImageUtils.js +9 -9
  40. package/Libraries/Image/ImageViewNativeComponent.js +3 -0
  41. package/Libraries/Inspector/NetworkOverlay.js +1 -1
  42. package/Libraries/Lists/FlatList.js +1 -1
  43. package/Libraries/Lists/SectionList.js +1 -1
  44. package/Libraries/Lists/SectionListModern.js +3 -3
  45. package/Libraries/LogBox/Data/LogBoxData.js +30 -4
  46. package/Libraries/NativeComponent/BaseViewConfig.android.js +1 -0
  47. package/Libraries/NativeComponent/BaseViewConfig.ios.js +4 -0
  48. package/Libraries/NativeComponent/BaseViewConfig.win32.js +4 -0
  49. package/Libraries/NativeComponent/NativeComponentRegistry.js +13 -20
  50. package/Libraries/NativeComponent/StaticViewConfigValidator.js +0 -21
  51. package/Libraries/Network/XMLHttpRequest.js +4 -2
  52. package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricHostComponent.js +1 -1
  53. package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance.js +5 -5
  54. package/Libraries/ReactNative/RendererImplementation.js +26 -4
  55. package/Libraries/ReactNative/getNativeComponentAttributes.js +8 -0
  56. package/Libraries/Renderer/shims/ReactNativeTypes.js +9 -4
  57. package/Libraries/StyleSheet/StyleSheet.js +1 -1
  58. package/Libraries/StyleSheet/StyleSheet.win32.js +1 -1
  59. package/Libraries/StyleSheet/StyleSheetTypes.d.ts +11 -0
  60. package/Libraries/StyleSheet/StyleSheetTypes.js +14 -2
  61. package/Libraries/StyleSheet/processBackgroundImage.js +384 -0
  62. package/Libraries/StyleSheet/processFilter.js +4 -4
  63. package/Libraries/Text/Text.js +7 -6
  64. package/Libraries/Text/Text.win32.js +7 -6
  65. package/Libraries/Text/TextNativeComponent.js +7 -0
  66. package/Libraries/Text/TextNativeComponent.win32.js +7 -0
  67. package/Libraries/Utilities/Appearance.js +65 -73
  68. package/Libraries/Utilities/DevLoadingView.js +2 -4
  69. package/Libraries/Utilities/ReactNativeTestTools.js +1 -1
  70. package/Libraries/Utilities/stringifyViewConfig.js +22 -0
  71. package/Libraries/Utilities/useColorScheme.js +3 -3
  72. package/Libraries/WebSocket/WebSocket.js +1 -1
  73. package/flow/jest.js +2 -2
  74. package/index.js +2 -1
  75. package/index.win32.js +2 -1
  76. package/jest/mockModal.js +1 -3
  77. package/jest/mockScrollView.js +1 -1
  78. package/jest/renderer.js +2 -2
  79. package/jest/setup.js +8 -12
  80. package/overrides.json +12 -12
  81. package/package.json +14 -14
  82. package/src/private/{core/components → components}/HScrollViewNativeComponents.js +8 -8
  83. package/src/private/{core/components → components}/VScrollViewNativeComponents.js +7 -7
  84. package/src/private/{core/components → components}/useSyncOnScroll.js +2 -2
  85. package/src/private/featureflags/ReactNativeFeatureFlags.js +93 -10
  86. package/src/private/featureflags/specs/NativeReactNativeFeatureFlags.js +16 -3
  87. package/src/private/hooks/DebouncedEffectImplementation.js +148 -0
  88. package/src/private/hooks/useDebouncedEffect.js +23 -0
  89. package/{Libraries/Core → src/private/renderer/errorhandling}/ErrorHandlers.js +5 -4
  90. package/src/private/setup/setUpDOM.js +28 -0
  91. package/src/private/setup/setUpIntersectionObserver.js +27 -0
  92. package/src/private/setup/setUpMutationObserver.js +26 -0
  93. package/src/private/setup/setUpPerformanceObserver.js +64 -0
  94. package/src/private/specs/modules/NativeAppearance.js +3 -3
  95. package/src/private/specs/modules/NativeDebuggerSessionObserver.js +23 -0
  96. package/src/private/webapis/dom/nodes/ReadOnlyNode.js +6 -4
  97. package/{Libraries/IntersectionObserver → src/private/webapis/intersectionobserver}/IntersectionObserver.js +5 -3
  98. package/{Libraries/IntersectionObserver → src/private/webapis/intersectionobserver}/IntersectionObserverEntry.js +3 -3
  99. package/{Libraries/IntersectionObserver → src/private/webapis/intersectionobserver}/IntersectionObserverManager.js +14 -17
  100. package/src/private/{specs/modules → webapis/intersectionobserver/specs}/NativeIntersectionObserver.js +2 -2
  101. package/{Libraries/IntersectionObserver → src/private/webapis/intersectionobserver/specs}/__mocks__/NativeIntersectionObserver.js +4 -4
  102. package/{Libraries/MutationObserver → src/private/webapis/mutationobserver}/MutationObserver.js +5 -3
  103. package/{Libraries/MutationObserver → src/private/webapis/mutationobserver}/MutationObserverManager.js +24 -15
  104. package/{Libraries/MutationObserver → src/private/webapis/mutationobserver}/MutationRecord.js +4 -6
  105. package/src/private/{specs/modules → webapis/mutationobserver/specs}/NativeMutationObserver.js +2 -2
  106. package/{Libraries/MutationObserver → src/private/webapis/mutationobserver/specs}/__mocks__/NativeMutationObserver.js +5 -5
  107. package/src/private/webapis/performance/{EventCounts.js → EventTiming.js} +65 -3
  108. package/src/private/webapis/performance/LongTasks.js +39 -0
  109. package/src/private/webapis/performance/Performance.js +22 -9
  110. package/src/private/webapis/performance/PerformanceEntry.js +35 -17
  111. package/src/private/webapis/performance/PerformanceObserver.js +29 -43
  112. package/src/private/webapis/performance/RawPerformanceEntry.js +19 -1
  113. package/src/private/webapis/performance/UserTiming.js +17 -12
  114. package/src/private/webapis/performance/specs/NativePerformanceObserver.js +1 -1
  115. package/src-win/Libraries/Components/View/ViewAccessibility.d.ts +15 -0
  116. package/types/experimental.d.ts +10 -2
  117. package/Libraries/Core/setUpIntersectionObserver.js +0 -16
  118. package/Libraries/Core/setUpMutationObserver.js +0 -16
  119. package/Libraries/Core/setUpPerformanceObserver.js +0 -18
  120. package/Libraries/IntersectionObserver/NativeIntersectionObserver.js +0 -13
  121. package/Libraries/MutationObserver/NativeMutationObserver.js +0 -13
  122. package/Libraries/Utilities/verifyComponentAttributeEquivalence.js +0 -135
  123. package/src/private/core/setUpDOM.js +0 -18
  124. package/src/private/webapis/performance/PerformanceEventTiming.js +0 -55
  125. /package/src/private/{core → styles}/composeStyles.js +0 -0
@@ -8,11 +8,14 @@
8
8
  * @flow strict
9
9
  */
10
10
 
11
- import type {HighResTimeStamp, PerformanceEntryType} from './PerformanceEntry';
11
+ import type {
12
+ DOMHighResTimeStamp,
13
+ PerformanceEntryType,
14
+ } from './PerformanceEntry';
12
15
 
13
16
  import warnOnce from '../../../../Libraries/Utilities/warnOnce';
17
+ import {PerformanceEventTiming} from './EventTiming';
14
18
  import {PerformanceEntry} from './PerformanceEntry';
15
- import PerformanceEventTiming from './PerformanceEventTiming';
16
19
  import {
17
20
  performanceEntryTypeToRaw,
18
21
  rawToPerformanceEntry,
@@ -66,13 +69,13 @@ export type PerformanceObserverInit =
66
69
  }
67
70
  | {
68
71
  type: PerformanceEntryType,
69
- durationThreshold?: HighResTimeStamp,
72
+ durationThreshold?: DOMHighResTimeStamp,
70
73
  };
71
74
 
72
75
  type PerformanceObserverConfig = {|
73
76
  callback: PerformanceObserverCallback,
74
- // Map of {entryType: durationThreshold}
75
- entryTypes: $ReadOnlyMap<PerformanceEntryType, ?number>,
77
+ entryTypes: $ReadOnlySet<PerformanceEntryType>,
78
+ durationThreshold: ?number,
76
79
  |};
77
80
 
78
81
  const observerCountPerEntryType: Map<PerformanceEntryType, number> = new Map();
@@ -97,8 +100,15 @@ const onPerformanceEntry = () => {
97
100
  if (!observerConfig.entryTypes.has(entry.entryType)) {
98
101
  return false;
99
102
  }
100
- const durationThreshold = observerConfig.entryTypes.get(entry.entryType);
101
- return entry.duration >= (durationThreshold ?? 0);
103
+
104
+ if (
105
+ entry.entryType === 'event' &&
106
+ observerConfig.durationThreshold != null
107
+ ) {
108
+ return entry.duration >= observerConfig.durationThreshold;
109
+ }
110
+
111
+ return true;
102
112
  });
103
113
  if (entriesForObserver.length !== 0) {
104
114
  try {
@@ -122,21 +132,11 @@ export function warnNoNativePerformanceObserver() {
122
132
  }
123
133
 
124
134
  function applyDurationThresholds() {
125
- const durationThresholds: Map<PerformanceEntryType, ?number> = Array.from(
126
- registeredObservers.values(),
127
- )
128
- .map(config => config.entryTypes)
129
- .reduce(
130
- (accumulator, currentValue) => union(accumulator, currentValue),
131
- new Map(),
132
- );
133
-
134
- for (const [entryType, durationThreshold] of durationThresholds) {
135
- NativePerformanceObserver?.setDurationThreshold(
136
- performanceEntryTypeToRaw(entryType),
137
- durationThreshold ?? 0,
138
- );
139
- }
135
+ const durationThresholds = Array.from(registeredObservers.values())
136
+ .map(observerConfig => observerConfig.durationThreshold)
137
+ .filter(Boolean);
138
+
139
+ return Math.min(...durationThresholds);
140
140
  }
141
141
 
142
142
  function getSupportedPerformanceEntryTypes(): $ReadOnlyArray<PerformanceEntryType> {
@@ -174,7 +174,7 @@ function getSupportedPerformanceEntryTypes(): $ReadOnlyArray<PerformanceEntryTyp
174
174
  * });
175
175
  * observer.observe({ type: "event" });
176
176
  */
177
- export default class PerformanceObserver {
177
+ export class PerformanceObserver {
178
178
  #callback: PerformanceObserverCallback;
179
179
  #type: 'single' | 'multiple' | void;
180
180
 
@@ -194,14 +194,10 @@ export default class PerformanceObserver {
194
194
 
195
195
  if (options.entryTypes) {
196
196
  this.#type = 'multiple';
197
- requestedEntryTypes = new Map(
198
- options.entryTypes.map(t => [t, undefined]),
199
- );
197
+ requestedEntryTypes = new Set(options.entryTypes);
200
198
  } else {
201
199
  this.#type = 'single';
202
- requestedEntryTypes = new Map([
203
- [options.type, options.durationThreshold],
204
- ]);
200
+ requestedEntryTypes = new Set([options.type]);
205
201
  }
206
202
 
207
203
  // The same observer may receive multiple calls to "observe", so we need
@@ -218,6 +214,8 @@ export default class PerformanceObserver {
218
214
 
219
215
  registeredObservers.set(this, {
220
216
  callback: this.#callback,
217
+ durationThreshold:
218
+ options.type === 'event' ? options.durationThreshold : undefined,
221
219
  entryTypes: nextEntryTypes,
222
220
  });
223
221
 
@@ -322,20 +320,8 @@ export default class PerformanceObserver {
322
320
  getSupportedPerformanceEntryTypes();
323
321
  }
324
322
 
325
- // As a Set union, except if value exists in both, we take minimum
326
- function union<T>(
327
- a: $ReadOnlyMap<T, ?number>,
328
- b: $ReadOnlyMap<T, ?number>,
329
- ): Map<T, ?number> {
330
- const res = new Map<T, ?number>();
331
- for (const [k, v] of a) {
332
- if (!b.has(k)) {
333
- res.set(k, v);
334
- } else {
335
- res.set(k, Math.min(v ?? 0, b.get(k) ?? 0));
336
- }
337
- }
338
- return res;
323
+ function union<T>(a: $ReadOnlySet<T>, b: $ReadOnlySet<T>): Set<T> {
324
+ return new Set([...a, ...b]);
339
325
  }
340
326
 
341
327
  function difference<T>(a: $ReadOnlySet<T>, b: $ReadOnlySet<T>): Set<T> {
@@ -14,8 +14,10 @@ import type {
14
14
  RawPerformanceEntryType,
15
15
  } from './specs/NativePerformanceObserver';
16
16
 
17
+ import {PerformanceEventTiming} from './EventTiming';
18
+ import {PerformanceLongTaskTiming} from './LongTasks';
17
19
  import {PerformanceEntry} from './PerformanceEntry';
18
- import PerformanceEventTiming from './PerformanceEventTiming';
20
+ import {PerformanceMark, PerformanceMeasure} from './UserTiming';
19
21
 
20
22
  export const RawPerformanceEntryTypeValues = {
21
23
  MARK: 1,
@@ -36,6 +38,22 @@ export function rawToPerformanceEntry(
36
38
  processingEnd: entry.processingEnd,
37
39
  interactionId: entry.interactionId,
38
40
  });
41
+ } else if (entry.entryType === RawPerformanceEntryTypeValues.LONGTASK) {
42
+ return new PerformanceLongTaskTiming({
43
+ name: entry.name,
44
+ entryType: rawToPerformanceEntryType(entry.entryType),
45
+ startTime: entry.startTime,
46
+ duration: entry.duration,
47
+ });
48
+ } else if (entry.entryType === RawPerformanceEntryTypeValues.MARK) {
49
+ return new PerformanceMark(entry.name, {
50
+ startTime: entry.startTime,
51
+ });
52
+ } else if (entry.entryType === RawPerformanceEntryTypeValues.MEASURE) {
53
+ return new PerformanceMeasure(entry.name, {
54
+ startTime: entry.startTime,
55
+ duration: entry.duration,
56
+ });
39
57
  } else {
40
58
  return new PerformanceEntry({
41
59
  name: entry.name,
@@ -8,24 +8,25 @@
8
8
  * @flow strict
9
9
  */
10
10
 
11
- import type {HighResTimeStamp} from './PerformanceEntry';
11
+ // flowlint unsafe-getters-setters:off
12
+
13
+ import type {DOMHighResTimeStamp} from './PerformanceEntry';
12
14
 
13
15
  import {PerformanceEntry} from './PerformanceEntry';
14
16
 
15
- type DetailType = mixed;
17
+ export type DetailType = mixed;
16
18
 
17
19
  export type PerformanceMarkOptions = {
18
20
  detail?: DetailType,
19
- startTime?: HighResTimeStamp,
21
+ startTime?: DOMHighResTimeStamp,
20
22
  };
21
23
 
22
- export type TimeStampOrName = HighResTimeStamp | string;
24
+ export type TimeStampOrName = DOMHighResTimeStamp | string;
23
25
 
24
- export type PerformanceMeasureOptions = {
26
+ export type PerformanceMeasureInit = {
25
27
  detail?: DetailType,
26
- start?: TimeStampOrName,
27
- end?: TimeStampOrName,
28
- duration?: HighResTimeStamp,
28
+ startTime?: DOMHighResTimeStamp,
29
+ duration?: DOMHighResTimeStamp,
29
30
  };
30
31
 
31
32
  export class PerformanceMark extends PerformanceEntry {
@@ -46,18 +47,22 @@ export class PerformanceMark extends PerformanceEntry {
46
47
  }
47
48
 
48
49
  export class PerformanceMeasure extends PerformanceEntry {
49
- detail: DetailType;
50
+ #detail: DetailType;
50
51
 
51
- constructor(measureName: string, measureOptions?: PerformanceMeasureOptions) {
52
+ constructor(measureName: string, measureOptions?: PerformanceMeasureInit) {
52
53
  super({
53
54
  name: measureName,
54
55
  entryType: 'measure',
55
- startTime: 0,
56
+ startTime: measureOptions?.startTime ?? 0,
56
57
  duration: measureOptions?.duration ?? 0,
57
58
  });
58
59
 
59
60
  if (measureOptions) {
60
- this.detail = measureOptions.detail;
61
+ this.#detail = measureOptions.detail;
61
62
  }
62
63
  }
64
+
65
+ get detail(): DetailType {
66
+ return this.#detail;
67
+ }
63
68
  }
@@ -46,7 +46,7 @@ export interface Spec extends TurboModule {
46
46
  durationThreshold: number,
47
47
  ) => void;
48
48
  +clearEntries: (
49
- entryType: RawPerformanceEntryType,
49
+ entryType?: RawPerformanceEntryType,
50
50
  entryName?: string,
51
51
  ) => void;
52
52
  +getEntries: (
@@ -366,6 +366,21 @@ export interface AccessibilityPropsIOS {
366
366
  * @platform ios
367
367
  */
368
368
  accessibilityLanguage?: string | undefined;
369
+
370
+ /**
371
+ * A Boolean value that indicates whether or not to show the item in the large content viewer.
372
+ * Available on iOS 13.0+
373
+ * https://reactnative.dev/docs/accessibility#accessibilityshowslargecontentviewer
374
+ * @platform ios
375
+ */
376
+ accessibilityShowsLargeContentViewer?: boolean | undefined;
377
+
378
+ /**
379
+ * When `accessibilityShowsLargeContentViewer` is set, this string will be used as title for the large content viewer.
380
+ * https://reactnative.dev/docs/accessibility#accessibilitylargecontenttitle
381
+ * @platform ios
382
+ */
383
+ accessibilityLargeContentTitle?: string | undefined;
369
384
  }
370
385
 
371
386
  // [Win32]
@@ -33,6 +33,7 @@
33
33
  */
34
34
 
35
35
  import {
36
+ GradientValue,
36
37
  BlendMode,
37
38
  BoxShadowPrimitive,
38
39
  DimensionValue,
@@ -149,8 +150,15 @@ declare module '.' {
149
150
  }
150
151
 
151
152
  export interface ViewStyle {
152
- experimental_boxShadow?: BoxShadowPrimitive | undefined;
153
- experimental_filter?: ReadonlyArray<FilterFunction> | undefined;
153
+ experimental_boxShadow?:
154
+ | ReadonlyArray<BoxShadowPrimitive>
155
+ | string
156
+ | undefined;
157
+ experimental_filter?: ReadonlyArray<FilterFunction> | string | undefined;
154
158
  experimental_mixBlendMode?: BlendMode | undefined;
159
+ experimental_backgroundImage?:
160
+ | ReadonlyArray<GradientValue>
161
+ | string
162
+ | undefined;
155
163
  }
156
164
  }
@@ -1,16 +0,0 @@
1
- /**
2
- * Copyright (c) Meta Platforms, Inc. and affiliates.
3
- *
4
- * This source code is licensed under the MIT license found in the
5
- * LICENSE file in the root directory of this source tree.
6
- *
7
- * @flow strict-local
8
- * @format
9
- */
10
-
11
- import {polyfillGlobal} from '../Utilities/PolyfillFunctions';
12
-
13
- polyfillGlobal(
14
- 'IntersectionObserver',
15
- () => require('../IntersectionObserver/IntersectionObserver').default,
16
- );
@@ -1,16 +0,0 @@
1
- /**
2
- * Copyright (c) Meta Platforms, Inc. and affiliates.
3
- *
4
- * This source code is licensed under the MIT license found in the
5
- * LICENSE file in the root directory of this source tree.
6
- *
7
- * @flow strict-local
8
- * @format
9
- */
10
-
11
- import {polyfillGlobal} from '../Utilities/PolyfillFunctions';
12
-
13
- polyfillGlobal(
14
- 'MutationObserver',
15
- () => require('../MutationObserver/MutationObserver').default,
16
- );
@@ -1,18 +0,0 @@
1
- /**
2
- * Copyright (c) Meta Platforms, Inc. and affiliates.
3
- *
4
- * This source code is licensed under the MIT license found in the
5
- * LICENSE file in the root directory of this source tree.
6
- *
7
- * @flow strict-local
8
- * @format
9
- */
10
-
11
- import {polyfillGlobal} from '../Utilities/PolyfillFunctions';
12
-
13
- polyfillGlobal(
14
- 'PerformanceObserver',
15
- () =>
16
- require('../../src/private/webapis/performance/PerformanceObserver')
17
- .default,
18
- );
@@ -1,13 +0,0 @@
1
- /**
2
- * Copyright (c) Meta Platforms, Inc. and affiliates.
3
- *
4
- * This source code is licensed under the MIT license found in the
5
- * LICENSE file in the root directory of this source tree.
6
- *
7
- * @flow strict
8
- * @format
9
- */
10
-
11
- export * from '../../src/private/specs/modules/NativeIntersectionObserver';
12
- import NativeIntersectionObserver from '../../src/private/specs/modules/NativeIntersectionObserver';
13
- export default NativeIntersectionObserver;
@@ -1,13 +0,0 @@
1
- /**
2
- * Copyright (c) Meta Platforms, Inc. and affiliates.
3
- *
4
- * This source code is licensed under the MIT license found in the
5
- * LICENSE file in the root directory of this source tree.
6
- *
7
- * @flow strict-local
8
- * @format
9
- */
10
-
11
- export * from '../../src/private/specs/modules/NativeMutationObserver';
12
- import NativeMutationObserver from '../../src/private/specs/modules/NativeMutationObserver';
13
- export default NativeMutationObserver;
@@ -1,135 +0,0 @@
1
- /**
2
- * Copyright (c) Meta Platforms, Inc. and affiliates.
3
- *
4
- * This source code is licensed under the MIT license found in the
5
- * LICENSE file in the root directory of this source tree.
6
- *
7
- * @format
8
- * @flow
9
- */
10
-
11
- import PlatformBaseViewConfig from '../NativeComponent/PlatformBaseViewConfig';
12
- import {type ViewConfig} from '../Renderer/shims/ReactNativeTypes';
13
-
14
- const IGNORED_KEYS = ['transform', 'hitSlop'];
15
-
16
- /**
17
- * The purpose of this function is to validate that the view config that
18
- * native exposes for a given view manager is the same as the view config
19
- * that is specified for that view manager in JS.
20
- *
21
- * In order to improve perf, we want to avoid calling into native to get
22
- * the view config when each view manager is used. To do this, we are moving
23
- * the configs to JS. In the future we will use these JS based view configs
24
- * to codegen the view manager on native to ensure they stay in sync without
25
- * this runtime check.
26
- *
27
- * If this function fails, that likely means a change was made to the native
28
- * view manager without updating the JS config as well. Ideally you can make
29
- * that direct change to the JS config. If you don't know what the differences
30
- * are, the best approach I've found is to create a view that prints
31
- * the return value of getNativeComponentAttributes, and then copying that
32
- * text and pasting it back into JS:
33
- * <Text selectable={true}>{JSON.stringify(getNativeComponentAttributes('RCTView'))}</Text>
34
- *
35
- * This is meant to be a stopgap until the time comes when we only have a
36
- * single source of truth. I wonder if this message will still be here two
37
- * years from now...
38
- */
39
- export default function verifyComponentAttributeEquivalence(
40
- nativeViewConfig: ViewConfig,
41
- staticViewConfig: ViewConfig,
42
- ) {
43
- for (const prop of [
44
- 'validAttributes',
45
- 'bubblingEventTypes',
46
- 'directEventTypes',
47
- ]) {
48
- const diff = Object.keys(
49
- lefthandObjectDiff(nativeViewConfig[prop], staticViewConfig[prop]),
50
- );
51
-
52
- if (diff.length > 0) {
53
- const name =
54
- staticViewConfig.uiViewClassName ?? nativeViewConfig.uiViewClassName;
55
- console.error(
56
- `'${name}' has a view config that does not match native. ` +
57
- `'${prop}' is missing: ${diff.join(', ')}`,
58
- );
59
- }
60
- }
61
- }
62
-
63
- // Return the different key-value pairs of the right object, by iterating through the keys in the left object
64
- // Note it won't return a difference where a key is missing in the left but exists the right.
65
- function lefthandObjectDiff(leftObj: Object, rightObj: Object): Object {
66
- const differentKeys: {[string]: any | {...}} = {};
67
-
68
- function compare(leftItem: any, rightItem: any, key: string) {
69
- if (typeof leftItem !== typeof rightItem && leftItem != null) {
70
- differentKeys[key] = rightItem;
71
- return;
72
- }
73
-
74
- if (typeof leftItem === 'object') {
75
- const objDiff = lefthandObjectDiff(leftItem, rightItem);
76
- if (Object.keys(objDiff).length > 1) {
77
- differentKeys[key] = objDiff;
78
- }
79
- return;
80
- }
81
-
82
- if (leftItem !== rightItem) {
83
- differentKeys[key] = rightItem;
84
- return;
85
- }
86
- }
87
-
88
- for (const key in leftObj) {
89
- if (IGNORED_KEYS.includes(key)) {
90
- continue;
91
- }
92
-
93
- if (!rightObj) {
94
- differentKeys[key] = {};
95
- } else if (leftObj.hasOwnProperty(key)) {
96
- compare(leftObj[key], rightObj[key], key);
97
- }
98
- }
99
-
100
- return differentKeys;
101
- }
102
-
103
- export function getConfigWithoutViewProps(
104
- viewConfig: ViewConfig,
105
- propName: string,
106
- ): {...} {
107
- // $FlowFixMe[invalid-computed-prop]
108
- if (!viewConfig[propName]) {
109
- return {};
110
- }
111
-
112
- return (
113
- Object.keys(viewConfig[propName])
114
- // $FlowFixMe[invalid-computed-prop]
115
- .filter(prop => !PlatformBaseViewConfig[propName][prop])
116
- .reduce<{[string]: any}>((obj, prop) => {
117
- // $FlowFixMe[invalid-computed-prop]
118
- obj[prop] = viewConfig[propName][prop];
119
- return obj;
120
- }, {})
121
- );
122
- }
123
-
124
- export function stringifyViewConfig(viewConfig: any): string {
125
- return JSON.stringify(
126
- viewConfig,
127
- (key, val) => {
128
- if (typeof val === 'function') {
129
- return `ƒ ${val.name}`;
130
- }
131
- return val;
132
- },
133
- 2,
134
- );
135
- }
@@ -1,18 +0,0 @@
1
- /**
2
- * Copyright (c) Meta Platforms, Inc. and affiliates.
3
- *
4
- * This source code is licensed under the MIT license found in the
5
- * LICENSE file in the root directory of this source tree.
6
- *
7
- * @flow strict
8
- * @format
9
- */
10
-
11
- import DOMRect from '../webapis/dom/geometry/DOMRect';
12
- import DOMRectReadOnly from '../webapis/dom/geometry/DOMRectReadOnly';
13
-
14
- // $FlowExpectedError[cannot-write] The global isn't writable anywhere but here, where we define it
15
- global.DOMRect = DOMRect;
16
-
17
- // $FlowExpectedError[cannot-write] The global isn't writable anywhere but here, where we define it
18
- global.DOMRectReadOnly = DOMRectReadOnly;
@@ -1,55 +0,0 @@
1
- /**
2
- * Copyright (c) Meta Platforms, Inc. and affiliates.
3
- *
4
- * This source code is licensed under the MIT license found in the
5
- * LICENSE file in the root directory of this source tree.
6
- *
7
- * @format
8
- * @flow strict
9
- */
10
-
11
- import type {HighResTimeStamp, PerformanceEntryJSON} from './PerformanceEntry';
12
-
13
- import {PerformanceEntry} from './PerformanceEntry';
14
-
15
- export type PerformanceEventTimingJSON = {
16
- ...PerformanceEntryJSON,
17
- processingStart: HighResTimeStamp,
18
- processingEnd: HighResTimeStamp,
19
- interactionId: number,
20
- ...
21
- };
22
-
23
- export default class PerformanceEventTiming extends PerformanceEntry {
24
- processingStart: HighResTimeStamp;
25
- processingEnd: HighResTimeStamp;
26
- interactionId: number;
27
-
28
- constructor(init: {
29
- name: string,
30
- startTime?: HighResTimeStamp,
31
- duration?: HighResTimeStamp,
32
- processingStart?: HighResTimeStamp,
33
- processingEnd?: HighResTimeStamp,
34
- interactionId?: number,
35
- }) {
36
- super({
37
- name: init.name,
38
- entryType: 'event',
39
- startTime: init.startTime ?? 0,
40
- duration: init.duration ?? 0,
41
- });
42
- this.processingStart = init.processingStart ?? 0;
43
- this.processingEnd = init.processingEnd ?? 0;
44
- this.interactionId = init.interactionId ?? 0;
45
- }
46
-
47
- toJSON(): PerformanceEventTimingJSON {
48
- return {
49
- ...super.toJSON(),
50
- processingStart: this.processingStart,
51
- processingEnd: this.processingEnd,
52
- interactionId: this.interactionId,
53
- };
54
- }
55
- }
File without changes