mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
d41e95fb1a
Summary: changelog: [internal] This diff introduces a mechanism to cache NSTextStorage on Paragraph's state. The old renderer already has caching for NSTextStorage: https://github.com/facebook/react-native/blob/main/Libraries/Text/Text/RCTTextShadowView.m#L21 Fabric will store `NSTextStorage` inside `ParagraphLayoutManager` which is owned by state. There is one notable change which is not gated: Paragraph's state strongly owns `TextLayoutManager`, not `ParagraphShadowNode` like previously. This shouldn't change anything Reviewed By: mdvacca Differential Revision: D43692171 fbshipit-source-id: efe6077222a30ab6d89abd9916534b9a96e745d4
76 lines
2.3 KiB
C++
76 lines
2.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.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <react/debug/react_native_assert.h>
|
|
#include <react/renderer/attributedstring/AttributedString.h>
|
|
#include <react/renderer/attributedstring/ParagraphAttributes.h>
|
|
#include <react/renderer/components/text/ParagraphLayoutManager.h>
|
|
|
|
#ifdef ANDROID
|
|
#include <folly/dynamic.h>
|
|
#include <react/renderer/mapbuffer/MapBuffer.h>
|
|
#endif
|
|
|
|
namespace facebook::react {
|
|
|
|
#ifdef ANDROID
|
|
// constants for Text State serialization
|
|
constexpr static MapBuffer::Key TX_STATE_KEY_ATTRIBUTED_STRING = 0;
|
|
constexpr static MapBuffer::Key TX_STATE_KEY_PARAGRAPH_ATTRIBUTES = 1;
|
|
// Used for TextInput only
|
|
constexpr static MapBuffer::Key TX_STATE_KEY_HASH = 2;
|
|
constexpr static MapBuffer::Key TX_STATE_KEY_MOST_RECENT_EVENT_COUNT = 3;
|
|
#endif
|
|
|
|
/*
|
|
* State for <Paragraph> component.
|
|
* Represents what to render and how to render.
|
|
*/
|
|
struct ParagraphState {
|
|
/*
|
|
* All content of <Paragraph> component represented as an `AttributedString`.
|
|
*/
|
|
AttributedString attributedString;
|
|
|
|
/*
|
|
* Represents all visual attributes of a paragraph of text represented as
|
|
* a ParagraphAttributes.
|
|
*/
|
|
ParagraphAttributes paragraphAttributes;
|
|
|
|
/*
|
|
* `ParagraphLayoutManager` provides a connection to platform-specific
|
|
* text rendering infrastructure which is capable to render the
|
|
* `AttributedString`.
|
|
* This is not on every platform. This is not used on Android, but is
|
|
* used on the iOS mounting layer.
|
|
*/
|
|
ParagraphLayoutManager paragraphLayoutManager;
|
|
|
|
#ifdef ANDROID
|
|
ParagraphState(
|
|
AttributedString const &attributedString,
|
|
ParagraphAttributes const ¶graphAttributes,
|
|
ParagraphLayoutManager const ¶graphLayoutManager)
|
|
: attributedString(attributedString),
|
|
paragraphAttributes(paragraphAttributes),
|
|
paragraphLayoutManager(paragraphLayoutManager) {}
|
|
ParagraphState() = default;
|
|
ParagraphState(
|
|
ParagraphState const &previousState,
|
|
folly::dynamic const &data) {
|
|
react_native_assert(false && "Not supported");
|
|
};
|
|
folly::dynamic getDynamic() const;
|
|
MapBuffer getMapBuffer() const;
|
|
#endif
|
|
};
|
|
|
|
} // namespace facebook::react
|