123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /*
- * 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 "ScrollViewShadowNode.h"
- #include <react/core/LayoutMetrics.h>
- namespace facebook {
- namespace react {
- const char ScrollViewComponentName[] = "ScrollView";
- void ScrollViewShadowNode::updateStateIfNeeded() {
- ensureUnsealed();
- auto contentBoundingRect = Rect{};
- for (const auto &childNode : getLayoutableChildNodes()) {
- contentBoundingRect.unionInPlace(childNode->getLayoutMetrics().frame);
- }
- auto state = getStateData();
- if (state.contentBoundingRect != contentBoundingRect) {
- state.contentBoundingRect = contentBoundingRect;
- setStateData(std::move(state));
- }
- }
- #pragma mark - LayoutableShadowNode
- void ScrollViewShadowNode::layout(LayoutContext layoutContext) {
- ConcreteViewShadowNode::layout(layoutContext);
- updateStateIfNeeded();
- }
- Transform ScrollViewShadowNode::getTransform() const {
- auto transform = ConcreteViewShadowNode::getTransform();
- auto contentOffset = getStateData().contentOffset;
- return transform *
- Transform::Translate(-contentOffset.x, -contentOffset.y, 0);
- }
- } // namespace react
- } // namespace facebook
|