/* * 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. */ // // DoricScrollerNode.m // Doric // // Created by pengfei.zhou on 2019/11/19. // #import "DoricScrollerNode.h" #import "DoricExtensions.h" #import "DoricRefreshableNode.h" @implementation DoricScrollView - (void)setContentView:(UIView *)contentView { if (_contentView) { [_contentView removeFromSuperview]; } _contentView = contentView; [self addSubview:contentView]; } - (CGSize)sizeThatFits:(CGSize)size { if (self.contentView) { return [self.contentView sizeThatFits:size]; } return CGSizeZero; } - (void)layoutSelf:(CGSize)targetSize { [super layoutSelf:targetSize]; [self setContentSize:self.contentView.frame.size]; } @end @interface DoricScrollerNode () @property(nonatomic, strong) DoricViewNode *childNode; @property(nonatomic, copy) NSString *childViewId; @end @implementation DoricScrollerNode - (DoricScrollView *)build { return [[DoricScrollView new] also:^(DoricScrollView *it) { it.delegate = self; if (@available(iOS 11, *)) { it.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever; } }]; } - (void)initWithSuperNode:(DoricSuperNode *)superNode { [super initWithSuperNode:superNode]; if ([superNode isKindOfClass:[DoricRefreshableNode class]]) { self.view.bounces = NO; } } - (void)blend:(NSDictionary *)props { [super blend:props]; NSDictionary *childModel = [self subModelOf:self.childViewId]; if (!childModel) { return; } NSString *viewId = childModel[@"id"]; NSString *type = childModel[@"type"]; NSDictionary *childProps = childModel[@"props"]; if (self.childNode) { if ([self.childNode.viewId isEqualToString:viewId]) { //skip } else { if (self.reusable && [type isEqualToString:self.childNode.type]) { [self.childNode also:^(DoricViewNode *it) { it.viewId = viewId; [it blend:childProps]; }]; } else { self.childNode = [[DoricViewNode create:self.doricContext withType:type] also:^(DoricViewNode *it) { it.viewId = viewId; [it initWithSuperNode:self]; [it blend:childProps]; self.view.contentView = it.view; }]; } } } else { self.childNode = [[DoricViewNode create:self.doricContext withType:type] also:^(DoricViewNode *it) { it.viewId = viewId; [it initWithSuperNode:self]; [it blend:childProps]; self.view.contentView = it.view; }]; } } - (void)blendView:(DoricScrollView *)view forPropName:(NSString *)name propValue:(id)prop { if ([@"content" isEqualToString:name]) { self.childViewId = prop; } else { [super blendView:view forPropName:name propValue:prop]; } } - (void)blendSubNode:(NSDictionary *)subModel { [self.childNode blend:subModel[@"props"]]; } - (DoricViewNode *)subNodeWithViewId:(NSString *)viewId { if ([viewId isEqualToString:self.childViewId]) { return self.childNode; } return nil; } - (void)scrollViewDidScroll:(UIScrollView *)scrollView { if (self.didScrollListener) { self.didScrollListener(scrollView); } } @end