Files
react-native/packages/react-native/ReactCxxPlatform/react/devsupport/DevLoadingViewModule.cpp
T
Nick LefeverandFacebook GitHub Bot 02e3a999ed Back out "Use uint32_t as internal Color representation" (#53622)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/53622

Reverting to avoid lossy conversion on hosts expecting signed int values for color conversion.

Changelog: [Internal]

Reviewed By: rozele, javache

Differential Revision: D81785268

fbshipit-source-id: 4a8d099e378fa55e76a58c2ab0356d88e344de2c
2025-09-05 20:37:58 -07:00

47 lines
1.3 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 "DevLoadingViewModule.h"
namespace facebook::react {
const int32_t DEFAULT_TEXT_COLOR = 0xFFFFFFFF;
const int32_t DEFAULT_BACKGROUND_COLOR = 0xFF2584E8;
DevLoadingViewModule::DevLoadingViewModule(
std::shared_ptr<CallInvoker> jsInvoker,
std::weak_ptr<IDevUIDelegate> devUIDelegate)
: NativeDevLoadingViewCxxSpec(jsInvoker),
devUIDelegate_(std::move(devUIDelegate)) {}
DevLoadingViewModule::~DevLoadingViewModule() {
if (auto devUIDelegate = devUIDelegate_.lock()) {
devUIDelegate->hideLoadingView();
}
}
void DevLoadingViewModule::showMessage(
jsi::Runtime& /*rt*/,
const std::string& message,
std::optional<int32_t> textColor,
std::optional<int32_t> backgroundColor) {
if (auto devUIDelegate = devUIDelegate_.lock()) {
devUIDelegate->showLoadingView(
message,
SharedColor{textColor.value_or(DEFAULT_TEXT_COLOR)},
SharedColor{backgroundColor.value_or(DEFAULT_BACKGROUND_COLOR)});
}
}
void DevLoadingViewModule::hide(jsi::Runtime& /*rt*/) {
if (auto devUIDelegate = devUIDelegate_.lock()) {
devUIDelegate->hideLoadingView();
}
}
} // namespace facebook::react