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/31772 Changelog:[General][Removed] - Remove Picker iOS code Reviewed By: p-sun Differential Revision: D29124724 fbshipit-source-id: d3b3a409961cf04e2cd079a91986d30e3166dcda
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
/**
|
|
* 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.
|
|
*
|
|
* @generated by an internal plugin build system
|
|
*/
|
|
|
|
#ifndef RN_DISABLE_OSS_PLUGIN_HEADER
|
|
|
|
// OSS-compatibility layer
|
|
|
|
#import "RCTFabricComponentsPlugins.h"
|
|
|
|
#import <string>
|
|
#import <unordered_map>
|
|
|
|
Class<RCTComponentViewProtocol> RCTFabricComponentsProvider(const char *name) {
|
|
static std::unordered_map<std::string, Class (*)(void)> sFabricComponentsClassMap = {
|
|
{"SafeAreaView", RCTSafeAreaViewCls},
|
|
{"ScrollView", RCTScrollViewCls},
|
|
{"PullToRefreshView", RCTPullToRefreshViewCls},
|
|
{"ActivityIndicatorView", RCTActivityIndicatorViewCls},
|
|
{"Slider", RCTSliderCls},
|
|
{"Switch", RCTSwitchCls},
|
|
{"UnimplementedNativeView", RCTUnimplementedNativeViewCls},
|
|
{"Paragraph", RCTParagraphCls},
|
|
{"TextInput", RCTTextInputCls},
|
|
{"InputAccessoryView", RCTInputAccessoryCls},
|
|
{"View", RCTViewCls},
|
|
{"Image", RCTImageCls},
|
|
};
|
|
|
|
auto p = sFabricComponentsClassMap.find(name);
|
|
if (p != sFabricComponentsClassMap.end()) {
|
|
auto classFunc = p->second;
|
|
return classFunc();
|
|
}
|
|
return nil;
|
|
}
|
|
|
|
#endif // RN_DISABLE_OSS_PLUGIN_HEADER
|