mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
8bd3edec88
Reviewed By: aaronabramov Differential Revision: D33367752 fbshipit-source-id: 4ce94d184485e5ee0a62cf67ad2d3ba16e285c8f
106 lines
3.5 KiB
C++
106 lines
3.5 KiB
C++
/*
|
|
* 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.
|
|
*/
|
|
|
|
#include "SurfaceRegistryBinding.h"
|
|
#include <react/renderer/debug/SystraceSection.h>
|
|
#include <react/renderer/uimanager/bindingUtils.h>
|
|
#include <react/renderer/uimanager/primitives.h>
|
|
#include "bindingUtils.h"
|
|
|
|
namespace facebook::react {
|
|
|
|
void SurfaceRegistryBinding::startSurface(
|
|
jsi::Runtime &runtime,
|
|
SurfaceId surfaceId,
|
|
std::string const &moduleName,
|
|
folly::dynamic const &initalProps,
|
|
DisplayMode displayMode) {
|
|
SystraceSection s("SurfaceRegistryBinding::startSurface");
|
|
folly::dynamic parameters = folly::dynamic::object();
|
|
parameters["rootTag"] = surfaceId;
|
|
parameters["initialProps"] = initalProps;
|
|
parameters["fabric"] = true;
|
|
|
|
if (moduleName != "LogBox" &&
|
|
runtime.global().hasProperty(runtime, "RN$SurfaceRegistry")) {
|
|
auto registry =
|
|
runtime.global().getPropertyAsObject(runtime, "RN$SurfaceRegistry");
|
|
auto method = registry.getPropertyAsFunction(runtime, "renderSurface");
|
|
|
|
method.call(
|
|
runtime,
|
|
{jsi::String::createFromUtf8(runtime, moduleName),
|
|
jsi::valueFromDynamic(runtime, parameters),
|
|
jsi::Value(runtime, displayModeToInt(displayMode))});
|
|
} else {
|
|
callMethodOfModule(
|
|
runtime,
|
|
"AppRegistry",
|
|
"runApplication",
|
|
{jsi::String::createFromUtf8(runtime, moduleName),
|
|
jsi::valueFromDynamic(runtime, parameters),
|
|
jsi::Value(runtime, displayModeToInt(displayMode))});
|
|
}
|
|
}
|
|
|
|
void SurfaceRegistryBinding::setSurfaceProps(
|
|
jsi::Runtime &runtime,
|
|
SurfaceId surfaceId,
|
|
std::string const &moduleName,
|
|
folly::dynamic const &initalProps,
|
|
DisplayMode displayMode) {
|
|
SystraceSection s("UIManagerBinding::setSurfaceProps");
|
|
folly::dynamic parameters = folly::dynamic::object();
|
|
parameters["rootTag"] = surfaceId;
|
|
parameters["initialProps"] = initalProps;
|
|
parameters["fabric"] = true;
|
|
|
|
if (moduleName != "LogBox" &&
|
|
runtime.global().hasProperty(runtime, "RN$SurfaceRegistry")) {
|
|
auto registry =
|
|
runtime.global().getPropertyAsObject(runtime, "RN$SurfaceRegistry");
|
|
auto method = registry.getPropertyAsFunction(runtime, "setSurfaceProps");
|
|
|
|
method.call(
|
|
runtime,
|
|
{jsi::String::createFromUtf8(runtime, moduleName),
|
|
jsi::valueFromDynamic(runtime, parameters),
|
|
jsi::Value(runtime, displayModeToInt(displayMode))});
|
|
} else {
|
|
callMethodOfModule(
|
|
runtime,
|
|
"AppRegistry",
|
|
"setSurfaceProps",
|
|
{jsi::String::createFromUtf8(runtime, moduleName),
|
|
jsi::valueFromDynamic(runtime, parameters),
|
|
jsi::Value(runtime, displayModeToInt(displayMode))});
|
|
}
|
|
}
|
|
|
|
void SurfaceRegistryBinding::stopSurface(
|
|
jsi::Runtime &runtime,
|
|
SurfaceId surfaceId) {
|
|
auto global = runtime.global();
|
|
if (global.hasProperty(runtime, "RN$Bridgeless")) {
|
|
if (!global.hasProperty(runtime, "RN$stopSurface")) {
|
|
// ReactFabric module has not been loaded yet; there's no surface to stop.
|
|
return;
|
|
}
|
|
// Bridgeless mode uses a custom JSI binding instead of callable module.
|
|
global.getPropertyAsFunction(runtime, "RN$stopSurface")
|
|
.call(runtime, {jsi::Value{surfaceId}});
|
|
} else {
|
|
callMethodOfModule(
|
|
runtime,
|
|
"ReactFabric",
|
|
"unmountComponentAtNode",
|
|
{jsi::Value{surfaceId}});
|
|
}
|
|
}
|
|
|
|
} // namespace facebook::react
|