/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/ReactCxxPlatform/react/devsupport/LogBoxModule.cpp
42 строки
1 KB
Christoph Purrer
Add devsupport target to ReactCxxPlatform (#51902)
10 июн 2025, 09:15
10 июн 2025, 09:15
0e0cd39
Код
Авторство
О чём код?
/* * 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 "LogBoxModule.h" #include <glog/logging.h> namespace facebook::react { LogBoxModule::LogBoxModule( std::shared_ptr<CallInvoker> jsInvoker, std::shared_ptr<SurfaceDelegate> surfaceDelegate) : NativeLogBoxCxxSpec(jsInvoker), surfaceDelegate_(std::move(surfaceDelegate)) { LOG(INFO) << "LogBoxModule initialized"; surfaceDelegate_->createContentView("LogBox"); } LogBoxModule::~LogBoxModule() { surfaceDelegate_->destroyContentView(); } void LogBoxModule::show(jsi::Runtime& /*rt*/) { LOG(INFO) << "LogBoxModule show"; if (surfaceDelegate_->isContentViewReady() && !surfaceDelegate_->isShowing()) { surfaceDelegate_->show(); } } void LogBoxModule::hide(jsi::Runtime& /*rt*/) { LOG(INFO) << "LogBoxModule hide"; if (surfaceDelegate_->isShowing()) { surfaceDelegate_->hide(); } } } // namespace facebook::react