mirror of
https://github.com/status-im/react-native.git
synced 2025-01-14 11:34:23 +00:00
e708010d18
Reviewed By: sahrens Differential Revision: D7902262 fbshipit-source-id: 218f95cde6d77f21d9362a2f2bd47c5f83d5ee15
41 lines
945 B
JavaScript
41 lines
945 B
JavaScript
/**
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
*
|
|
* 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';
|
|
|
|
module.exports = (moduleName, instanceMethods) => {
|
|
const RealComponent = require.requireActual(moduleName);
|
|
const React = require('react');
|
|
|
|
const SuperClass =
|
|
typeof RealComponent === 'function' ? RealComponent : React.Component;
|
|
|
|
const Component = class extends SuperClass {
|
|
render() {
|
|
const name = RealComponent.displayName || RealComponent.name;
|
|
|
|
return React.createElement(
|
|
name.replace(/^(RCT|RK)/, ''),
|
|
this.props,
|
|
this.props.children,
|
|
);
|
|
}
|
|
};
|
|
|
|
if (RealComponent.propTypes != null) {
|
|
Component.propTypes = RealComponent.propTypes;
|
|
}
|
|
|
|
if (instanceMethods != null) {
|
|
Object.assign(Component.prototype, instanceMethods);
|
|
}
|
|
|
|
return Component;
|
|
};
|