2019-07-30 15:20:11 +08:00
|
|
|
//
|
|
|
|
// DoricViewNode.h
|
|
|
|
// Doric
|
|
|
|
//
|
|
|
|
// Created by pengfei.zhou on 2019/7/30.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "DoricContextHolder.h"
|
2019-07-30 21:05:27 +08:00
|
|
|
#import "DoricViewContainer.h"
|
2019-07-30 15:20:11 +08:00
|
|
|
|
|
|
|
#import "UIView+Doric.h"
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class DoricGroupNode;
|
|
|
|
|
2019-10-12 14:48:19 +08:00
|
|
|
@interface DoricViewNode <V:UIView *> : DoricContextHolder
|
2019-07-30 15:20:11 +08:00
|
|
|
|
2019-10-12 14:48:19 +08:00
|
|
|
@property(nonatomic, strong) V view;
|
2019-07-30 15:20:11 +08:00
|
|
|
|
2019-10-12 14:48:19 +08:00
|
|
|
@property(nonatomic, weak) DoricGroupNode *parent;
|
|
|
|
@property(nonatomic) NSInteger index;
|
2019-07-30 21:05:27 +08:00
|
|
|
|
2019-10-12 14:48:19 +08:00
|
|
|
@property(nonatomic, strong) NSString *viewId;
|
2019-07-30 21:05:27 +08:00
|
|
|
|
2019-10-12 14:48:19 +08:00
|
|
|
@property(nonatomic, strong) LayoutParams *layoutParams;
|
2019-07-30 21:05:27 +08:00
|
|
|
|
2019-10-12 14:48:19 +08:00
|
|
|
@property(nonatomic, strong, readonly) NSArray<NSString *> *idList;
|
2019-07-30 15:20:11 +08:00
|
|
|
|
2019-07-31 14:18:20 +08:00
|
|
|
|
2019-10-12 14:48:19 +08:00
|
|
|
@property(nonatomic) CGFloat x;
|
|
|
|
@property(nonatomic) CGFloat y;
|
|
|
|
@property(nonatomic) CGFloat width;
|
|
|
|
@property(nonatomic) CGFloat height;
|
|
|
|
@property(nonatomic) CGFloat centerX;
|
|
|
|
@property(nonatomic) CGFloat centerY;
|
|
|
|
@property(nonatomic) CGFloat top;
|
|
|
|
@property(nonatomic) CGFloat left;
|
|
|
|
@property(nonatomic) CGFloat right;
|
|
|
|
@property(nonatomic) CGFloat bottom;
|
|
|
|
@property(nonatomic, readonly) CGFloat measuredWidth;
|
|
|
|
@property(nonatomic, readonly) CGFloat measuredHeight;
|
2019-07-31 14:18:20 +08:00
|
|
|
|
2019-07-30 15:20:11 +08:00
|
|
|
- (V)build:(NSDictionary *)props;
|
|
|
|
|
|
|
|
- (void)blend:(NSDictionary *)props;
|
|
|
|
|
|
|
|
- (void)blendView:(V)view forPropName:(NSString *)name propValue:(id)prop;
|
|
|
|
|
2019-10-12 14:48:19 +08:00
|
|
|
- (void)callJSResponse:(NSString *)funcId, ...;
|
2019-07-30 21:05:27 +08:00
|
|
|
|
2019-07-31 14:18:20 +08:00
|
|
|
- (void)measureByParent:(DoricGroupNode *)parent;
|
|
|
|
|
|
|
|
- (void)layoutByParent:(DoricGroupNode *)parent;
|
|
|
|
|
2019-07-30 21:05:27 +08:00
|
|
|
+ (DoricViewNode *)create:(DoricContext *)context withType:(NSString *)type;
|
2019-08-06 20:06:34 +08:00
|
|
|
|
|
|
|
- (void)requestLayout;
|
2019-07-30 15:20:11 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|