mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
8a8ff63b7d
Summary: This is the first step to migrate the registration of Android-specific `ComponentDescriptors` to `ComponentDescriptorProviderRegistry`. `ComponentDescriptorProviderRegistry` is a never API for component registration that supports reactive registration and simplified signatures for `registry` (`add`) method. It's tedious to keep those signatures in sync with the base class (`ComponentDescriptor`), we have an idea how to make it better by using a single struct with all params but a migration to that will be a separate effort. The changes are pure syntactical. Changelog: [Internal] Internal changes in Fabric. Reviewed By: mdvacca Differential Revision: D18010488 fbshipit-source-id: 4cbfdbcae235b32a94b38df2095c956299764e59
55 lines
1.7 KiB
C++
55 lines
1.7 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 "AndroidSwitchMeasurementsManager.h"
|
|
#include "AndroidSwitchShadowNode.h"
|
|
|
|
#include <react/core/ConcreteComponentDescriptor.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
/*
|
|
* Descriptor for <AndroidSwitch> component.
|
|
*/
|
|
class AndroidSwitchComponentDescriptor final
|
|
: public ConcreteComponentDescriptor<AndroidSwitchShadowNode> {
|
|
public:
|
|
AndroidSwitchComponentDescriptor(
|
|
EventDispatcher::Weak eventDispatcher,
|
|
ContextContainer::Shared const &contextContainer,
|
|
ComponentDescriptor::Flavor const &flavor = {})
|
|
: ConcreteComponentDescriptor(eventDispatcher, contextContainer, flavor),
|
|
measurementsManager_(std::make_shared<AndroidSwitchMeasurementsManager>(
|
|
contextContainer)) {}
|
|
|
|
void adopt(UnsharedShadowNode shadowNode) const override {
|
|
ConcreteComponentDescriptor::adopt(shadowNode);
|
|
|
|
assert(std::dynamic_pointer_cast<AndroidSwitchShadowNode>(shadowNode));
|
|
auto androidSwitchShadowNode =
|
|
std::static_pointer_cast<AndroidSwitchShadowNode>(shadowNode);
|
|
|
|
// `AndroidSwitchShadowNode` uses `AndroidSwitchMeasurementsManager` to
|
|
// provide measurements to Yoga.
|
|
androidSwitchShadowNode->setAndroidSwitchMeasurementsManager(
|
|
measurementsManager_);
|
|
|
|
// All `AndroidSwitchShadowNode`s must have leaf Yoga nodes with properly
|
|
// setup measure function.
|
|
androidSwitchShadowNode->enableMeasurement();
|
|
}
|
|
|
|
private:
|
|
const std::shared_ptr<AndroidSwitchMeasurementsManager> measurementsManager_;
|
|
};
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|