2015-03-23 20:28:42 +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.
|
|
|
|
*/
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2015-04-23 15:04:16 +00:00
|
|
|
#import "Layout.h"
|
2015-08-06 22:44:15 +00:00
|
|
|
#import "RCTComponent.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
@class RCTSparseArray;
|
|
|
|
|
2015-03-01 23:33:55 +00:00
|
|
|
typedef NS_ENUM(NSUInteger, RCTUpdateLifecycle) {
|
|
|
|
RCTUpdateLifecycleUninitialized = 0,
|
|
|
|
RCTUpdateLifecycleComputed,
|
|
|
|
RCTUpdateLifecycleDirtied,
|
2015-02-20 04:10:52 +00:00
|
|
|
};
|
|
|
|
|
2015-06-01 15:34:09 +00:00
|
|
|
typedef void (^RCTApplierBlock)(RCTSparseArray *viewRegistry);
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ShadowView tree mirrors RCT view tree. Every node is highly stateful.
|
|
|
|
* 1. A node is in one of three lifecycles: uninitialized, computed, dirtied.
|
|
|
|
* 1. RCTBridge may call any of the padding/margin/width/height/top/left setters. A setter would dirty
|
|
|
|
* the node and all of its ancestors.
|
|
|
|
* 2. At the end of each Bridge transaction, we call collectUpdatedFrames:widthConstraint:heightConstraint
|
|
|
|
* at the root node to recursively lay out the entire hierarchy.
|
|
|
|
* 3. If a node is "computed" and the constraint passed from above is identical to the constraint used to
|
|
|
|
* perform the last computation, we skip laying out the subtree entirely.
|
|
|
|
*/
|
2015-08-06 22:44:15 +00:00
|
|
|
@interface RCTShadowView : NSObject <RCTComponent>
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
@property (nonatomic, weak, readonly) RCTShadowView *superview;
|
|
|
|
@property (nonatomic, assign, readonly) css_node_t *cssNode;
|
2015-03-17 10:51:58 +00:00
|
|
|
@property (nonatomic, copy) NSString *viewName;
|
2015-03-08 18:22:08 +00:00
|
|
|
@property (nonatomic, strong) UIColor *backgroundColor; // Used to propagate to children
|
2015-03-01 23:33:55 +00:00
|
|
|
@property (nonatomic, assign) RCTUpdateLifecycle layoutLifecycle;
|
Added mechanism for directly mapping JS event handlers to blocks
Summary:
Currently, the system for mapping JS event handlers to blocks is quite clean on the JS side, but is clunky on the native side. The event property is passed as a boolean, which can then be checked by the native side, and if true, the native side is supposed to send an event via the event dispatcher.
This diff adds the facility to declare the property as a block instead. This means that the event side can simply call the block, and it will automatically send the event. Because the blocks for bubbling and direct events are named differently, we can also use this to generate the event registration data and get rid of the arrays of event names.
The name of the event is inferred from the property name, which means that the property for an event called "load" must be called `onLoad` or the mapping won't work. This can be optionally remapped to a different property name on the view itself if necessary, e.g.
RCT_REMAP_VIEW_PROPERTY(onLoad, loadEventBlock, RCTDirectEventBlock)
If you don't want to use this mechanism then for now it is still possible to declare the property as a BOOL instead and use the old mechanism (this approach is now deprecated however, and may eventually be removed altogether).
2015-09-02 12:58:10 +00:00
|
|
|
@property (nonatomic, copy) RCTDirectEventBlock onLayout;
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* isNewView - Used to track the first time the view is introduced into the hierarchy. It is initialized YES, then is
|
|
|
|
* set to NO in RCTUIManager after the layout pass is done and all frames have been extracted to be applied to the
|
|
|
|
* corresponding UIViews.
|
|
|
|
*/
|
|
|
|
@property (nonatomic, assign, getter=isNewView) BOOL newView;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Position and dimensions.
|
|
|
|
* Defaults to { 0, 0, NAN, NAN }.
|
|
|
|
*/
|
|
|
|
@property (nonatomic, assign) CGFloat top;
|
|
|
|
@property (nonatomic, assign) CGFloat left;
|
2015-03-17 10:51:58 +00:00
|
|
|
@property (nonatomic, assign) CGFloat bottom;
|
|
|
|
@property (nonatomic, assign) CGFloat right;
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
@property (nonatomic, assign) CGFloat width;
|
|
|
|
@property (nonatomic, assign) CGFloat height;
|
|
|
|
@property (nonatomic, assign) CGRect frame;
|
|
|
|
|
|
|
|
- (void)setTopLeft:(CGPoint)topLeft;
|
|
|
|
- (void)setSize:(CGSize)size;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Border. Defaults to { 0, 0, 0, 0 }.
|
|
|
|
*/
|
2015-07-31 18:23:29 +00:00
|
|
|
@property (nonatomic, assign) CGFloat borderWidth;
|
2015-03-26 04:29:28 +00:00
|
|
|
@property (nonatomic, assign) CGFloat borderTopWidth;
|
|
|
|
@property (nonatomic, assign) CGFloat borderLeftWidth;
|
|
|
|
@property (nonatomic, assign) CGFloat borderBottomWidth;
|
|
|
|
@property (nonatomic, assign) CGFloat borderRightWidth;
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Margin. Defaults to { 0, 0, 0, 0 }.
|
|
|
|
*/
|
2015-07-31 18:23:29 +00:00
|
|
|
@property (nonatomic, assign) CGFloat margin;
|
|
|
|
@property (nonatomic, assign) CGFloat marginVertical;
|
|
|
|
@property (nonatomic, assign) CGFloat marginHorizontal;
|
2015-02-20 04:10:52 +00:00
|
|
|
@property (nonatomic, assign) CGFloat marginTop;
|
|
|
|
@property (nonatomic, assign) CGFloat marginLeft;
|
|
|
|
@property (nonatomic, assign) CGFloat marginBottom;
|
|
|
|
@property (nonatomic, assign) CGFloat marginRight;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Padding. Defaults to { 0, 0, 0, 0 }.
|
|
|
|
*/
|
2015-07-31 18:23:29 +00:00
|
|
|
@property (nonatomic, assign) CGFloat padding;
|
|
|
|
@property (nonatomic, assign) CGFloat paddingVertical;
|
|
|
|
@property (nonatomic, assign) CGFloat paddingHorizontal;
|
2015-02-20 04:10:52 +00:00
|
|
|
@property (nonatomic, assign) CGFloat paddingTop;
|
|
|
|
@property (nonatomic, assign) CGFloat paddingLeft;
|
|
|
|
@property (nonatomic, assign) CGFloat paddingBottom;
|
|
|
|
@property (nonatomic, assign) CGFloat paddingRight;
|
|
|
|
|
|
|
|
- (UIEdgeInsets)paddingAsInsets;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Flexbox properties. All zero/disabled by default
|
|
|
|
*/
|
|
|
|
@property (nonatomic, assign) css_flex_direction_t flexDirection;
|
|
|
|
@property (nonatomic, assign) css_justify_t justifyContent;
|
|
|
|
@property (nonatomic, assign) css_align_t alignSelf;
|
|
|
|
@property (nonatomic, assign) css_align_t alignItems;
|
2015-08-06 22:44:15 +00:00
|
|
|
@property (nonatomic, assign) css_position_type_t position;
|
2015-02-20 04:10:52 +00:00
|
|
|
@property (nonatomic, assign) css_wrap_type_t flexWrap;
|
|
|
|
@property (nonatomic, assign) CGFloat flex;
|
|
|
|
|
2015-03-01 23:33:55 +00:00
|
|
|
/**
|
|
|
|
* Calculate property changes that need to be propagated to the view.
|
|
|
|
* The applierBlocks set contains RCTApplierBlock functions that must be applied
|
|
|
|
* on the main thread in order to update the view.
|
|
|
|
*/
|
2015-06-01 15:34:09 +00:00
|
|
|
- (void)collectUpdatedProperties:(NSMutableSet *)applierBlocks
|
|
|
|
parentProperties:(NSDictionary *)parentProperties;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Process the updated properties and apply them to view. Shadow view classes
|
|
|
|
* that add additional propagating properties should override this method.
|
|
|
|
*/
|
|
|
|
- (NSDictionary *)processUpdatedProperties:(NSMutableSet *)applierBlocks
|
|
|
|
parentProperties:(NSDictionary *)parentProperties NS_REQUIRES_SUPER;
|
2015-03-01 23:33:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Calculate all views whose frame needs updating after layout has been calculated.
|
|
|
|
* The viewsWithNewFrame set contains the reactTags of the views that need updating.
|
|
|
|
*/
|
2015-06-01 15:34:09 +00:00
|
|
|
- (void)collectRootUpdatedFrames:(NSMutableSet *)viewsWithNewFrame
|
|
|
|
parentConstraint:(CGSize)parentConstraint;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Recursively apply layout to children.
|
|
|
|
*/
|
|
|
|
- (void)applyLayoutNode:(css_node_t *)node
|
|
|
|
viewsWithNewFrame:(NSMutableSet *)viewsWithNewFrame
|
|
|
|
absolutePosition:(CGPoint)absolutePosition NS_REQUIRES_SUPER;
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-03-01 23:33:55 +00:00
|
|
|
/**
|
|
|
|
* The following are implementation details exposed to subclasses. Do not call them directly
|
|
|
|
*/
|
2015-06-01 15:34:09 +00:00
|
|
|
- (void)fillCSSNode:(css_node_t *)node NS_REQUIRES_SUPER;
|
|
|
|
- (void)dirtyLayout NS_REQUIRES_SUPER;
|
2015-02-20 04:10:52 +00:00
|
|
|
- (BOOL)isLayoutDirty;
|
|
|
|
|
2015-06-01 15:34:09 +00:00
|
|
|
- (void)dirtyPropagation NS_REQUIRES_SUPER;
|
2015-02-20 04:10:52 +00:00
|
|
|
- (BOOL)isPropagationDirty;
|
|
|
|
|
2015-06-01 15:34:09 +00:00
|
|
|
- (void)dirtyText NS_REQUIRES_SUPER;
|
|
|
|
- (void)setTextComputed NS_REQUIRES_SUPER;
|
2015-02-20 04:10:52 +00:00
|
|
|
- (BOOL)isTextDirty;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Triggers a recalculation of the shadow view's layout.
|
|
|
|
*/
|
2015-06-01 15:34:09 +00:00
|
|
|
- (void)updateLayout NS_REQUIRES_SUPER;
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Computes the recursive offset, meaning the sum of all descendant offsets -
|
|
|
|
* this is the sum of all positions inset from parents. This is not merely the
|
|
|
|
* sum of `top`/`left`s, as this function uses the *actual* positions of
|
|
|
|
* children, not the style specified positions - it computes this based on the
|
|
|
|
* resulting layout. It does not yet compensate for native scroll view insets or
|
2015-03-25 00:37:03 +00:00
|
|
|
* transforms or anchor points.
|
2015-02-20 04:10:52 +00:00
|
|
|
*/
|
2015-03-25 00:37:03 +00:00
|
|
|
- (CGRect)measureLayoutRelativeToAncestor:(RCTShadowView *)ancestor;
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
@end
|