Files
react-native/packages/react-native/ReactCxxPlatform/react/devsupport/DevLoadingViewModule.cpp
T
Pieter De Baets a44c5a0dbf Use uint32_t as internal Color representation (#53507)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/53507

We need this to be an unsigned value everywhere but all the API's and interfaces described this a signed number. While this doesn't make a difference in practice, it's better to explicit.

Changelog: [Internal]

Reviewed By: sammy-SC

Differential Revision: D81230050

fbshipit-source-id: 1eb914a79b9b94654cfa54c20a81ce689f79dcb9
2025-08-29 00:49:21 -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 uint32_t DEFAULT_TEXT_COLOR = 0xFFFFFFFF;
const uint32_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<uint32_t> textColor,
std::optional<uint32_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