2019-12-04 13:29:26 +08:00
|
|
|
/*
|
|
|
|
* Copyright [2019] [Doric.Pub]
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
//
|
|
|
|
// Created by pengfei.zhou on 2019/11/15.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "DoricSuperNode.h"
|
|
|
|
#import "DoricExtensions.h"
|
|
|
|
|
|
|
|
@interface DoricSuperNode ()
|
|
|
|
@property(nonatomic, strong) NSMutableDictionary <NSString *, NSMutableDictionary *> *subNodes;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation DoricSuperNode
|
|
|
|
- (instancetype)initWithContext:(DoricContext *)doricContext {
|
|
|
|
if (self = [super initWithContext:doricContext]) {
|
|
|
|
_subNodes = [NSMutableDictionary new];
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)blendView:(UIView *)view forPropName:(NSString *)name propValue:(id)prop {
|
|
|
|
if ([@"subviews" isEqualToString:name]) {
|
|
|
|
NSArray *subviews = prop;
|
|
|
|
for (NSMutableDictionary *subModel in subviews) {
|
|
|
|
[self mixinSubNode:subModel];
|
|
|
|
[self blendSubNode:subModel];
|
|
|
|
}
|
2021-06-15 16:06:57 +08:00
|
|
|
self.view.doricLayout.resolved = NO;
|
2019-12-04 13:29:26 +08:00
|
|
|
} else {
|
|
|
|
[super blendView:view forPropName:name propValue:prop];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)mixinSubNode:(NSMutableDictionary *)dictionary {
|
|
|
|
NSString *viewId = dictionary[@"id"];
|
|
|
|
NSMutableDictionary *oldModel = self.subNodes[viewId];
|
|
|
|
if (oldModel) {
|
|
|
|
[self mixin:dictionary to:oldModel];
|
|
|
|
} else {
|
|
|
|
self.subNodes[viewId] = dictionary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)mixin:(NSDictionary *)srcModel to:(NSMutableDictionary *)targetModel {
|
|
|
|
NSDictionary *srcProp = srcModel[@"props"];
|
|
|
|
NSMutableDictionary *targetProp = targetModel[@"props"];
|
|
|
|
[srcProp enumerateKeysAndObjectsUsingBlock:^(NSString *key, id obj, BOOL *stop) {
|
|
|
|
if (![@"subviews" isEqualToString:key]) {
|
|
|
|
targetProp[key] = obj;
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)recursiveMixin:(NSDictionary *)srcModel to:(NSMutableDictionary *)targetModel {
|
|
|
|
NSDictionary *srcProp = srcModel[@"props"];
|
|
|
|
NSMutableDictionary *targetProp = targetModel[@"props"];
|
|
|
|
NSMutableArray *targetOri = targetProp[@"subviews"];
|
2021-09-30 13:57:52 +08:00
|
|
|
NSArray *srcSubviews = srcProp[@"subviews"];
|
|
|
|
if (srcSubviews && srcSubviews.count > 0) {
|
|
|
|
for (NSDictionary *subview in srcSubviews) {
|
|
|
|
NSString *viewId = subview[@"id"];
|
|
|
|
__block NSMutableDictionary *viewModel = nil;
|
|
|
|
[targetOri enumerateObjectsUsingBlock:^(NSMutableDictionary *obj, NSUInteger idx, BOOL *stop) {
|
|
|
|
if ([viewId isEqualToString:obj[@"id"]]) {
|
|
|
|
viewModel = obj;
|
|
|
|
*stop = YES;
|
2019-12-04 13:29:26 +08:00
|
|
|
}
|
2021-09-30 13:57:52 +08:00
|
|
|
}];
|
|
|
|
if (viewModel) {
|
|
|
|
[self recursiveMixin:subview to:viewModel];
|
2019-12-04 13:29:26 +08:00
|
|
|
}
|
2021-09-30 13:57:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
[srcProp enumerateKeysAndObjectsUsingBlock:^(NSString *key, id obj, BOOL *stop) {
|
|
|
|
if (![@"subviews" isEqualToString:key]) {
|
2019-12-04 13:29:26 +08:00
|
|
|
targetProp[key] = obj;
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)blendSubNode:(DoricViewNode *)subNode layoutConfig:(NSDictionary *)layoutConfig {
|
2020-04-03 16:36:43 +08:00
|
|
|
[subNode blendLayoutConfig:layoutConfig];
|
2019-12-04 13:29:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)blendSubNode:(NSDictionary *)subModel {
|
|
|
|
NSAssert(NO, @"Should override class:%@ ,method:%@.", NSStringFromClass([self class]),
|
|
|
|
NSStringFromSelector(_cmd));
|
|
|
|
}
|
|
|
|
|
2020-04-03 16:36:43 +08:00
|
|
|
- (DoricLayout *)generateDefaultLayoutParams {
|
|
|
|
DoricLayout *params = [[DoricLayout alloc] init];
|
2019-12-04 13:29:26 +08:00
|
|
|
return params;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
- (NSDictionary *)subModelOf:(NSString *)viewId {
|
|
|
|
return self.subNodes[viewId];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setSubModel:(NSDictionary *)model in:(NSString *)viewId {
|
|
|
|
self.subNodes[viewId] = [model mutableCopy];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)clearSubModel {
|
|
|
|
[self.subNodes removeAllObjects];
|
|
|
|
}
|
|
|
|
|
2019-12-10 17:15:42 +08:00
|
|
|
- (void)removeSubModel:(NSString *)viewId {
|
|
|
|
[self.subNodes removeObjectForKey:viewId];
|
|
|
|
}
|
|
|
|
|
2019-12-04 13:29:26 +08:00
|
|
|
- (DoricViewNode *)subNodeWithViewId:(NSString *)viewId {
|
|
|
|
NSAssert(NO, @"Should override class:%@ ,method:%@.", NSStringFromClass([self class]),
|
2019-12-10 17:15:42 +08:00
|
|
|
NSStringFromSelector(_cmd));
|
2019-12-04 13:29:26 +08:00
|
|
|
return nil;
|
|
|
|
}
|
2021-07-15 14:51:19 +08:00
|
|
|
|
|
|
|
- (NSArray *)getSubNodeViewIds {
|
|
|
|
NSMutableArray *discardedItems = [NSMutableArray array];
|
2021-09-29 19:02:14 +08:00
|
|
|
|
|
|
|
NSMutableArray *allKeys = [[NSMutableArray alloc] init];
|
2021-07-15 14:51:19 +08:00
|
|
|
allKeys = [NSMutableArray arrayWithArray:[self.subNodes allKeys]];
|
|
|
|
for (NSString *key in allKeys) {
|
|
|
|
if ([self subNodeWithViewId:key] == nil) {
|
|
|
|
[discardedItems addObject:key];
|
|
|
|
}
|
|
|
|
}
|
2021-09-29 19:02:14 +08:00
|
|
|
|
2021-07-15 14:51:19 +08:00
|
|
|
[allKeys removeObjectsInArray:discardedItems];
|
2021-09-29 19:02:14 +08:00
|
|
|
|
2021-07-15 14:51:19 +08:00
|
|
|
return allKeys;
|
|
|
|
}
|
2019-12-04 13:29:26 +08:00
|
|
|
@end
|