mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
59b96fe9a3
Reviewed By: shergin Differential Revision: D17627622 fbshipit-source-id: 02c47fcf29ca9b5aa19536a8ebdc199a3e356130
93 lines
2.5 KiB
C++
93 lines
2.5 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 "ParagraphMeasurementCache.h"
|
|
#include "ParagraphState.h"
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
char const 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(
|
|
ParagraphMeasurementCache const *cache) {
|
|
ensureUnsealed();
|
|
measureCache_ = cache;
|
|
}
|
|
|
|
void ParagraphShadowNode::updateStateIfNeeded() {
|
|
ensureUnsealed();
|
|
|
|
auto attributedString = getAttributedString();
|
|
auto const &state = getStateData();
|
|
|
|
assert(textLayoutManager_);
|
|
assert(
|
|
(!state.layoutManager || state.layoutManager == textLayoutManager_) &&
|
|
"`StateData` refers to a different `TextLayoutManager`");
|
|
|
|
if (state.attributedString == attributedString &&
|
|
state.layoutManager == textLayoutManager_) {
|
|
return;
|
|
}
|
|
|
|
setStateData(ParagraphState{attributedString, textLayoutManager_});
|
|
}
|
|
|
|
#pragma mark - LayoutableShadowNode
|
|
|
|
Size ParagraphShadowNode::measure(LayoutConstraints layoutConstraints) const {
|
|
AttributedString attributedString = getAttributedString();
|
|
|
|
if (attributedString.isEmpty()) {
|
|
return {0, 0};
|
|
}
|
|
|
|
ParagraphAttributes const paragraphAttributes =
|
|
getProps()->paragraphAttributes;
|
|
|
|
assert(measureCache_);
|
|
|
|
return measureCache_->get(
|
|
ParagraphMeasurementCacheKey{
|
|
attributedString, paragraphAttributes, layoutConstraints},
|
|
[&](ParagraphMeasurementCacheKey const &key) {
|
|
return textLayoutManager_->measure(
|
|
attributedString, paragraphAttributes, layoutConstraints);
|
|
});
|
|
|
|
return textLayoutManager_->measure(
|
|
attributedString, paragraphAttributes, layoutConstraints);
|
|
}
|
|
|
|
void ParagraphShadowNode::layout(LayoutContext layoutContext) {
|
|
updateStateIfNeeded();
|
|
ConcreteViewShadowNode::layout(layoutContext);
|
|
}
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|