mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
c5cc27f1e9
Summary: Currently, the same ComponentDescriptor class cannot be registered as a responder for components with different names. However, we have marginal cases where we really need it. The examples are `UnimplementedView` or possible universal interop with the classic RN or any other UI framework. This change adds a special optional argument to ComponentDescript constructor that allows implementing this functionality. Reviewed By: fkgozali Differential Revision: D17211915 fbshipit-source-id: 18f59e09fe06b875a8e8975b7b2ab423489238bb
49 lines
1.5 KiB
C++
49 lines
1.5 KiB
C++
/**
|
|
* 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.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <react/components/image/ImageShadowNode.h>
|
|
#include <react/core/ConcreteComponentDescriptor.h>
|
|
#include <react/imagemanager/ImageManager.h>
|
|
#include <react/utils/ContextContainer.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
/*
|
|
* Descriptor for <Image> component.
|
|
*/
|
|
class ImageComponentDescriptor final
|
|
: public ConcreteComponentDescriptor<ImageShadowNode> {
|
|
public:
|
|
ImageComponentDescriptor(
|
|
EventDispatcher::Weak eventDispatcher,
|
|
ContextContainer::Shared const &contextContainer,
|
|
ComponentDescriptor::Flavor const &flavor = {})
|
|
: ConcreteComponentDescriptor(eventDispatcher, contextContainer, flavor),
|
|
imageManager_(std::make_shared<ImageManager>(contextContainer)){};
|
|
|
|
void adopt(UnsharedShadowNode shadowNode) const override {
|
|
ConcreteComponentDescriptor::adopt(shadowNode);
|
|
|
|
assert(std::dynamic_pointer_cast<ImageShadowNode>(shadowNode));
|
|
auto imageShadowNode =
|
|
std::static_pointer_cast<ImageShadowNode>(shadowNode);
|
|
|
|
// `ImageShadowNode` uses `ImageManager` to initiate image loading and
|
|
// communicate the loading state and results to mounting layer.
|
|
imageShadowNode->setImageManager(imageManager_);
|
|
}
|
|
|
|
private:
|
|
const SharedImageManager imageManager_;
|
|
};
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|