mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
601981a67d
Summary: Aside from RCTCameraRollManager, this diff makes the following NativeModules TurboModule-compatible: - RCTAssetsLibraryRequestHandler - RCTImagePickerManager - RCTPhotoLibraryImageLoader I couldn't convert CameraRollManager to a TurboModule because its NativeMoudle spec is located in fb-internal code. We should probably just move all these NativeModules outside of react-native-github. See: T54882565. Reviewed By: PeteTheHeat Differential Revision: D17678033 fbshipit-source-id: 4d10b7b1ad4e167bb9e46ff2bfd1559a5092e201
36 lines
962 B
Plaintext
36 lines
962 B
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 "RCTCameraRollPlugins.h"
|
|
|
|
#import <string>
|
|
#import <unordered_map>
|
|
|
|
Class RCTCameraRollClassProvider(const char *name) {
|
|
static std::unordered_map<std::string, Class (*)(void)> sCoreModuleClassMap = {
|
|
{"AssetsLibraryRequestHandler", RCTAssetsLibraryRequestHandlerCls},
|
|
{"CameraRollManager", RCTCameraRollManagerCls},
|
|
{"ImagePickerIOS", RCTImagePickerManagerCls},
|
|
{"PhotoLibraryImageLoader", RCTPhotoLibraryImageLoaderCls},
|
|
};
|
|
|
|
auto p = sCoreModuleClassMap.find(name);
|
|
if (p != sCoreModuleClassMap.end()) {
|
|
auto classFunc = p->second;
|
|
return classFunc();
|
|
}
|
|
return nil;
|
|
}
|
|
|
|
#endif // RN_DISABLE_OSS_PLUGIN_HEADER
|