2019-10-21 09:59:22 +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.
|
|
|
|
*/
|
2019-07-30 15:20:11 +08:00
|
|
|
//
|
|
|
|
// DoricViewNode.h
|
|
|
|
// Doric
|
|
|
|
//
|
|
|
|
// Created by pengfei.zhou on 2019/7/30.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "DoricContextHolder.h"
|
2019-10-23 20:06:21 +08:00
|
|
|
#import "DoricLayouts.h"
|
2019-07-30 15:20:11 +08:00
|
|
|
#import "UIView+Doric.h"
|
|
|
|
|
2019-11-15 14:57:41 +08:00
|
|
|
@class DoricSuperNode;
|
2019-07-30 15:20:11 +08:00
|
|
|
|
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-11-15 14:57:41 +08:00
|
|
|
@property(nonatomic, weak) DoricSuperNode *superNode;
|
2019-10-12 14:48:19 +08:00
|
|
|
@property(nonatomic) NSInteger index;
|
2019-07-30 21:05:27 +08:00
|
|
|
|
2019-11-15 14:57:41 +08:00
|
|
|
@property(nonatomic, copy) NSString *viewId;
|
2019-07-30 21:05:27 +08:00
|
|
|
|
2019-11-16 13:23:11 +08:00
|
|
|
@property(nonatomic, copy) NSString *type;
|
|
|
|
|
2019-11-15 14:57:41 +08:00
|
|
|
@property(nonatomic, readonly) NSArray<NSString *> *idList;
|
2019-07-30 15:20:11 +08:00
|
|
|
|
2019-11-15 14:57:41 +08:00
|
|
|
- (void)initWithSuperNode:(DoricSuperNode *)superNode;
|
|
|
|
|
|
|
|
- (V)build;
|
2019-07-30 15:20:11 +08:00
|
|
|
|
|
|
|
- (void)blend:(NSDictionary *)props;
|
|
|
|
|
|
|
|
- (void)blendView:(V)view forPropName:(NSString *)name propValue:(id)prop;
|
|
|
|
|
2019-11-15 19:30:07 +08:00
|
|
|
- (DoricAsyncResult *)callJSResponse:(NSString *)funcId, ...;
|
2019-07-30 21:05:27 +08:00
|
|
|
|
2021-04-14 16:53:38 +08:00
|
|
|
- (DoricAsyncResult *)pureCallJSResponse:(NSString *)funcId, ...;
|
|
|
|
|
2019-11-15 19:30:07 +08:00
|
|
|
+ (__kindof DoricViewNode *)create:(DoricContext *)context withType:(NSString *)type;
|
2019-08-06 20:06:34 +08:00
|
|
|
|
|
|
|
- (void)requestLayout;
|
2020-04-03 16:36:43 +08:00
|
|
|
|
|
|
|
- (void)blendLayoutConfig:(NSDictionary *)params;
|
|
|
|
|
|
|
|
- (void)afterBlended:(NSDictionary *)props;
|
2021-10-27 16:03:11 +08:00
|
|
|
|
|
|
|
- (void)reset;
|
2019-07-30 15:20:11 +08:00
|
|
|
@end
|