Skip to content
This repository was archived by the owner on Jul 19, 2019. It is now read-only.

Commit 3b07083

Browse files
authored
Flatten Text children before rendering (#114)
From FB-internal D4613844.
1 parent 81af229 commit 3b07083

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

src/ReactARTFiber.js

+8-3
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ function applyShapeProps(instance, props, prevProps = {}) {
267267
function applyTextProps(instance, props, prevProps = {}) {
268268
applyRenderableNodeProps(instance, props, prevProps);
269269

270-
const string = childrenAsString(props.children);
270+
const string = props.children;
271271

272272
if (
273273
instance._currentString !== string ||
@@ -404,6 +404,7 @@ const ARTRenderer = ReactFiberReconciler({
404404
appendInitialChild(parentInstance, child) {
405405
if (typeof child === 'string') {
406406
// Noop for string children of Text (eg <Text>{'foo'}{'bar'}</Text>)
407+
invariant(false, 'Text children should already be flattened.');
407408
return;
408409
}
409410

@@ -440,7 +441,7 @@ const ARTRenderer = ReactFiberReconciler({
440441
break;
441442
case TYPES.TEXT:
442443
instance = Mode.Text(
443-
childrenAsString(props.children),
444+
props.children,
444445
props.font,
445446
props.alignment,
446447
props.path,
@@ -528,6 +529,10 @@ module.exports = {
528529
RadialGradient,
529530
Shape: TYPES.SHAPE,
530531
Surface,
531-
Text: TYPES.TEXT,
532+
Text: function Text(props) {
533+
// TODO: This means you can't have children that render into strings.
534+
const T = TYPES.TEXT;
535+
return <T {...props}>{childrenAsString(props.children)}</T>;
536+
},
532537
Transform,
533538
};

0 commit comments

Comments
 (0)