Files
react-native/ReactCommon/fabric/components/text/tests/ParagraphLocalDataTest.cpp
T
Valentin Shergin 06ce568155 Fabric: Use state in Paragraph component
Summary:
All props to Eric Lewis! cc ericlewis

This revert of revert of land of changes originally published in #24873 (with some slight fixes). The change removes usage of LocalData from the `<Text>` component.

After this change we only have ---one (maybe two)--- three components left using LocalData.

Reviewed By: mdvacca

Differential Revision: D15962376

fbshipit-source-id: 19f41109ce9d71ce30d618a45eb2b547a11f29a2
2019-07-07 22:46:21 -07:00

55 lines
1.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 <memory>
#include <assert.h>
#include <gtest/gtest.h>
#include <react/attributedstring/AttributedString.h>
#include <react/attributedstring/TextAttributes.h>
#include <react/attributedstring/primitives.h>
#include <react/components/text/ParagraphState.h>
#include <react/components/text/conversions.h>
namespace facebook {
namespace react {
#ifdef ANDROID
TEST(ParagraphLocalDataTest, testSomething) {
auto attributedString = AttributedString();
auto fragment = AttributedString::Fragment();
fragment.string = "test";
auto text = TextAttributes();
text.foregroundColor = {
colorFromComponents({100 / 255.0, 153 / 255.0, 253 / 255.0, 1.0})};
text.opacity = 0.5;
text.fontStyle = FontStyle::Italic;
text.fontWeight = FontWeight::Thin;
text.fontVariant = FontVariant::TabularNums;
fragment.textAttributes = text;
attString.prependFragment(fragment);
auto paragraphState = ParagraphState{};
paragraphLocalData.attributedString = attributedString;
auto result = toDynamic(paragraphState)["attributedString"];
assert(result["string"] == fragment.string);
auto textAttribute = result["fragments"][0]["textAttributes"];
assert(textAttribute["foregroundColor"] == toDynamic(text.foregroundColor));
assert(textAttribute["opacity"] == text.opacity);
assert(textAttribute["fontStyle"] == toString(*text.fontStyle));
assert(textAttribute["fontWeight"] == toString(*text.fontWeight));
}
#endif
} // namespace react
} // namespace facebook