mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
ff5592cff4
Summary: This diff removes an option from the codegen and replaces it with two new options Removes: - `isDeprecatedPaperComponentNameRCT` Adds: - `paperComponentName`: a better version of the removed option that allows more than just adding RCT - `paperComponentNameDeprecated`: a new option that allows migrating native code to a new name ``` // Use for components with no current paper rename in progress // Does not check for new name paperComponentName?: string, // Use for components currently being renamed in paper // Will use new name if it is available and fallback to this name paperComponentNameDeprecated?: string, ``` For example, Slider uses `paperComponentName: 'RCTSlider'` because it has a different name in fabric but is not currently being migrated to a new name. Because of other work in progress, we don't want to use UIManager check if we don't need to Reviewed By: shergin Differential Revision: D15857629 fbshipit-source-id: ca0d3b7dc4a75e00d136ae1f5c84f7423960399d
59 lines
1.9 KiB
JavaScript
59 lines
1.9 KiB
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.
|
|
*
|
|
* @format
|
|
* @flow
|
|
*/
|
|
// TODO: move this file to shims/ReactNative (requires React update and sync)
|
|
|
|
'use strict';
|
|
|
|
import type {NativeComponent} from '../../Libraries/Renderer/shims/ReactNative';
|
|
import requireNativeComponent from '../../Libraries/ReactNative/requireNativeComponent';
|
|
import {UIManager} from 'react-native';
|
|
|
|
// TODO: import from CodegenSchema once workspaces are enabled
|
|
type Options = $ReadOnly<{|
|
|
interfaceOnly?: boolean,
|
|
paperComponentName?: string,
|
|
paperComponentNameDeprecated?: string,
|
|
|}>;
|
|
|
|
function codegenNativeComponent<Props>(
|
|
componentName: string,
|
|
options?: Options,
|
|
): Class<NativeComponent<Props>> {
|
|
let componentNameInUse =
|
|
options && options.paperComponentName
|
|
? options.paperComponentName
|
|
: componentName;
|
|
|
|
if (options != null && options.paperComponentNameDeprecated != null) {
|
|
if (UIManager.getViewManagerConfig(componentName)) {
|
|
componentNameInUse = componentName;
|
|
} else if (
|
|
options.paperComponentNameDeprecated != null &&
|
|
UIManager.getViewManagerConfig(options.paperComponentNameDeprecated)
|
|
) {
|
|
componentNameInUse = options.paperComponentNameDeprecated;
|
|
} else {
|
|
throw new Error(
|
|
'Failed to find native component for either "::_COMPONENT_NAME_::" or "::_COMPONENT_NAME_DEPRECATED_::"',
|
|
);
|
|
}
|
|
}
|
|
|
|
// If this function is run at runtime then that means the view configs were not
|
|
// generated with the view config babel plugin, so we need to require the native component.
|
|
//
|
|
// This will be useful during migration, but eventually this will error.
|
|
return ((requireNativeComponent(componentNameInUse): any): Class<
|
|
NativeComponent<Props>,
|
|
>);
|
|
}
|
|
|
|
export default codegenNativeComponent;
|