2016-03-21 10:20:49 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*/
|
|
|
|
|
2016-06-21 18:51:49 +00:00
|
|
|
#import "RCTI18nUtil.h"
|
2016-03-21 10:20:49 +00:00
|
|
|
#import "RCTRootShadowView.h"
|
|
|
|
|
|
|
|
@implementation RCTRootShadowView
|
|
|
|
|
2016-06-21 18:51:49 +00:00
|
|
|
/**
|
|
|
|
* Init the RCTRootShadowView with RTL status.
|
|
|
|
* Returns a RTL CSS layout if isRTL is true (Default is LTR CSS layout).
|
|
|
|
*/
|
|
|
|
- (instancetype)init
|
|
|
|
{
|
|
|
|
self = [super init];
|
|
|
|
if (self) {
|
|
|
|
if ([[RCTI18nUtil sharedInstance] isRTL]) {
|
|
|
|
self.cssNode->style.direction = CSS_DIRECTION_RTL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2016-03-21 10:20:49 +00:00
|
|
|
- (void)applySizeConstraints
|
|
|
|
{
|
|
|
|
switch (_sizeFlexibility) {
|
|
|
|
case RCTRootViewSizeFlexibilityNone:
|
|
|
|
break;
|
|
|
|
case RCTRootViewSizeFlexibilityWidth:
|
|
|
|
self.cssNode->style.dimensions[CSS_WIDTH] = CSS_UNDEFINED;
|
|
|
|
break;
|
|
|
|
case RCTRootViewSizeFlexibilityHeight:
|
|
|
|
self.cssNode->style.dimensions[CSS_HEIGHT] = CSS_UNDEFINED;
|
|
|
|
break;
|
|
|
|
case RCTRootViewSizeFlexibilityWidthAndHeight:
|
|
|
|
self.cssNode->style.dimensions[CSS_WIDTH] = CSS_UNDEFINED;
|
|
|
|
self.cssNode->style.dimensions[CSS_HEIGHT] = CSS_UNDEFINED;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSSet<RCTShadowView *> *)collectViewsWithUpdatedFrames
|
|
|
|
{
|
|
|
|
[self applySizeConstraints];
|
|
|
|
|
|
|
|
[self fillCSSNode:self.cssNode];
|
|
|
|
layoutNode(self.cssNode, CSS_UNDEFINED, CSS_UNDEFINED, CSS_DIRECTION_INHERIT);
|
|
|
|
|
|
|
|
NSMutableSet<RCTShadowView *> *viewsWithNewFrame = [NSMutableSet set];
|
|
|
|
[self applyLayoutNode:self.cssNode viewsWithNewFrame:viewsWithNewFrame absolutePosition:CGPointZero];
|
|
|
|
return viewsWithNewFrame;
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|