mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/51409 Prefers using this as a destructured import instead of as a member expression of `React`. Changelog: [Internal] Reviewed By: SamChou19815 Differential Revision: D74895837 fbshipit-source-id: b9d6082e4882d95f0d2aa1eed13b725edeb854cd
42 lines
887 B
JavaScript
42 lines
887 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const React = require('react');
|
|
const {createElement} = require('react');
|
|
|
|
let nativeTag = 1;
|
|
|
|
export default viewName => {
|
|
const Component = class extends React.Component {
|
|
_nativeTag = nativeTag++;
|
|
|
|
render() {
|
|
return createElement(viewName, this.props, this.props.children);
|
|
}
|
|
|
|
// The methods that exist on host components
|
|
blur = jest.fn();
|
|
focus = jest.fn();
|
|
measure = jest.fn();
|
|
measureInWindow = jest.fn();
|
|
measureLayout = jest.fn();
|
|
setNativeProps = jest.fn();
|
|
};
|
|
|
|
if (viewName === 'RCTView') {
|
|
Component.displayName = 'View';
|
|
} else {
|
|
Component.displayName = viewName;
|
|
}
|
|
|
|
return Component;
|
|
};
|