mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
13db6cb731
Summary: This diff extends ParagraphState to expose not only the AttributedString associated to Text components, but also ParagraphAttributes that describes the visual high level props of the Paragraph Changelog: [Internal] Reviewed By: JoshuaGross Differential Revision: D18101407 fbshipit-source-id: 5f5d5ca35cc03e4bf983fd24654be9506d1901a1
95 lines
2.6 KiB
C++
95 lines
2.6 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 <Glog/logging.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, *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, getProps()->paragraphAttributes, 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
|