/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/ReactCommon/react/renderer/components/legacyviewmanagerinterop/LegacyViewManagerInteropComponentDescriptor.h
36 строк
1 KB
Samuel Susla
ComponentDescriptor::adopt now accepts reference to ShadowNode (#39354)
12 сен 2023, 14:39
12 сен 2023, 14:39
1187720
Код
Авторство
О чём код?
/* * Copyright (c) Meta Platforms, Inc. and 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/renderer/components/legacyviewmanagerinterop/LegacyViewManagerInteropShadowNode.h> #include <react/renderer/core/ConcreteComponentDescriptor.h> namespace facebook::react { class LegacyViewManagerInteropComponentDescriptor final : public ConcreteComponentDescriptor<LegacyViewManagerInteropShadowNode> { public: using ConcreteComponentDescriptor::ConcreteComponentDescriptor; LegacyViewManagerInteropComponentDescriptor( const ComponentDescriptorParameters& parameters); /* * Returns `name` and `handle` based on a `flavor`, not on static data from * `LegacyViewManagerInteropShadowNode`. */ ComponentHandle getComponentHandle() const override; ComponentName getComponentName() const override; protected: void adopt(ShadowNode& shadowNode) const override; private: const std::shared_ptr<void> _coordinator; }; } // namespace facebook::react