mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: The goal is to be able to use MobileConfig params inside of core React Native C++ code. This works on Catalyst iOS now and Wilde; need to add support for FB4A and Catalyst Android. Reviewed By: fkgozali Differential Revision: D13883007 fbshipit-source-id: 115fe6cc884d2a0b9ca26dadf867a5f0ae99f262
94 lines
2.7 KiB
C++
94 lines
2.7 KiB
C++
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#include "ParagraphShadowNode.h"
|
|
#include "ParagraphLocalData.h"
|
|
#include "ParagraphMeasurementCache.h"
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
const char ParagraphComponentName[] = "Paragraph";
|
|
|
|
AttributedString ParagraphShadowNode::getAttributedString() const {
|
|
if (!cachedAttributedString_.has_value()) {
|
|
auto textAttributes = TextAttributes::defaultTextAttributes();
|
|
textAttributes.apply(getProps()->textAttributes);
|
|
|
|
cachedAttributedString_ = BaseTextShadowNode::getAttributedString(
|
|
textAttributes, shared_from_this());
|
|
}
|
|
|
|
return cachedAttributedString_.value();
|
|
}
|
|
|
|
void ParagraphShadowNode::setTextLayoutManager(
|
|
SharedTextLayoutManager textLayoutManager) {
|
|
ensureUnsealed();
|
|
textLayoutManager_ = textLayoutManager;
|
|
}
|
|
|
|
void ParagraphShadowNode::setMeasureCache(
|
|
const ParagraphMeasurementCache *cache) {
|
|
ensureUnsealed();
|
|
measureCache_ = cache;
|
|
}
|
|
|
|
void ParagraphShadowNode::updateLocalDataIfNeeded() {
|
|
ensureUnsealed();
|
|
|
|
auto attributedString = getAttributedString();
|
|
auto currentLocalData =
|
|
std::static_pointer_cast<const ParagraphLocalData>(getLocalData());
|
|
if (currentLocalData &&
|
|
currentLocalData->getAttributedString() == attributedString) {
|
|
return;
|
|
}
|
|
|
|
auto localData = std::make_shared<ParagraphLocalData>();
|
|
localData->setAttributedString(std::move(attributedString));
|
|
localData->setTextLayoutManager(textLayoutManager_);
|
|
setLocalData(localData);
|
|
}
|
|
|
|
#pragma mark - LayoutableShadowNode
|
|
|
|
Size ParagraphShadowNode::measure(LayoutConstraints layoutConstraints) const {
|
|
AttributedString attributedString = getAttributedString();
|
|
const ParagraphAttributes attributes = getProps()->paragraphAttributes;
|
|
|
|
auto makeMeasurements = [&] {
|
|
return textLayoutManager_->measure(
|
|
attributedString, getProps()->paragraphAttributes, layoutConstraints);
|
|
};
|
|
|
|
// Cache results of this function so we don't need to call measure()
|
|
// repeatedly
|
|
if (measureCache_ != nullptr) {
|
|
ParagraphMeasurementCacheKey cacheKey =
|
|
std::make_tuple(attributedString, attributes, layoutConstraints);
|
|
if (measureCache_->exists(cacheKey)) {
|
|
return measureCache_->get(cacheKey);
|
|
}
|
|
|
|
auto measuredSize = makeMeasurements();
|
|
measureCache_->set(cacheKey, measuredSize);
|
|
|
|
return measuredSize;
|
|
}
|
|
|
|
return makeMeasurements();
|
|
}
|
|
|
|
void ParagraphShadowNode::layout(LayoutContext layoutContext) {
|
|
updateLocalDataIfNeeded();
|
|
ConcreteViewShadowNode::layout(layoutContext);
|
|
}
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|