mirror of
https://github.com/status-im/react-native.git
synced 2025-02-24 07:08:27 +00:00
Summary: All code styles are terribly ugly. We have the only choise - choise something and embrace it. This particular code style was borrowed from a neibour Fabric-friendly project because it follows established Facebook guides and respects client-side traditions. Reviewed By: mdvacca Differential Revision: D10218598 fbshipit-source-id: 8c4cf6713c07768566dadef479191661c79988f0
41 lines
1.1 KiB
C++
41 lines
1.1 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 "ViewShadowNode.h"
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
const char ViewComponentName[] = "View";
|
|
|
|
bool ViewShadowNode::isLayoutOnly() const {
|
|
#ifdef ANDROID
|
|
// This feature is not properly tested on Android yet.
|
|
return false;
|
|
#else
|
|
const auto &viewProps = *std::static_pointer_cast<const ViewProps>(props_);
|
|
|
|
return
|
|
// Event listeners
|
|
!viewProps.onLayout &&
|
|
// Generic Props
|
|
viewProps.nativeId.empty() &&
|
|
// Accessibility Props
|
|
!viewProps.accessible &&
|
|
// Style Props
|
|
viewProps.yogaStyle.overflow == YGOverflowVisible &&
|
|
viewProps.opacity == 1.0 && !viewProps.backgroundColor &&
|
|
!viewProps.foregroundColor && !viewProps.shadowColor &&
|
|
viewProps.transform == Transform{} && viewProps.zIndex == 0 &&
|
|
// Layout Metrics
|
|
getLayoutMetrics().borderWidth == EdgeInsets{};
|
|
#endif
|
|
}
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|