mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
037e346197
Summary: This diff runs the codemod to add type annotations to function parameters in preparation for Flow's local type inference (LTI) project. I ran the codemod over xplat/js and reverted any files that had flow errors in them. See the list of commands run to see the regeneration of various files. Changelog: [Internal][Changed] - Added type annotations Reviewed By: yungsters Differential Revision: D32075270 fbshipit-source-id: 6a9cd85aab120b4d9e690bac142a415525dbf298
35 lines
889 B
JavaScript
35 lines
889 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow strict
|
|
* @format
|
|
*/
|
|
|
|
import type {AbstractComponent, Node} from 'react';
|
|
|
|
type NoopComponent = AbstractComponent<{children: Node}>;
|
|
|
|
const cache: Map<
|
|
string, // displayName
|
|
NoopComponent, // ComponentWithDisplayName
|
|
> = new Map();
|
|
|
|
export default function getCachedComponentWithDisplayName(
|
|
displayName: string,
|
|
): NoopComponent {
|
|
let ComponentWithDisplayName = cache.get(displayName);
|
|
|
|
if (!ComponentWithDisplayName) {
|
|
ComponentWithDisplayName = ({
|
|
children,
|
|
}: $TEMPORARY$object<{children: Node}>) => children;
|
|
ComponentWithDisplayName.displayName = displayName;
|
|
cache.set(displayName, ComponentWithDisplayName);
|
|
}
|
|
|
|
return ComponentWithDisplayName;
|
|
}
|