Support `display: none;` style (iOS)

Summary:
Yes, `display: none;` did not work on iOS before this commit.
Now it "just works". It can be useful when some view needs to be hidden temporary and efficiently.

Reviewed By: javache

Differential Revision: D5173936

fbshipit-source-id: 83a03fff04dd3a872d7dd6bf673189f932906776
This commit is contained in:
Valentin Shergin 2017-06-20 17:12:52 -07:00 committed by Facebook Github Bot
parent ac3f345b07
commit a04322fa1b
3 changed files with 25 additions and 0 deletions

View File

@ -257,6 +257,7 @@ RCT_VIEW_BORDER_RADIUS_PROPERTY(TopRight)
RCT_VIEW_BORDER_RADIUS_PROPERTY(BottomLeft)
RCT_VIEW_BORDER_RADIUS_PROPERTY(BottomRight)
RCT_REMAP_VIEW_PROPERTY(display, reactDisplay, YGDisplay)
RCT_REMAP_VIEW_PROPERTY(zIndex, reactZIndex, NSInteger)
#pragma mark - ShadowView properties

View File

@ -10,6 +10,7 @@
#import <UIKit/UIKit.h>
#import <React/RCTComponent.h>
#import <yoga/YGEnums.h>
@class RCTShadowView;
@ -30,6 +31,13 @@
*/
@property (nonatomic, assign) UIUserInterfaceLayoutDirection reactLayoutDirection;
/**
* Yoga `display` style property. Can be `flex` or `none`.
* Defaults to `flex`.
* May be used to temporary hide the view in a very efficient way.
*/
@property (nonatomic, assign) YGDisplay reactDisplay;
/**
* The z-index of the view.
*/

View File

@ -87,6 +87,20 @@
[subview removeFromSuperview];
}
#pragma mark - Display
- (YGDisplay)reactDisplay
{
return self.isHidden ? YGDisplayNone : YGDisplayFlex;
}
- (void)setReactDisplay:(YGDisplay)display
{
self.hidden = display == YGDisplayNone;
}
#pragma mark - Layout Direction
- (UIUserInterfaceLayoutDirection)reactLayoutDirection
{
if ([self respondsToSelector:@selector(semanticContentAttribute)]) {
@ -108,6 +122,8 @@
}
}
#pragma mark - zIndex
- (NSInteger)reactZIndex
{
return self.layer.zPosition;