Introduce isDefined() and remove cases of !isUndefined() (#1439)
Summary: X-link: https://github.com/facebook/react-native/pull/41209 Pull Request resolved: https://github.com/facebook/yoga/pull/1439 There are so many instances in this code base where we use the double negative of `!yoga::isUndefined(<something>)`. This is not as easy to read since because of this double negative imo. Additionally, sometimes we have really long chains like `!longVariableName.longFunctionName(longArgumentName).isUndefined()` and it is hard to see that this undefined is inverted. This just replaces all instances of inverted `isUndefined()` with `isDefined()` so its easier to read. Reviewed By: NickGerleman Differential Revision: D50705523 fbshipit-source-id: edc7d3f2cbbae38ddaeb2030a419320caf73feff
This commit is contained in:
committed by
Facebook GitHub Bot
parent
e90f2a8e2c
commit
c09554056d
@@ -61,16 +61,16 @@ static inline bool styleDefinesDimension(
|
||||
const yoga::Node* const node,
|
||||
const FlexDirection axis,
|
||||
const float ownerSize) {
|
||||
bool isUndefined =
|
||||
yoga::isUndefined(node->getResolvedDimension(dimension(axis)).value);
|
||||
bool isDefined =
|
||||
yoga::isDefined(node->getResolvedDimension(dimension(axis)).value);
|
||||
|
||||
auto resolvedDimension = node->getResolvedDimension(dimension(axis));
|
||||
return !(
|
||||
resolvedDimension.unit == YGUnitAuto ||
|
||||
resolvedDimension.unit == YGUnitUndefined ||
|
||||
(resolvedDimension.unit == YGUnitPoint && !isUndefined &&
|
||||
(resolvedDimension.unit == YGUnitPoint && isDefined &&
|
||||
resolvedDimension.value < 0.0f) ||
|
||||
(resolvedDimension.unit == YGUnitPercent && !isUndefined &&
|
||||
(resolvedDimension.unit == YGUnitPercent && isDefined &&
|
||||
(resolvedDimension.value < 0.0f || yoga::isUndefined(ownerSize))));
|
||||
}
|
||||
|
||||
@@ -78,7 +78,7 @@ static inline bool isLayoutDimensionDefined(
|
||||
const yoga::Node* const node,
|
||||
const FlexDirection axis) {
|
||||
const float value = node->getLayout().measuredDimension(dimension(axis));
|
||||
return !yoga::isUndefined(value) && value >= 0.0f;
|
||||
return yoga::isDefined(value) && value >= 0.0f;
|
||||
}
|
||||
|
||||
static void setChildTrailingPosition(
|
||||
@@ -111,7 +111,7 @@ static void constrainMaxSizeForMode(
|
||||
: maxSize.unwrap();
|
||||
break;
|
||||
case MeasureMode::Undefined:
|
||||
if (!maxSize.isUndefined()) {
|
||||
if (maxSize.isDefined()) {
|
||||
*mode = MeasureMode::AtMost;
|
||||
*size = maxSize.unwrap();
|
||||
}
|
||||
@@ -150,7 +150,7 @@ static void computeFlexBasisForChild(
|
||||
const bool isColumnStyleDimDefined =
|
||||
styleDefinesDimension(child, FlexDirection::Column, ownerHeight);
|
||||
|
||||
if (!resolvedFlexBasis.isUndefined() && !yoga::isUndefined(mainAxisSize)) {
|
||||
if (resolvedFlexBasis.isDefined() && yoga::isDefined(mainAxisSize)) {
|
||||
if (child->getLayout().computedFlexBasis.isUndefined() ||
|
||||
(child->getConfig()->isExperimentalFeatureEnabled(
|
||||
ExperimentalFeature::WebFlexBasis) &&
|
||||
@@ -210,7 +210,7 @@ static void computeFlexBasisForChild(
|
||||
// major browsers appear to implement the following logic.
|
||||
if ((!isMainAxisRow && node->getStyle().overflow() == Overflow::Scroll) ||
|
||||
node->getStyle().overflow() != Overflow::Scroll) {
|
||||
if (yoga::isUndefined(childWidth) && !yoga::isUndefined(width)) {
|
||||
if (yoga::isUndefined(childWidth) && yoga::isDefined(width)) {
|
||||
childWidth = width;
|
||||
childWidthMeasureMode = MeasureMode::AtMost;
|
||||
}
|
||||
@@ -218,14 +218,14 @@ static void computeFlexBasisForChild(
|
||||
|
||||
if ((isMainAxisRow && node->getStyle().overflow() == Overflow::Scroll) ||
|
||||
node->getStyle().overflow() != Overflow::Scroll) {
|
||||
if (yoga::isUndefined(childHeight) && !yoga::isUndefined(height)) {
|
||||
if (yoga::isUndefined(childHeight) && yoga::isDefined(height)) {
|
||||
childHeight = height;
|
||||
childHeightMeasureMode = MeasureMode::AtMost;
|
||||
}
|
||||
}
|
||||
|
||||
const auto& childStyle = child->getStyle();
|
||||
if (!childStyle.aspectRatio().isUndefined()) {
|
||||
if (childStyle.aspectRatio().isDefined()) {
|
||||
if (!isMainAxisRow && childWidthMeasureMode == MeasureMode::Exactly) {
|
||||
childHeight = marginColumn +
|
||||
(childWidth - marginRow) / childStyle.aspectRatio().unwrap();
|
||||
@@ -242,7 +242,7 @@ static void computeFlexBasisForChild(
|
||||
// the cross axis to be measured exactly with the available inner width
|
||||
|
||||
const bool hasExactWidth =
|
||||
!yoga::isUndefined(width) && widthMode == MeasureMode::Exactly;
|
||||
yoga::isDefined(width) && widthMode == MeasureMode::Exactly;
|
||||
const bool childWidthStretch =
|
||||
resolveChildAlignment(node, child) == Align::Stretch &&
|
||||
childWidthMeasureMode != MeasureMode::Exactly;
|
||||
@@ -250,7 +250,7 @@ static void computeFlexBasisForChild(
|
||||
childWidthStretch) {
|
||||
childWidth = width;
|
||||
childWidthMeasureMode = MeasureMode::Exactly;
|
||||
if (!childStyle.aspectRatio().isUndefined()) {
|
||||
if (childStyle.aspectRatio().isDefined()) {
|
||||
childHeight =
|
||||
(childWidth - marginRow) / childStyle.aspectRatio().unwrap();
|
||||
childHeightMeasureMode = MeasureMode::Exactly;
|
||||
@@ -258,7 +258,7 @@ static void computeFlexBasisForChild(
|
||||
}
|
||||
|
||||
const bool hasExactHeight =
|
||||
!yoga::isUndefined(height) && heightMode == MeasureMode::Exactly;
|
||||
yoga::isDefined(height) && heightMode == MeasureMode::Exactly;
|
||||
const bool childHeightStretch =
|
||||
resolveChildAlignment(node, child) == Align::Stretch &&
|
||||
childHeightMeasureMode != MeasureMode::Exactly;
|
||||
@@ -267,7 +267,7 @@ static void computeFlexBasisForChild(
|
||||
childHeight = height;
|
||||
childHeightMeasureMode = MeasureMode::Exactly;
|
||||
|
||||
if (!childStyle.aspectRatio().isUndefined()) {
|
||||
if (childStyle.aspectRatio().isDefined()) {
|
||||
childWidth =
|
||||
(childHeight - marginColumn) * childStyle.aspectRatio().unwrap();
|
||||
childWidthMeasureMode = MeasureMode::Exactly;
|
||||
@@ -382,7 +382,7 @@ static void layoutAbsoluteChild(
|
||||
// flexible.
|
||||
const auto& childStyle = child->getStyle();
|
||||
if (yoga::isUndefined(childWidth) ^ yoga::isUndefined(childHeight)) {
|
||||
if (!childStyle.aspectRatio().isUndefined()) {
|
||||
if (childStyle.aspectRatio().isDefined()) {
|
||||
if (yoga::isUndefined(childWidth)) {
|
||||
childWidth = marginRow +
|
||||
(childHeight - marginColumn) * childStyle.aspectRatio().unwrap();
|
||||
@@ -407,7 +407,7 @@ static void layoutAbsoluteChild(
|
||||
// wrap to the size of its owner. This is the same behavior as many browsers
|
||||
// implement.
|
||||
if (!isMainAxisRow && yoga::isUndefined(childWidth) &&
|
||||
widthMode != MeasureMode::Undefined && !yoga::isUndefined(width) &&
|
||||
widthMode != MeasureMode::Undefined && yoga::isDefined(width) &&
|
||||
width > 0) {
|
||||
childWidth = width;
|
||||
childWidthMeasureMode = MeasureMode::AtMost;
|
||||
@@ -678,9 +678,9 @@ static bool measureNodeWithFixedSize(
|
||||
const MeasureMode heightMeasureMode,
|
||||
const float ownerWidth,
|
||||
const float ownerHeight) {
|
||||
if ((!yoga::isUndefined(availableWidth) &&
|
||||
if ((yoga::isDefined(availableWidth) &&
|
||||
widthMeasureMode == MeasureMode::AtMost && availableWidth <= 0.0f) ||
|
||||
(!yoga::isUndefined(availableHeight) &&
|
||||
(yoga::isDefined(availableHeight) &&
|
||||
heightMeasureMode == MeasureMode::AtMost && availableHeight <= 0.0f) ||
|
||||
(widthMeasureMode == MeasureMode::Exactly &&
|
||||
heightMeasureMode == MeasureMode::Exactly)) {
|
||||
@@ -736,7 +736,7 @@ static float calculateAvailableInnerDimension(
|
||||
float availableInnerDim = availableDim - paddingAndBorder;
|
||||
// Max dimension overrides predefined dimension value; Min dimension in turn
|
||||
// overrides both of the above
|
||||
if (!yoga::isUndefined(availableInnerDim)) {
|
||||
if (yoga::isDefined(availableInnerDim)) {
|
||||
// We want to make sure our available height does not violate min and max
|
||||
// constraints
|
||||
const FloatOptional minDimensionOptional =
|
||||
@@ -880,7 +880,7 @@ static float distributeFreeSpaceSecondPass(
|
||||
.unwrap();
|
||||
float updatedMainSize = childFlexBasis;
|
||||
|
||||
if (!yoga::isUndefined(flexLine.layout.remainingFreeSpace) &&
|
||||
if (yoga::isDefined(flexLine.layout.remainingFreeSpace) &&
|
||||
flexLine.layout.remainingFreeSpace < 0) {
|
||||
flexShrinkScaledFactor =
|
||||
-currentLineChild->resolveFlexShrink() * childFlexBasis;
|
||||
@@ -888,7 +888,7 @@ static float distributeFreeSpaceSecondPass(
|
||||
if (flexShrinkScaledFactor != 0) {
|
||||
float childSize;
|
||||
|
||||
if (!yoga::isUndefined(flexLine.layout.totalFlexShrinkScaledFactors) &&
|
||||
if (yoga::isDefined(flexLine.layout.totalFlexShrinkScaledFactors) &&
|
||||
flexLine.layout.totalFlexShrinkScaledFactors == 0) {
|
||||
childSize = childFlexBasis + flexShrinkScaledFactor;
|
||||
} else {
|
||||
@@ -906,7 +906,7 @@ static float distributeFreeSpaceSecondPass(
|
||||
availableInnerWidth);
|
||||
}
|
||||
} else if (
|
||||
!yoga::isUndefined(flexLine.layout.remainingFreeSpace) &&
|
||||
yoga::isDefined(flexLine.layout.remainingFreeSpace) &&
|
||||
flexLine.layout.remainingFreeSpace > 0) {
|
||||
flexGrowFactor = currentLineChild->resolveFlexGrow();
|
||||
|
||||
@@ -936,7 +936,7 @@ static float distributeFreeSpaceSecondPass(
|
||||
MeasureMode childMainMeasureMode = MeasureMode::Exactly;
|
||||
|
||||
const auto& childStyle = currentLineChild->getStyle();
|
||||
if (!childStyle.aspectRatio().isUndefined()) {
|
||||
if (childStyle.aspectRatio().isDefined()) {
|
||||
childCrossSize = isMainAxisRow
|
||||
? (childMainSize - marginMain) / childStyle.aspectRatio().unwrap()
|
||||
: (childMainSize - marginMain) * childStyle.aspectRatio().unwrap();
|
||||
@@ -1062,7 +1062,7 @@ static void distributeFreeSpaceFirstPass(
|
||||
-currentLineChild->resolveFlexShrink() * childFlexBasis;
|
||||
|
||||
// Is this child able to shrink?
|
||||
if (!yoga::isUndefined(flexShrinkScaledFactor) &&
|
||||
if (yoga::isDefined(flexShrinkScaledFactor) &&
|
||||
flexShrinkScaledFactor != 0) {
|
||||
baseMainSize = childFlexBasis +
|
||||
flexLine.layout.remainingFreeSpace /
|
||||
@@ -1074,8 +1074,7 @@ static void distributeFreeSpaceFirstPass(
|
||||
baseMainSize,
|
||||
availableInnerMainDim,
|
||||
availableInnerWidth);
|
||||
if (!yoga::isUndefined(baseMainSize) &&
|
||||
!yoga::isUndefined(boundMainSize) &&
|
||||
if (yoga::isDefined(baseMainSize) && yoga::isDefined(boundMainSize) &&
|
||||
baseMainSize != boundMainSize) {
|
||||
// By excluding this item's size and flex factor from remaining, this
|
||||
// item's min/max constraints should also trigger in the second pass
|
||||
@@ -1088,12 +1087,12 @@ static void distributeFreeSpaceFirstPass(
|
||||
}
|
||||
}
|
||||
} else if (
|
||||
!yoga::isUndefined(flexLine.layout.remainingFreeSpace) &&
|
||||
yoga::isDefined(flexLine.layout.remainingFreeSpace) &&
|
||||
flexLine.layout.remainingFreeSpace > 0) {
|
||||
flexGrowFactor = currentLineChild->resolveFlexGrow();
|
||||
|
||||
// Is this child able to grow?
|
||||
if (!yoga::isUndefined(flexGrowFactor) && flexGrowFactor != 0) {
|
||||
if (yoga::isDefined(flexGrowFactor) && flexGrowFactor != 0) {
|
||||
baseMainSize = childFlexBasis +
|
||||
flexLine.layout.remainingFreeSpace /
|
||||
flexLine.layout.totalFlexGrowFactors * flexGrowFactor;
|
||||
@@ -1104,8 +1103,7 @@ static void distributeFreeSpaceFirstPass(
|
||||
availableInnerMainDim,
|
||||
availableInnerWidth);
|
||||
|
||||
if (!yoga::isUndefined(baseMainSize) &&
|
||||
!yoga::isUndefined(boundMainSize) &&
|
||||
if (yoga::isDefined(baseMainSize) && yoga::isDefined(boundMainSize) &&
|
||||
baseMainSize != boundMainSize) {
|
||||
// By excluding this item's size and flex factor from remaining, this
|
||||
// item's min/max constraints should also trigger in the second pass
|
||||
@@ -1219,10 +1217,10 @@ static void justifyMainAxis(
|
||||
// remainingFreeSpace is 0 when min main dimension is not given
|
||||
if (measureModeMainDim == MeasureMode::AtMost &&
|
||||
flexLine.layout.remainingFreeSpace > 0) {
|
||||
if (!style.minDimension(dimension(mainAxis)).isUndefined() &&
|
||||
!yoga::resolveValue(
|
||||
style.minDimension(dimension(mainAxis)), mainAxisownerSize)
|
||||
.isUndefined()) {
|
||||
if (style.minDimension(dimension(mainAxis)).isDefined() &&
|
||||
yoga::resolveValue(
|
||||
style.minDimension(dimension(mainAxis)), mainAxisownerSize)
|
||||
.isDefined()) {
|
||||
// This condition makes sure that if the size of main dimension(after
|
||||
// considering child nodes main dim, leading and trailing padding etc)
|
||||
// falls below min dimension, then the remainingFreeSpace is reassigned
|
||||
@@ -1743,11 +1741,11 @@ static void calculateLayoutImpl(
|
||||
const float maxInnerMainDim =
|
||||
isMainAxisRow ? maxInnerWidth : maxInnerHeight;
|
||||
|
||||
if (!yoga::isUndefined(minInnerMainDim) &&
|
||||
if (yoga::isDefined(minInnerMainDim) &&
|
||||
flexLine.sizeConsumed < minInnerMainDim) {
|
||||
availableInnerMainDim = minInnerMainDim;
|
||||
} else if (
|
||||
!yoga::isUndefined(maxInnerMainDim) &&
|
||||
yoga::isDefined(maxInnerMainDim) &&
|
||||
flexLine.sizeConsumed > maxInnerMainDim) {
|
||||
availableInnerMainDim = maxInnerMainDim;
|
||||
} else {
|
||||
@@ -1755,9 +1753,9 @@ static void calculateLayoutImpl(
|
||||
node->hasErrata(Errata::StretchFlexBasis);
|
||||
|
||||
if (!useLegacyStretchBehaviour &&
|
||||
((!yoga::isUndefined(flexLine.layout.totalFlexGrowFactors) &&
|
||||
((yoga::isDefined(flexLine.layout.totalFlexGrowFactors) &&
|
||||
flexLine.layout.totalFlexGrowFactors == 0) ||
|
||||
(!yoga::isUndefined(node->resolveFlexGrow()) &&
|
||||
(yoga::isDefined(node->resolveFlexGrow()) &&
|
||||
node->resolveFlexGrow() == 0))) {
|
||||
// If we don't have any children to flex or we can't flex the node
|
||||
// itself, space we've used is all space we need. Root node also
|
||||
@@ -1769,7 +1767,7 @@ static void calculateLayoutImpl(
|
||||
}
|
||||
}
|
||||
|
||||
if (!sizeBasedOnContent && !yoga::isUndefined(availableInnerMainDim)) {
|
||||
if (!sizeBasedOnContent && yoga::isDefined(availableInnerMainDim)) {
|
||||
flexLine.layout.remainingFreeSpace =
|
||||
availableInnerMainDim - flexLine.sizeConsumed;
|
||||
} else if (flexLine.sizeConsumed < 0) {
|
||||
@@ -1910,7 +1908,7 @@ static void calculateLayoutImpl(
|
||||
float childMainSize =
|
||||
child->getLayout().measuredDimension(dimension(mainAxis));
|
||||
const auto& childStyle = child->getStyle();
|
||||
float childCrossSize = !childStyle.aspectRatio().isUndefined()
|
||||
float childCrossSize = childStyle.aspectRatio().isDefined()
|
||||
? child->getMarginForAxis(crossAxis, availableInnerWidth) +
|
||||
(isMainAxisRow
|
||||
? childMainSize / childStyle.aspectRatio().unwrap()
|
||||
@@ -2013,7 +2011,7 @@ static void calculateLayoutImpl(
|
||||
if (performLayout && (isNodeFlexWrap || isBaselineLayout(node))) {
|
||||
float crossDimLead = 0;
|
||||
float currentLead = leadingPaddingAndBorderCross;
|
||||
if (!yoga::isUndefined(availableInnerCrossDim)) {
|
||||
if (yoga::isDefined(availableInnerCrossDim)) {
|
||||
const float remainingAlignContentDim =
|
||||
availableInnerCrossDim - totalLineCrossDim;
|
||||
switch (node->getStyle().alignContent()) {
|
||||
@@ -2691,9 +2689,9 @@ void calculateLayout(
|
||||
.unwrap() +
|
||||
node->getMarginForAxis(FlexDirection::Row, ownerWidth));
|
||||
widthMeasureMode = MeasureMode::Exactly;
|
||||
} else if (!yoga::resolveValue(
|
||||
style.maxDimension(Dimension::Width), ownerWidth)
|
||||
.isUndefined()) {
|
||||
} else if (yoga::resolveValue(
|
||||
style.maxDimension(Dimension::Width), ownerWidth)
|
||||
.isDefined()) {
|
||||
width = yoga::resolveValue(style.maxDimension(Dimension::Width), ownerWidth)
|
||||
.unwrap();
|
||||
widthMeasureMode = MeasureMode::AtMost;
|
||||
@@ -2713,9 +2711,9 @@ void calculateLayout(
|
||||
.unwrap() +
|
||||
node->getMarginForAxis(FlexDirection::Column, ownerWidth));
|
||||
heightMeasureMode = MeasureMode::Exactly;
|
||||
} else if (!yoga::resolveValue(
|
||||
style.maxDimension(Dimension::Height), ownerHeight)
|
||||
.isUndefined()) {
|
||||
} else if (yoga::resolveValue(
|
||||
style.maxDimension(Dimension::Height), ownerHeight)
|
||||
.isDefined()) {
|
||||
height =
|
||||
yoga::resolveValue(style.maxDimension(Dimension::Height), ownerHeight)
|
||||
.unwrap();
|
||||
|
@@ -46,7 +46,7 @@ static void appendFloatOptionalIfDefined(
|
||||
std::string& base,
|
||||
const std::string key,
|
||||
const FloatOptional num) {
|
||||
if (!num.isUndefined()) {
|
||||
if (num.isDefined()) {
|
||||
appendFormattedString(base, "%s: %g; ", key.c_str(), num.unwrap());
|
||||
}
|
||||
}
|
||||
@@ -177,7 +177,7 @@ void nodeToString(
|
||||
appendEdges(str, "padding", style.padding());
|
||||
appendEdges(str, "border", style.border());
|
||||
|
||||
if (!style.gap(Gutter::All).isUndefined()) {
|
||||
if (style.gap(Gutter::All).isDefined()) {
|
||||
appendNumberIfNotUndefined(str, "gap", style.gap(Gutter::All));
|
||||
} else {
|
||||
appendNumberIfNotUndefined(str, "column-gap", style.gap(Gutter::Column));
|
||||
|
@@ -60,11 +60,11 @@ CompactValue Node::computeEdgeValueForRow(
|
||||
const Style::Edges& edges,
|
||||
YGEdge rowEdge,
|
||||
YGEdge edge) {
|
||||
if (!edges[rowEdge].isUndefined()) {
|
||||
if (edges[rowEdge].isDefined()) {
|
||||
return edges[rowEdge];
|
||||
} else if (!edges[edge].isUndefined()) {
|
||||
} else if (edges[edge].isDefined()) {
|
||||
return edges[edge];
|
||||
} else if (!edges[YGEdgeHorizontal].isUndefined()) {
|
||||
} else if (edges[YGEdgeHorizontal].isDefined()) {
|
||||
return edges[YGEdgeHorizontal];
|
||||
} else {
|
||||
return edges[YGEdgeAll];
|
||||
@@ -74,9 +74,9 @@ CompactValue Node::computeEdgeValueForRow(
|
||||
CompactValue Node::computeEdgeValueForColumn(
|
||||
const Style::Edges& edges,
|
||||
YGEdge edge) {
|
||||
if (!edges[edge].isUndefined()) {
|
||||
if (edges[edge].isDefined()) {
|
||||
return edges[edge];
|
||||
} else if (!edges[YGEdgeVertical].isUndefined()) {
|
||||
} else if (edges[YGEdgeVertical].isDefined()) {
|
||||
return edges[YGEdgeVertical];
|
||||
} else {
|
||||
return edges[YGEdgeAll];
|
||||
@@ -106,7 +106,7 @@ bool Node::isInlineStartPositionDefined(FlexDirection axis, Direction direction)
|
||||
? computeEdgeValueForRow(style_.position(), YGEdgeStart, startEdge)
|
||||
: computeEdgeValueForColumn(style_.position(), startEdge);
|
||||
|
||||
return !leadingPosition.isUndefined();
|
||||
return leadingPosition.isDefined();
|
||||
}
|
||||
|
||||
bool Node::isInlineEndPositionDefined(FlexDirection axis, Direction direction)
|
||||
@@ -116,7 +116,7 @@ bool Node::isInlineEndPositionDefined(FlexDirection axis, Direction direction)
|
||||
? computeEdgeValueForRow(style_.position(), YGEdgeEnd, endEdge)
|
||||
: computeEdgeValueForColumn(style_.position(), endEdge);
|
||||
|
||||
return !trailingPosition.isUndefined();
|
||||
return trailingPosition.isDefined();
|
||||
}
|
||||
|
||||
float Node::getInlineStartPosition(
|
||||
@@ -511,7 +511,7 @@ void Node::setPosition(
|
||||
}
|
||||
|
||||
YGValue Node::getFlexStartMarginValue(FlexDirection axis) const {
|
||||
if (isRow(axis) && !style_.margin()[YGEdgeStart].isUndefined()) {
|
||||
if (isRow(axis) && style_.margin()[YGEdgeStart].isDefined()) {
|
||||
return style_.margin()[YGEdgeStart];
|
||||
} else {
|
||||
return style_.margin()[flexStartEdge(axis)];
|
||||
@@ -519,7 +519,7 @@ YGValue Node::getFlexStartMarginValue(FlexDirection axis) const {
|
||||
}
|
||||
|
||||
YGValue Node::marginTrailingValue(FlexDirection axis) const {
|
||||
if (isRow(axis) && !style_.margin()[YGEdgeEnd].isUndefined()) {
|
||||
if (isRow(axis) && style_.margin()[YGEdgeEnd].isDefined()) {
|
||||
return style_.margin()[YGEdgeEnd];
|
||||
} else {
|
||||
return style_.margin()[flexEndEdge(axis)];
|
||||
@@ -531,7 +531,7 @@ YGValue Node::resolveFlexBasisPtr() const {
|
||||
if (flexBasis.unit != YGUnitAuto && flexBasis.unit != YGUnitUndefined) {
|
||||
return flexBasis;
|
||||
}
|
||||
if (!style_.flex().isUndefined() && style_.flex().unwrap() > 0.0f) {
|
||||
if (style_.flex().isDefined() && style_.flex().unwrap() > 0.0f) {
|
||||
return config_->useWebDefaults() ? YGValueAuto : YGValueZero;
|
||||
}
|
||||
return YGValueAuto;
|
||||
@@ -540,7 +540,7 @@ YGValue Node::resolveFlexBasisPtr() const {
|
||||
void Node::resolveDimension() {
|
||||
const Style& style = getStyle();
|
||||
for (auto dim : {Dimension::Width, Dimension::Height}) {
|
||||
if (!style.maxDimension(dim).isUndefined() &&
|
||||
if (style.maxDimension(dim).isDefined() &&
|
||||
yoga::inexactEquals(style.maxDimension(dim), style.minDimension(dim))) {
|
||||
resolvedDimensions_[yoga::to_underlying(dim)] = style.maxDimension(dim);
|
||||
} else {
|
||||
@@ -598,10 +598,10 @@ float Node::resolveFlexGrow() const {
|
||||
if (owner_ == nullptr) {
|
||||
return 0.0;
|
||||
}
|
||||
if (!style_.flexGrow().isUndefined()) {
|
||||
if (style_.flexGrow().isDefined()) {
|
||||
return style_.flexGrow().unwrap();
|
||||
}
|
||||
if (!style_.flex().isUndefined() && style_.flex().unwrap() > 0.0f) {
|
||||
if (style_.flex().isDefined() && style_.flex().unwrap() > 0.0f) {
|
||||
return style_.flex().unwrap();
|
||||
}
|
||||
return Style::DefaultFlexGrow;
|
||||
@@ -611,10 +611,10 @@ float Node::resolveFlexShrink() const {
|
||||
if (owner_ == nullptr) {
|
||||
return 0.0;
|
||||
}
|
||||
if (!style_.flexShrink().isUndefined()) {
|
||||
if (style_.flexShrink().isDefined()) {
|
||||
return style_.flexShrink().unwrap();
|
||||
}
|
||||
if (!config_->useWebDefaults() && !style_.flex().isUndefined() &&
|
||||
if (!config_->useWebDefaults() && style_.flex().isDefined() &&
|
||||
style_.flex().unwrap() < 0.0f) {
|
||||
return -style_.flex().unwrap();
|
||||
}
|
||||
|
@@ -19,15 +19,19 @@ constexpr bool isUndefined(auto value) {
|
||||
return value != value;
|
||||
}
|
||||
|
||||
constexpr bool isDefined(auto value) {
|
||||
return !isUndefined(value);
|
||||
}
|
||||
|
||||
constexpr auto maxOrDefined(auto a, auto b) {
|
||||
if (!yoga::isUndefined(a) && !yoga::isUndefined(b)) {
|
||||
if (yoga::isDefined(a) && yoga::isDefined(b)) {
|
||||
return std::max(a, b);
|
||||
}
|
||||
return yoga::isUndefined(a) ? b : a;
|
||||
}
|
||||
|
||||
constexpr auto minOrDefined(auto a, auto b) {
|
||||
if (!yoga::isUndefined(a) && !yoga::isUndefined(b)) {
|
||||
if (yoga::isDefined(a) && yoga::isDefined(b)) {
|
||||
return std::min(a, b);
|
||||
}
|
||||
|
||||
@@ -37,14 +41,14 @@ constexpr auto minOrDefined(auto a, auto b) {
|
||||
// Custom equality functions using a hardcoded epsilon of 0.0001f, or returning
|
||||
// true if both floats are NaN.
|
||||
inline bool inexactEquals(float a, float b) {
|
||||
if (!yoga::isUndefined(a) && !yoga::isUndefined(b)) {
|
||||
if (yoga::isDefined(a) && yoga::isDefined(b)) {
|
||||
return std::abs(a - b) < 0.0001f;
|
||||
}
|
||||
return yoga::isUndefined(a) && yoga::isUndefined(b);
|
||||
}
|
||||
|
||||
inline bool inexactEquals(double a, double b) {
|
||||
if (!yoga::isUndefined(a) && !yoga::isUndefined(b)) {
|
||||
if (yoga::isDefined(a) && yoga::isDefined(b)) {
|
||||
return std::abs(a - b) < 0.0001;
|
||||
}
|
||||
return yoga::isUndefined(a) && yoga::isUndefined(b);
|
||||
|
@@ -32,6 +32,10 @@ struct FloatOptional {
|
||||
constexpr bool isUndefined() const {
|
||||
return yoga::isUndefined(value_);
|
||||
}
|
||||
|
||||
constexpr bool isDefined() const {
|
||||
return yoga::isDefined(value_);
|
||||
}
|
||||
};
|
||||
|
||||
// operators take FloatOptional by value, as it is a 32bit value
|
||||
|
@@ -137,6 +137,10 @@ class YG_EXPORT CompactValue {
|
||||
repr_ != ZERO_BITS_PERCENT && std::isnan(yoga::bit_cast<float>(repr_)));
|
||||
}
|
||||
|
||||
bool isDefined() const noexcept {
|
||||
return !isUndefined();
|
||||
}
|
||||
|
||||
bool isAuto() const noexcept {
|
||||
return repr_ == AUTO_BITS;
|
||||
}
|
||||
|
@@ -312,7 +312,7 @@ class YG_EXPORT Style {
|
||||
}
|
||||
|
||||
CompactValue resolveColumnGap() const {
|
||||
if (!gap_[yoga::to_underlying(Gutter::Column)].isUndefined()) {
|
||||
if (gap_[yoga::to_underlying(Gutter::Column)].isDefined()) {
|
||||
return gap_[yoga::to_underlying(Gutter::Column)];
|
||||
} else {
|
||||
return gap_[yoga::to_underlying(Gutter::All)];
|
||||
@@ -320,7 +320,7 @@ class YG_EXPORT Style {
|
||||
}
|
||||
|
||||
CompactValue resolveRowGap() const {
|
||||
if (!gap_[yoga::to_underlying(Gutter::Row)].isUndefined()) {
|
||||
if (gap_[yoga::to_underlying(Gutter::Row)].isDefined()) {
|
||||
return gap_[yoga::to_underlying(Gutter::Row)];
|
||||
} else {
|
||||
return gap_[yoga::to_underlying(Gutter::All)];
|
||||
|
Reference in New Issue
Block a user