This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/iOS/Pod/Classes/Shader/DoricStackNode.m

102 lines
3.2 KiB
Mathematica
Raw Normal View History

2019-07-30 15:20:11 +08:00
//
// DoricStackNode.m
// Doric
//
// Created by pengfei.zhou on 2019/7/30.
//
#import "DoricStackNode.h"
2019-07-31 18:13:22 +08:00
#import "DoricUtil.h"
2019-07-30 15:20:11 +08:00
@implementation DoricStackNode
2019-07-31 14:18:20 +08:00
- (instancetype)init {
if (self = [super init]){
_gravity = 0;
}
return self;
}
- (void)measureByParent:(DoricGroupNode *)parent {
DoricLayoutDesc widthSpec = self.layoutParams.width;
DoricLayoutDesc heightSpec = self.layoutParams.height;
CGFloat maxWidth = 0,maxHeight = 0;
for (DoricViewNode *child in self.indexedChildren) {
[child measureByParent:self];
2019-07-31 17:43:26 +08:00
CGFloat placeWidth = child.measuredWidth;
CGFloat placeHeight = child.measuredHeight;
2019-07-31 14:18:20 +08:00
maxWidth = MAX(maxWidth, placeWidth);
maxHeight = MAX(maxHeight, placeHeight);
}
self.desiredWidth = maxWidth;
self.desiredHeight = maxHeight;
if (widthSpec == LAYOUT_WRAP_CONTENT) {
2019-07-31 17:43:26 +08:00
self.width = maxWidth;
2019-07-31 14:18:20 +08:00
}
if (heightSpec == LAYOUT_WRAP_CONTENT) {
2019-07-31 17:43:26 +08:00
self.height = maxHeight;
2019-07-31 14:18:20 +08:00
}
2019-07-31 17:43:26 +08:00
}
- (LayoutParams *)generateDefaultLayoutParams {
return [[StackLayoutParams alloc] init];
2019-07-31 14:18:20 +08:00
}
2019-07-31 18:13:22 +08:00
- (void)blendChild:(DoricViewNode *)child layoutConfig:(NSDictionary *)layoutconfig {
[super blendChild:child layoutConfig:layoutconfig];
if (![child.layoutParams isKindOfClass:StackLayoutParams.class]) {
DoricLog(@"blend Stack child error,layout params not match");
return;
}
StackLayoutParams *params = (StackLayoutParams *)child.layoutParams;
// NSDictionary *margin = [layoutconfig objectForKey:@"margin"];
// if (margin) {
// params.margin.top = [(NSNumber *)[margin objectForKey:@"top"] floatValue];
// params.margin.left = [(NSNumber *)[margin objectForKey:@"left"] floatValue];
// params.margin.right = [(NSNumber *)[margin objectForKey:@"right"] floatValue];
// params.margin.bottom = [(NSNumber *)[margin objectForKey:@"bottom"] floatValue];
// }
NSNumber *alignment = [layoutconfig objectForKey:@"alignment"];
if (alignment) {
params.alignment = [alignment integerValue];
}
}
2019-07-31 14:18:20 +08:00
- (void)layoutByParent:(DoricGroupNode *)parent {
for (DoricViewNode *child in self.indexedChildren) {
if (child.layoutParams.width == LAYOUT_MATCH_PARENT) {
2019-07-31 17:43:26 +08:00
child.width = self.width;
2019-07-31 14:18:20 +08:00
}
if (child.layoutParams.height == LAYOUT_MATCH_PARENT) {
2019-07-31 17:43:26 +08:00
child.height = self.height;
}
DoricGravity gravity = self.gravity;
if ([child.layoutParams isKindOfClass:StackLayoutParams.class]) {
2019-07-31 18:13:22 +08:00
StackLayoutParams *layoutParams = (StackLayoutParams *)child.layoutParams;
2019-07-31 17:43:26 +08:00
gravity |= layoutParams.alignment;
2019-07-31 14:18:20 +08:00
}
2019-07-31 17:43:26 +08:00
2019-07-31 14:18:20 +08:00
if ((gravity & LEFT) == LEFT) {
2019-07-31 17:43:26 +08:00
child.left = self.left;
2019-07-31 14:18:20 +08:00
}
if ((gravity & RIGHT) == RIGHT) {
2019-07-31 17:43:26 +08:00
child.right = self.right;
2019-07-31 14:18:20 +08:00
}
if ((gravity & TOP) == TOP) {
2019-07-31 17:43:26 +08:00
child.top = self.top;
2019-07-31 14:18:20 +08:00
}
if ((gravity & BOTTOM) == BOTTOM) {
2019-07-31 17:43:26 +08:00
child.bottom = self.bottom;
2019-07-31 14:18:20 +08:00
}
if ((gravity & CENTER_X) == CENTER_X) {
2019-07-31 17:43:26 +08:00
child.centerX = self.centerX;
2019-07-31 14:18:20 +08:00
}
if ((gravity & CENTER_Y) == CENTER_Y) {
2019-07-31 17:43:26 +08:00
child.centerY = self.centerY;
2019-07-31 14:18:20 +08:00
}
2019-07-31 18:13:22 +08:00
[child layoutByParent:self];
2019-07-31 14:18:20 +08:00
}
}
2019-07-30 15:20:11 +08:00
@end