mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
07fd3125c8
Reviewed By: shergin Differential Revision: D17736209 fbshipit-source-id: e70c309f2599cdcb8f234d96915546032b71d223
126 lines
5.3 KiB
Plaintext
126 lines
5.3 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.
|
|
*/
|
|
|
|
#import "RCTComponentViewFactory.h"
|
|
|
|
#import <React/RCTAssert.h>
|
|
#import <React/RCTConversions.h>
|
|
#import <better/map.h>
|
|
#import <better/mutex.h>
|
|
|
|
#import <react/core/ReactPrimitives.h>
|
|
#import <react/uimanager/ComponentDescriptorProviderRegistry.h>
|
|
|
|
#import "RCTARTSurfaceViewComponentView.h"
|
|
#import "RCTActivityIndicatorViewComponentView.h"
|
|
#import "RCTImageComponentView.h"
|
|
#import "RCTLegacyViewManagerInteropComponentView.h"
|
|
#import "RCTModalHostViewComponentView.h"
|
|
#import "RCTParagraphComponentView.h"
|
|
#import "RCTPullToRefreshViewComponentView.h"
|
|
#import "RCTRootComponentView.h"
|
|
#import "RCTSafeAreaViewComponentView.h"
|
|
#import "RCTScrollViewComponentView.h"
|
|
#import "RCTSliderComponentView.h"
|
|
#import "RCTSwitchComponentView.h"
|
|
#import "RCTUnimplementedNativeComponentView.h"
|
|
#import "RCTViewComponentView.h"
|
|
|
|
using namespace facebook::react;
|
|
|
|
@implementation RCTComponentViewFactory {
|
|
better::map<ComponentHandle, Class<RCTComponentViewProtocol>> _componentViewClasses;
|
|
ComponentDescriptorProviderRegistry _providerRegistry;
|
|
better::shared_mutex _mutex;
|
|
}
|
|
|
|
+ (RCTComponentViewFactory *)standardComponentViewFactory
|
|
{
|
|
RCTComponentViewFactory *componentViewFactory = [[RCTComponentViewFactory alloc] init];
|
|
|
|
[componentViewFactory registerComponentViewClass:[RCTViewComponentView class]];
|
|
[componentViewFactory registerComponentViewClass:[RCTRootComponentView class]];
|
|
[componentViewFactory registerComponentViewClass:[RCTScrollViewComponentView class]];
|
|
[componentViewFactory registerComponentViewClass:[RCTPullToRefreshViewComponentView class]];
|
|
[componentViewFactory registerComponentViewClass:[RCTImageComponentView class]];
|
|
[componentViewFactory registerComponentViewClass:[RCTParagraphComponentView class]];
|
|
[componentViewFactory registerComponentViewClass:[RCTActivityIndicatorViewComponentView class]];
|
|
[componentViewFactory registerComponentViewClass:[RCTSliderComponentView class]];
|
|
[componentViewFactory registerComponentViewClass:[RCTSwitchComponentView class]];
|
|
[componentViewFactory registerComponentViewClass:[RCTUnimplementedNativeComponentView class]];
|
|
[componentViewFactory registerComponentViewClass:[RCTModalHostViewComponentView class]];
|
|
[componentViewFactory registerComponentViewClass:[RCTARTSurfaceViewComponentView class]];
|
|
[componentViewFactory registerComponentViewClass:[RCTSafeAreaViewComponentView class]];
|
|
|
|
auto providerRegistry = &componentViewFactory->_providerRegistry;
|
|
|
|
providerRegistry->setComponentDescriptorProviderRequest([providerRegistry,
|
|
componentViewFactory](ComponentName requestedComponentName) {
|
|
if ([RCTLegacyViewManagerInteropComponentView isSupported:RCTNSStringFromString(requestedComponentName)]) {
|
|
auto flavor = std::make_shared<std::string const>(requestedComponentName);
|
|
auto componentName = ComponentName{flavor->c_str()};
|
|
auto componentHandle = reinterpret_cast<ComponentHandle>(componentName);
|
|
auto constructor = [RCTLegacyViewManagerInteropComponentView componentDescriptorProvider].constructor;
|
|
|
|
providerRegistry->add(ComponentDescriptorProvider{componentHandle, componentName, flavor, constructor});
|
|
|
|
componentViewFactory->_componentViewClasses[componentHandle] = [RCTLegacyViewManagerInteropComponentView class];
|
|
}
|
|
});
|
|
|
|
return componentViewFactory;
|
|
}
|
|
|
|
- (void)registerComponentViewClass:(Class<RCTComponentViewProtocol>)componentViewClass
|
|
{
|
|
std::unique_lock<better::shared_mutex> lock(_mutex);
|
|
|
|
auto componentDescriptorProvider = [componentViewClass componentDescriptorProvider];
|
|
_componentViewClasses[componentDescriptorProvider.handle] = componentViewClass;
|
|
_providerRegistry.add(componentDescriptorProvider);
|
|
|
|
auto supplementalComponentDescriptorProviders = [componentViewClass supplementalComponentDescriptorProviders];
|
|
for (const auto &provider : supplementalComponentDescriptorProviders) {
|
|
_providerRegistry.add(provider);
|
|
}
|
|
}
|
|
|
|
- (void)unregisterComponentViewClass:(Class<RCTComponentViewProtocol>)componentViewClass
|
|
{
|
|
std::unique_lock<better::shared_mutex> lock(_mutex);
|
|
|
|
auto componentDescriptorProvider = [componentViewClass componentDescriptorProvider];
|
|
_componentViewClasses.erase(componentDescriptorProvider.handle);
|
|
_providerRegistry.remove(componentDescriptorProvider);
|
|
}
|
|
|
|
- (UIView<RCTComponentViewProtocol> *)createComponentViewWithComponentHandle:
|
|
(facebook::react::ComponentHandle)componentHandle
|
|
{
|
|
RCTAssertMainQueue();
|
|
std::shared_lock<better::shared_mutex> lock(_mutex);
|
|
|
|
auto iterator = _componentViewClasses.find(componentHandle);
|
|
RCTAssert(
|
|
iterator != _componentViewClasses.end(),
|
|
@"ComponentView with componentHandle `%lli` (`%s`) not found.",
|
|
componentHandle,
|
|
(char *)componentHandle);
|
|
Class componentViewClass = iterator->second;
|
|
return [[componentViewClass alloc] init];
|
|
}
|
|
|
|
- (facebook::react::ComponentDescriptorRegistry::Shared)createComponentDescriptorRegistryWithParameters:
|
|
(facebook::react::ComponentDescriptorParameters)parameters
|
|
{
|
|
std::shared_lock<better::shared_mutex> lock(_mutex);
|
|
|
|
return _providerRegistry.createComponentDescriptorRegistry(parameters);
|
|
}
|
|
|
|
@end
|