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.
|
|
|
|
*/
|
|
|
|
//
|
|
|
|
// DoricViewNode.m
|
|
|
|
// Doric
|
|
|
|
//
|
|
|
|
// Created by pengfei.zhou on 2019/7/30.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "DoricViewNode.h"
|
|
|
|
#import "DoricUtil.h"
|
|
|
|
#import "DoricGroupNode.h"
|
|
|
|
#import "DoricRootNode.h"
|
|
|
|
#import "DoricConstant.h"
|
|
|
|
#import "DoricSuperNode.h"
|
|
|
|
#import "DoricExtensions.h"
|
|
|
|
#import "DoricPromise.h"
|
2020-04-09 17:07:24 +08:00
|
|
|
#import "DoricFlexNode.h"
|
2021-06-22 15:45:17 +08:00
|
|
|
#import "DoricErrorHintNode.h"
|
2022-12-07 10:17:31 +08:00
|
|
|
#import "DoricUIView.h"
|
2019-12-04 13:29:26 +08:00
|
|
|
|
|
|
|
@interface AnimationCallback : NSObject <CAAnimationDelegate>
|
|
|
|
@property(nonatomic, strong) NSMutableDictionary *dictionary;
|
|
|
|
@property(nonatomic, strong) void (^startBlock)(AnimationCallback *callback);
|
|
|
|
|
|
|
|
@property(nonatomic, strong) void (^endBlock)(AnimationCallback *callback);
|
2021-04-22 11:46:24 +08:00
|
|
|
|
|
|
|
@property(nonatomic, strong) void (^cancelBlock)(void);
|
|
|
|
@property(nonatomic, strong) void (^clearBlock)(void);
|
|
|
|
|
2019-12-04 13:29:26 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation AnimationCallback
|
|
|
|
- (instancetype)init {
|
|
|
|
if (self = [super init]) {
|
|
|
|
_dictionary = [NSMutableDictionary new];
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)animationDidStart:(CAAnimation *)anim {
|
|
|
|
if (self.startBlock) {
|
|
|
|
self.startBlock(self);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag {
|
|
|
|
if (self.endBlock) {
|
|
|
|
self.endBlock(self);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface DoricViewNode ()
|
|
|
|
@property(nonatomic, strong) NSMutableDictionary *callbackIds;
|
|
|
|
@property(nonatomic, copy) NSNumber *translationX;
|
|
|
|
@property(nonatomic, copy) NSNumber *translationY;
|
|
|
|
@property(nonatomic, copy) NSNumber *scaleX;
|
|
|
|
@property(nonatomic, copy) NSNumber *scaleY;
|
|
|
|
@property(nonatomic, copy) NSNumber *rotation;
|
2020-06-02 20:43:27 +08:00
|
|
|
@property(nonatomic, copy) NSNumber *rotationX;
|
|
|
|
@property(nonatomic, copy) NSNumber *rotationY;
|
2019-12-04 13:29:26 +08:00
|
|
|
@property(nonatomic, copy) NSNumber *pivotX;
|
|
|
|
@property(nonatomic, copy) NSNumber *pivotY;
|
2020-04-09 13:30:31 +08:00
|
|
|
@property(nonatomic, strong) NSDictionary *gradientProps;
|
|
|
|
@property(nonatomic, assign) CGSize gradientSize;
|
2020-06-03 14:53:32 +08:00
|
|
|
@property(nonatomic, assign) CGFloat perspective;
|
2019-12-04 13:29:26 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation DoricViewNode
|
|
|
|
|
|
|
|
- (instancetype)initWithContext:(DoricContext *)doricContext {
|
|
|
|
if (self = [super initWithContext:doricContext]) {
|
|
|
|
_callbackIds = [[NSMutableDictionary alloc] init];
|
2020-06-03 14:53:32 +08:00
|
|
|
_perspective = 200;
|
2019-12-04 13:29:26 +08:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)initWithSuperNode:(DoricSuperNode *)superNode {
|
|
|
|
if ([self isKindOfClass:[DoricSuperNode class]]) {
|
|
|
|
((DoricSuperNode *) self).reusable = superNode.reusable;
|
|
|
|
}
|
|
|
|
self.superNode = superNode;
|
2020-04-03 16:36:43 +08:00
|
|
|
self.view = [self build];
|
2020-04-27 18:03:33 +08:00
|
|
|
self.view.clipsToBounds = YES;
|
2019-12-04 13:29:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
- (UIView *)build {
|
|
|
|
return [[UIView alloc] init];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)blend:(NSDictionary *)props {
|
|
|
|
for (NSString *key in props) {
|
|
|
|
id value = props[key];
|
2020-03-20 15:27:31 +08:00
|
|
|
if (!value || [value isKindOfClass:[NSNull class]]) {
|
|
|
|
continue;
|
|
|
|
}
|
2019-12-04 13:29:26 +08:00
|
|
|
[self blendView:self.view forPropName:key propValue:value];
|
|
|
|
}
|
2020-04-03 16:36:43 +08:00
|
|
|
[self afterBlended:props];
|
2020-04-07 10:58:44 +08:00
|
|
|
[self transformProperties];
|
2019-12-04 13:29:26 +08:00
|
|
|
}
|
|
|
|
|
2020-04-03 16:36:43 +08:00
|
|
|
- (void)afterBlended:(NSDictionary *)props {
|
|
|
|
}
|
|
|
|
|
2019-12-04 13:29:26 +08:00
|
|
|
- (void)transformProperties {
|
|
|
|
CGAffineTransform transform = CGAffineTransformIdentity;
|
|
|
|
if (self.translationX || self.translationY) {
|
|
|
|
transform = CGAffineTransformTranslate(transform, [self.translationX floatValue] ?: 0, [self.translationY floatValue] ?: 0);
|
|
|
|
}
|
|
|
|
if (self.scaleX || self.scaleY) {
|
|
|
|
transform = CGAffineTransformScale(transform, [self.scaleX floatValue] ?: 1, [self.scaleY floatValue] ?: 1);
|
|
|
|
}
|
|
|
|
if (self.rotation) {
|
|
|
|
transform = CGAffineTransformRotate(transform, (self.rotation.floatValue ?: 0) * M_PI);
|
|
|
|
}
|
2021-12-28 16:30:08 +08:00
|
|
|
self.view.layer.anchorPoint = CGPointMake(
|
|
|
|
self.pivotX ? self.pivotX.floatValue : 0.5f,
|
|
|
|
self.pivotY ? self.pivotY.floatValue : 0.5f);
|
2020-06-02 20:43:27 +08:00
|
|
|
|
|
|
|
if (self.rotationX || self.rotationY) {
|
|
|
|
CATransform3D transform3D = CATransform3DMakeAffineTransform(transform);
|
2020-06-03 14:53:32 +08:00
|
|
|
transform3D.m34 = -1.0 / self.perspective;
|
2020-06-02 20:43:27 +08:00
|
|
|
if (self.rotationX) {
|
|
|
|
transform3D = CATransform3DRotate(transform3D, (self.rotationX.floatValue ?: 0) * M_PI, 1, 0, 0);
|
|
|
|
}
|
|
|
|
if (self.rotationY) {
|
|
|
|
transform3D = CATransform3DRotate(transform3D, (self.rotationY.floatValue ?: 0) * M_PI, 0, 1, 0);
|
|
|
|
}
|
|
|
|
if (!CATransform3DEqualToTransform(transform3D, self.view.layer.transform)) {
|
2020-11-03 19:18:37 +08:00
|
|
|
self.view.layer.shouldRasterize = TRUE;
|
|
|
|
self.view.layer.rasterizationScale = [[UIScreen mainScreen] scale];
|
2020-06-02 20:43:27 +08:00
|
|
|
self.view.layer.transform = transform3D;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!CGAffineTransformEqualToTransform(transform, self.view.transform)) {
|
|
|
|
self.view.transform = transform;
|
|
|
|
}
|
2020-03-03 14:43:49 +08:00
|
|
|
}
|
2019-12-04 13:29:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)blendView:(UIView *)view forPropName:(NSString *)name propValue:(id)prop {
|
|
|
|
if ([name isEqualToString:@"width"]) {
|
2020-04-03 16:36:43 +08:00
|
|
|
view.doricLayout.width = [prop floatValue];
|
2019-12-04 13:29:26 +08:00
|
|
|
} else if ([name isEqualToString:@"height"]) {
|
2020-04-03 16:36:43 +08:00
|
|
|
view.doricLayout.height = [prop floatValue];
|
2019-12-04 13:29:26 +08:00
|
|
|
} else if ([name isEqualToString:@"x"]) {
|
2020-04-08 15:47:10 +08:00
|
|
|
view.doricLayout.marginLeft = [prop floatValue];
|
2019-12-04 13:29:26 +08:00
|
|
|
} else if ([name isEqualToString:@"y"]) {
|
2020-04-08 15:47:10 +08:00
|
|
|
view.doricLayout.marginTop = [prop floatValue];
|
2019-12-04 13:29:26 +08:00
|
|
|
} else if ([name isEqualToString:@"backgroundColor"]) {
|
2020-03-13 19:07:40 +08:00
|
|
|
if ([prop isKindOfClass:[NSNumber class]]) {
|
|
|
|
view.backgroundColor = DoricColor(prop);
|
2020-04-22 13:39:10 +08:00
|
|
|
self.gradientProps = nil;
|
|
|
|
self.gradientSize = CGSizeZero;
|
2020-03-13 19:07:40 +08:00
|
|
|
} else if ([prop isKindOfClass:[NSDictionary class]]) {
|
2020-04-09 13:30:31 +08:00
|
|
|
self.gradientProps = prop;
|
2021-06-22 17:42:27 +08:00
|
|
|
self.gradientSize = CGSizeZero;
|
2020-03-13 19:07:40 +08:00
|
|
|
}
|
2019-12-04 13:29:26 +08:00
|
|
|
} else if ([name isEqualToString:@"alpha"]) {
|
|
|
|
view.alpha = [prop floatValue];
|
|
|
|
} else if ([name isEqualToString:@"layoutConfig"]) {
|
|
|
|
if (self.superNode && [prop isKindOfClass:[NSDictionary class]]) {
|
|
|
|
[self.superNode blendSubNode:self layoutConfig:prop];
|
|
|
|
} else {
|
|
|
|
[self blendLayoutConfig:prop];
|
|
|
|
}
|
|
|
|
} else if ([name isEqualToString:@"onClick"]) {
|
|
|
|
self.callbackIds[@"onClick"] = prop;
|
|
|
|
view.userInteractionEnabled = YES;
|
|
|
|
UITapGestureRecognizer *tapGestureRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(onClick:)];
|
|
|
|
[view addGestureRecognizer:tapGestureRecognizer];
|
|
|
|
} else if ([name isEqualToString:@"border"]) {
|
|
|
|
NSDictionary *dic = prop;
|
|
|
|
CGFloat width = [(NSNumber *) dic[@"width"] floatValue];
|
|
|
|
UIColor *color = DoricColor((NSNumber *) dic[@"color"]);
|
|
|
|
view.layer.borderWidth = width;
|
|
|
|
view.layer.borderColor = color.CGColor;
|
|
|
|
} else if ([name isEqualToString:@"corners"]) {
|
|
|
|
if ([prop isKindOfClass:NSNumber.class]) {
|
|
|
|
view.layer.cornerRadius = [(NSNumber *) prop floatValue];
|
|
|
|
} else if ([prop isKindOfClass:NSDictionary.class]) {
|
|
|
|
NSDictionary *dic = prop;
|
|
|
|
CGFloat leftTop = [(NSNumber *) dic[@"leftTop"] floatValue];
|
|
|
|
CGFloat rightTop = [(NSNumber *) dic[@"rightTop"] floatValue];
|
|
|
|
CGFloat rightBottom = [(NSNumber *) dic[@"rightBottom"] floatValue];
|
|
|
|
CGFloat leftBottom = [(NSNumber *) dic[@"leftBottom"] floatValue];
|
|
|
|
if (ABS(leftTop - rightTop) > CGFLOAT_MIN
|
|
|
|
|| ABS(leftTop - rightBottom) > CGFLOAT_MIN
|
|
|
|
|| ABS(leftTop - leftBottom) > CGFLOAT_MIN) {
|
|
|
|
view.layer.cornerRadius = 0;
|
2021-04-07 17:24:33 +08:00
|
|
|
view.doricLayout.corners = UIEdgeInsetsMake(leftTop, rightTop, rightBottom, leftBottom);
|
2019-12-04 13:29:26 +08:00
|
|
|
} else {
|
|
|
|
view.layer.cornerRadius = leftTop;
|
|
|
|
view.layer.mask = nil;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if ([name isEqualToString:@"shadow"]) {
|
|
|
|
NSDictionary *dic = prop;
|
|
|
|
CGFloat opacity = [(NSNumber *) dic[@"opacity"] floatValue];
|
|
|
|
if (opacity > CGFLOAT_MIN) {
|
|
|
|
view.clipsToBounds = NO;
|
|
|
|
UIColor *color = DoricColor((NSNumber *) dic[@"color"]);
|
|
|
|
view.layer.shadowColor = color.CGColor;
|
|
|
|
view.layer.shadowRadius = [(NSNumber *) dic[@"radius"] floatValue];
|
|
|
|
view.layer.shadowOffset = CGSizeMake([(NSNumber *) dic[@"offsetX"] floatValue], [(NSNumber *) dic[@"offsetY"] floatValue]);
|
|
|
|
view.layer.shadowOpacity = (float) opacity;
|
|
|
|
} else {
|
|
|
|
view.clipsToBounds = YES;
|
|
|
|
}
|
|
|
|
} else if ([name isEqualToString:@"translationX"]) {
|
|
|
|
self.translationX = prop;
|
|
|
|
} else if ([name isEqualToString:@"translationY"]) {
|
|
|
|
self.translationY = prop;
|
|
|
|
} else if ([name isEqualToString:@"scaleX"]) {
|
|
|
|
self.scaleX = prop;
|
|
|
|
} else if ([name isEqualToString:@"scaleY"]) {
|
|
|
|
self.scaleY = prop;
|
|
|
|
} else if ([name isEqualToString:@"pivotX"]) {
|
|
|
|
self.pivotX = prop;
|
|
|
|
} else if ([name isEqualToString:@"pivotY"]) {
|
|
|
|
self.pivotY = prop;
|
|
|
|
} else if ([name isEqualToString:@"rotation"]) {
|
|
|
|
self.rotation = prop;
|
2020-06-02 20:43:27 +08:00
|
|
|
} else if ([name isEqualToString:@"rotationX"]) {
|
|
|
|
self.rotationX = prop;
|
|
|
|
} else if ([name isEqualToString:@"rotationY"]) {
|
|
|
|
self.rotationY = prop;
|
2020-06-03 14:53:32 +08:00
|
|
|
} else if ([name isEqualToString:@"perspective"]) {
|
|
|
|
self.perspective = [prop floatValue];
|
2019-12-04 19:02:15 +08:00
|
|
|
} else if ([name isEqualToString:@"padding"]) {
|
2020-04-03 16:36:43 +08:00
|
|
|
view.doricLayout.paddingLeft = 0;
|
|
|
|
view.doricLayout.paddingRight = 0;
|
|
|
|
view.doricLayout.paddingTop = 0;
|
|
|
|
view.doricLayout.paddingBottom = 0;
|
2019-12-04 19:02:15 +08:00
|
|
|
if ([prop isKindOfClass:[NSDictionary class]]) {
|
|
|
|
NSDictionary *dictionary = prop;
|
2020-04-03 16:36:43 +08:00
|
|
|
view.doricLayout.paddingLeft = [dictionary[@"left"] floatValue];
|
|
|
|
view.doricLayout.paddingRight = [dictionary[@"right"] floatValue];
|
|
|
|
view.doricLayout.paddingTop = [dictionary[@"top"] floatValue];
|
|
|
|
view.doricLayout.paddingBottom = [dictionary[@"bottom"] floatValue];
|
2019-12-04 19:02:15 +08:00
|
|
|
}
|
2019-12-10 13:44:08 +08:00
|
|
|
} else if ([name isEqualToString:@"hidden"]) {
|
|
|
|
self.view.hidden = [prop boolValue];
|
2020-04-03 16:36:43 +08:00
|
|
|
self.view.doricLayout.disabled = [prop boolValue];
|
2020-04-09 17:07:24 +08:00
|
|
|
} else if ([name isEqualToString:@"flexConfig"]) {
|
2020-04-11 11:02:51 +08:00
|
|
|
if ([prop isKindOfClass:[NSDictionary class]]) {
|
|
|
|
if ([self.superNode isKindOfClass:[DoricFlexNode class]]) {
|
|
|
|
[((DoricFlexNode *) self.superNode) blendSubNode:self flexConfig:prop];
|
|
|
|
}
|
2022-09-05 15:52:47 +08:00
|
|
|
self.view.doricLayout.flexConfig = prop;
|
2020-04-09 17:07:24 +08:00
|
|
|
}
|
2019-12-04 13:29:26 +08:00
|
|
|
} else {
|
|
|
|
DoricLog(@"Blend View error for View Type :%@, prop is %@", self.class, name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-24 16:51:23 +08:00
|
|
|
- (void)onClick:(UITapGestureRecognizer *)recognizer {
|
2019-12-04 13:29:26 +08:00
|
|
|
[self callJSResponse:self.callbackIds[@"onClick"], nil];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSArray<NSString *> *)idList {
|
|
|
|
NSMutableArray *ret = [[NSMutableArray alloc] init];
|
|
|
|
DoricViewNode *node = self;
|
|
|
|
do {
|
|
|
|
[ret addObject:node.viewId];
|
|
|
|
node = node.superNode;
|
|
|
|
} while (node);
|
|
|
|
|
|
|
|
return [[ret reverseObjectEnumerator] allObjects];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (DoricAsyncResult *)callJSResponse:(NSString *)funcId, ... {
|
|
|
|
NSMutableArray *array = [[NSMutableArray alloc] init];
|
|
|
|
[array addObject:self.idList];
|
|
|
|
[array addObject:funcId];
|
|
|
|
va_list args;
|
|
|
|
va_start(args, funcId);
|
|
|
|
id arg;
|
|
|
|
while ((arg = va_arg(args, id)) != nil) {
|
|
|
|
[array addObject:arg];
|
|
|
|
}
|
|
|
|
DoricAsyncResult *ret = [self.doricContext callEntity:DORIC_ENTITY_RESPONSE withArgumentsArray:array];
|
|
|
|
va_end(args);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-04-14 16:53:38 +08:00
|
|
|
- (DoricAsyncResult *)pureCallJSResponse:(NSString *)funcId, ... {
|
|
|
|
NSMutableArray *array = [[NSMutableArray alloc] init];
|
|
|
|
[array addObject:self.doricContext.contextId];
|
|
|
|
[array addObject:DORIC_ENTITY_RESPONSE];
|
|
|
|
[array addObject:self.idList];
|
|
|
|
[array addObject:funcId];
|
|
|
|
va_list args;
|
|
|
|
va_start(args, funcId);
|
|
|
|
id arg;
|
|
|
|
while ((arg = va_arg(args, id)) != nil) {
|
|
|
|
[array addObject:arg];
|
|
|
|
}
|
|
|
|
DoricAsyncResult *ret = [self.doricContext.driver invokeDoricMethod:DORIC_CONTEXT_INVOKE_PURE argumentsArray:array];
|
|
|
|
__weak typeof(self) __self = self;
|
|
|
|
ret.exceptionCallback = ^(NSException *e) {
|
|
|
|
__strong typeof(__self) self = __self;
|
|
|
|
[self.doricContext.driver.registry
|
|
|
|
onException:e
|
|
|
|
inContext:self.doricContext];
|
|
|
|
};
|
|
|
|
va_end(args);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-12-04 13:29:26 +08:00
|
|
|
+ (__kindof DoricViewNode *)create:(DoricContext *)context withType:(NSString *)type {
|
|
|
|
DoricRegistry *registry = context.driver.registry;
|
|
|
|
Class clz = [registry acquireViewNode:type];
|
2021-06-22 15:45:17 +08:00
|
|
|
DoricViewNode *viewNode;
|
|
|
|
if (!clz) {
|
|
|
|
viewNode = [[DoricErrorHintNode alloc] initWithContext:context];
|
|
|
|
((DoricErrorHintNode *) viewNode).hintText = type;
|
|
|
|
} else {
|
|
|
|
viewNode = [(DoricViewNode *) [clz alloc] initWithContext:context];
|
|
|
|
}
|
2019-12-04 13:29:26 +08:00
|
|
|
viewNode.type = type;
|
|
|
|
return viewNode;
|
|
|
|
}
|
|
|
|
|
2020-04-09 13:30:31 +08:00
|
|
|
- (UIImage *)gradientImageFromColors:(NSArray *)colors
|
2020-05-09 19:39:17 +08:00
|
|
|
locations:(CGFloat *)locations
|
2020-04-09 13:30:31 +08:00
|
|
|
startPoint:(CGPoint)startPoint
|
|
|
|
endPoint:(CGPoint)endPoint
|
|
|
|
imgSize:(CGSize)imgSize {
|
2021-09-02 18:46:11 +08:00
|
|
|
if (@available(iOS 10.0, *)) {
|
|
|
|
UIGraphicsImageRendererFormat *format = [[UIGraphicsImageRendererFormat alloc] init];
|
|
|
|
format.scale = [UIScreen mainScreen].scale;
|
2021-09-07 18:33:25 +08:00
|
|
|
UIGraphicsImageRenderer *render = [[UIGraphicsImageRenderer alloc] initWithSize:imgSize format:format];
|
|
|
|
UIImage *image = [render imageWithActions:^(UIGraphicsImageRendererContext *_Nonnull rendererContext) {
|
2021-09-02 18:46:11 +08:00
|
|
|
CGContextRef context = rendererContext.CGContext;
|
2021-09-07 18:33:25 +08:00
|
|
|
|
2021-09-02 18:46:11 +08:00
|
|
|
CGContextSaveGState(context);
|
|
|
|
CGColorSpaceRef colorSpace = CGColorGetColorSpace((__bridge CGColorRef) colors.lastObject);
|
|
|
|
CGGradientRef gradient = CGGradientCreateWithColors(colorSpace, (__bridge CFArrayRef) colors, locations);
|
|
|
|
CGPoint start = (CGPoint) {startPoint.x * imgSize.width, startPoint.y * imgSize.height};
|
|
|
|
CGPoint end = (CGPoint) {endPoint.x * imgSize.width, endPoint.y * imgSize.height};
|
|
|
|
CGContextDrawLinearGradient(context, gradient, start, end, kCGGradientDrawsBeforeStartLocation | kCGGradientDrawsAfterEndLocation);
|
|
|
|
CGGradientRelease(gradient);
|
|
|
|
CGContextRestoreGState(context);
|
|
|
|
}];
|
|
|
|
return image;
|
|
|
|
} else {
|
|
|
|
UIGraphicsBeginImageContextWithOptions(imgSize, NO, [UIScreen mainScreen].scale);
|
|
|
|
CGContextRef context = UIGraphicsGetCurrentContext();
|
|
|
|
CGContextSaveGState(context);
|
|
|
|
CGColorSpaceRef colorSpace = CGColorGetColorSpace((__bridge CGColorRef) colors.lastObject);
|
|
|
|
CGGradientRef gradient = CGGradientCreateWithColors(colorSpace, (__bridge CFArrayRef) colors, locations);
|
|
|
|
CGPoint start = (CGPoint) {startPoint.x * imgSize.width, startPoint.y * imgSize.height};
|
|
|
|
CGPoint end = (CGPoint) {endPoint.x * imgSize.width, endPoint.y * imgSize.height};
|
|
|
|
CGContextDrawLinearGradient(context, gradient, start, end, kCGGradientDrawsBeforeStartLocation | kCGGradientDrawsAfterEndLocation);
|
|
|
|
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
|
|
|
|
CGGradientRelease(gradient);
|
|
|
|
CGContextRestoreGState(context);
|
|
|
|
UIGraphicsEndImageContext();
|
|
|
|
return image;
|
|
|
|
}
|
2020-04-09 13:30:31 +08:00
|
|
|
}
|
|
|
|
|
2019-12-04 13:29:26 +08:00
|
|
|
- (void)requestLayout {
|
2020-04-09 13:30:31 +08:00
|
|
|
[self.gradientProps also:^(NSDictionary *dict) {
|
|
|
|
if (CGSizeEqualToSize(self.gradientSize, self.view.frame.size)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
self.gradientSize = self.view.frame.size;
|
2020-06-02 20:43:27 +08:00
|
|
|
|
2020-05-09 11:14:46 +08:00
|
|
|
NSMutableArray *colors = [[NSMutableArray alloc] init];
|
2020-05-09 19:39:17 +08:00
|
|
|
NSMutableArray *arrayLocations = nil;
|
2020-06-02 20:43:27 +08:00
|
|
|
if (dict[@"colors"] != nil) {
|
2020-05-09 19:39:17 +08:00
|
|
|
NSMutableArray *arrayColors = [dict mutableArrayValueForKey:@"colors"];
|
|
|
|
[arrayColors forEach:^(id obj) {
|
2020-05-09 11:14:46 +08:00
|
|
|
[colors addObject:(__bridge id) DoricColor(obj).CGColor];
|
|
|
|
}];
|
2020-06-02 20:43:27 +08:00
|
|
|
if (dict[@"locations"] != nil) {
|
2020-05-09 19:39:17 +08:00
|
|
|
arrayLocations = [dict mutableArrayValueForKey:@"locations"];
|
|
|
|
}
|
2020-06-02 20:43:27 +08:00
|
|
|
|
2020-05-09 11:14:46 +08:00
|
|
|
} else {
|
2020-06-02 20:43:27 +08:00
|
|
|
if (dict[@"start"] != nil && dict[@"end"] != nil) {
|
2020-05-09 11:31:00 +08:00
|
|
|
UIColor *start = DoricColor(dict[@"start"]);
|
|
|
|
UIColor *end = DoricColor(dict[@"end"]);
|
2020-06-02 20:43:27 +08:00
|
|
|
|
2020-05-09 11:31:00 +08:00
|
|
|
[colors addObject:(__bridge id) start.CGColor];
|
|
|
|
[colors addObject:(__bridge id) end.CGColor];
|
|
|
|
}
|
2020-05-09 11:14:46 +08:00
|
|
|
}
|
2020-06-02 20:43:27 +08:00
|
|
|
|
2020-04-09 13:30:31 +08:00
|
|
|
int orientation = [dict[@"orientation"] intValue];
|
|
|
|
CGPoint startPoint;
|
|
|
|
CGPoint endPoint;
|
|
|
|
if (orientation == 1) {
|
|
|
|
startPoint = CGPointMake(1, 0);
|
|
|
|
endPoint = CGPointMake(0, 1);
|
|
|
|
} else if (orientation == 2) {
|
|
|
|
startPoint = CGPointMake(1, 0);
|
|
|
|
endPoint = CGPointMake(0, 0);
|
|
|
|
} else if (orientation == 3) {
|
|
|
|
startPoint = CGPointMake(1, 1);
|
|
|
|
endPoint = CGPointMake(0, 0);
|
|
|
|
} else if (orientation == 4) {
|
|
|
|
startPoint = CGPointMake(0, 1);
|
|
|
|
endPoint = CGPointMake(0, 0);
|
|
|
|
} else if (orientation == 5) {
|
|
|
|
startPoint = CGPointMake(0, 1);
|
|
|
|
endPoint = CGPointMake(1, 0);
|
|
|
|
} else if (orientation == 6) {
|
|
|
|
startPoint = CGPointMake(0, 0);
|
|
|
|
endPoint = CGPointMake(1, 0);
|
|
|
|
} else if (orientation == 7) {
|
|
|
|
startPoint = CGPointMake(0, 0);
|
|
|
|
endPoint = CGPointMake(1, 1);
|
|
|
|
} else {
|
|
|
|
startPoint = CGPointMake(0, 0);
|
|
|
|
endPoint = CGPointMake(0, 1);
|
|
|
|
}
|
2020-06-02 20:43:27 +08:00
|
|
|
|
2020-05-09 19:39:17 +08:00
|
|
|
UIImage *gradientImage;
|
|
|
|
if (arrayLocations != nil) {
|
|
|
|
CGFloat locations[arrayLocations.count];
|
|
|
|
for (int i = 0; i != arrayLocations.count; i++) {
|
|
|
|
locations[i] = [arrayLocations[i] floatValue];
|
|
|
|
}
|
|
|
|
gradientImage = [self gradientImageFromColors:colors
|
2020-06-02 20:43:27 +08:00
|
|
|
locations:locations
|
|
|
|
startPoint:startPoint
|
|
|
|
endPoint:endPoint
|
|
|
|
imgSize:self.gradientSize];
|
2020-05-09 19:39:17 +08:00
|
|
|
} else {
|
|
|
|
gradientImage = [self gradientImageFromColors:colors
|
2020-06-02 20:43:27 +08:00
|
|
|
locations:NULL
|
|
|
|
startPoint:startPoint
|
|
|
|
endPoint:endPoint
|
|
|
|
imgSize:self.gradientSize];
|
2020-05-09 19:39:17 +08:00
|
|
|
}
|
2020-04-09 13:30:31 +08:00
|
|
|
self.view.backgroundColor = [UIColor colorWithPatternImage:gradientImage];
|
|
|
|
}];
|
2019-12-04 13:29:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
- (NSNumber *)getWidth {
|
|
|
|
return @(self.view.width);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSNumber *)getHeight {
|
|
|
|
return @(self.view.height);
|
|
|
|
}
|
|
|
|
|
2020-03-03 14:22:33 +08:00
|
|
|
- (NSNumber *)getX {
|
|
|
|
return @(self.view.x);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSNumber *)getY {
|
|
|
|
return @(self.view.y);
|
|
|
|
}
|
|
|
|
|
2019-12-12 17:33:02 +08:00
|
|
|
- (NSDictionary *)getLocationOnScreen {
|
2020-04-15 16:37:37 +08:00
|
|
|
CGPoint point = [self.view convertPoint:CGPointMake(0, 0) toView:[UIApplication sharedApplication].keyWindow];
|
2019-12-12 17:33:02 +08:00
|
|
|
return @{@"x": @(point.x), @"y": @(point.y)};
|
|
|
|
}
|
|
|
|
|
2019-12-04 13:29:26 +08:00
|
|
|
- (void)blendLayoutConfig:(NSDictionary *)params {
|
2020-04-03 16:36:43 +08:00
|
|
|
|
2019-12-04 13:29:26 +08:00
|
|
|
[params[@"widthSpec"] also:^(NSNumber *it) {
|
2020-04-03 16:36:43 +08:00
|
|
|
self.view.doricLayout.widthSpec = (DoricLayoutSpec) [it integerValue];
|
2019-12-04 13:29:26 +08:00
|
|
|
}];
|
|
|
|
|
|
|
|
[params[@"heightSpec"] also:^(NSNumber *it) {
|
2020-04-03 16:36:43 +08:00
|
|
|
self.view.doricLayout.heightSpec = (DoricLayoutSpec) [it integerValue];
|
|
|
|
}];
|
|
|
|
[params[@"margin"] also:^(NSDictionary *it) {
|
2020-04-09 13:30:31 +08:00
|
|
|
[it[@"left"] also:^(NSNumber *it) {
|
2020-04-08 20:27:23 +08:00
|
|
|
self.view.doricLayout.marginLeft = [it floatValue];
|
|
|
|
}];
|
2020-04-09 13:30:31 +08:00
|
|
|
[it[@"top"] also:^(NSNumber *it) {
|
2020-04-08 20:27:23 +08:00
|
|
|
self.view.doricLayout.marginTop = [it floatValue];
|
|
|
|
}];
|
2020-04-09 13:30:31 +08:00
|
|
|
[it[@"right"] also:^(NSNumber *it) {
|
2020-04-08 20:27:23 +08:00
|
|
|
self.view.doricLayout.marginRight = [it floatValue];
|
|
|
|
}];
|
2020-04-09 13:30:31 +08:00
|
|
|
[it[@"bottom"] also:^(NSNumber *it) {
|
2020-04-08 20:27:23 +08:00
|
|
|
self.view.doricLayout.marginBottom = [it floatValue];
|
|
|
|
}];
|
2020-04-03 16:36:43 +08:00
|
|
|
}];
|
|
|
|
[params[@"alignment"] also:^(NSNumber *it) {
|
|
|
|
self.view.doricLayout.alignment = (DoricGravity) [it integerValue];
|
|
|
|
}];
|
|
|
|
[params[@"weight"] also:^(NSNumber *it) {
|
|
|
|
self.view.doricLayout.weight = (DoricGravity) [it integerValue];
|
2019-12-04 13:29:26 +08:00
|
|
|
}];
|
2020-04-11 12:20:43 +08:00
|
|
|
[params[@"maxWidth"] also:^(NSNumber *it) {
|
|
|
|
self.view.doricLayout.maxWidth = (DoricGravity) [it integerValue];
|
|
|
|
}];
|
|
|
|
[params[@"maxHeight"] also:^(NSNumber *it) {
|
|
|
|
self.view.doricLayout.maxHeight = (DoricGravity) [it integerValue];
|
|
|
|
}];
|
|
|
|
[params[@"minWidth"] also:^(NSNumber *it) {
|
2020-04-11 13:14:34 +08:00
|
|
|
self.view.doricLayout.minWidth = (DoricGravity) [it integerValue];
|
2020-04-11 12:20:43 +08:00
|
|
|
}];
|
|
|
|
[params[@"minHeight"] also:^(NSNumber *it) {
|
2020-04-11 13:14:34 +08:00
|
|
|
self.view.doricLayout.minHeight = (DoricGravity) [it integerValue];
|
2020-04-11 12:20:43 +08:00
|
|
|
}];
|
2019-12-04 13:29:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
- (NSDictionary *)transformation {
|
|
|
|
NSMutableDictionary *dictionary = [NSMutableDictionary new];
|
|
|
|
if (self.translationX) {
|
|
|
|
dictionary[@"translationX"] = self.translationX;
|
|
|
|
}
|
|
|
|
if (self.translationY) {
|
|
|
|
dictionary[@"translationY"] = self.translationY;
|
|
|
|
}
|
|
|
|
if (self.scaleX) {
|
|
|
|
dictionary[@"scaleX"] = self.scaleX;
|
|
|
|
}
|
|
|
|
if (self.scaleY) {
|
|
|
|
dictionary[@"scaleY"] = self.scaleY;
|
|
|
|
}
|
|
|
|
if (self.rotation) {
|
|
|
|
dictionary[@"rotation"] = self.rotation;
|
|
|
|
}
|
|
|
|
return dictionary;
|
|
|
|
}
|
|
|
|
|
2021-04-22 11:46:24 +08:00
|
|
|
- (void)setTransformation:(NSDictionary *)dictionary {
|
|
|
|
self.translationX = dictionary[@"translationX"];
|
|
|
|
self.translationY = dictionary[@"translationY"];
|
|
|
|
self.scaleX = dictionary[@"scaleX"];
|
|
|
|
self.scaleY = dictionary[@"scaleY"];
|
|
|
|
self.rotation = dictionary[@"rotation"];
|
|
|
|
};
|
|
|
|
|
2019-12-04 19:02:15 +08:00
|
|
|
#pragma animations
|
|
|
|
|
2019-12-04 13:29:26 +08:00
|
|
|
- (void)doAnimation:(id)params withPromise:(DoricPromise *)promise {
|
|
|
|
CAAnimation *animation = [self parseAnimation:params];
|
|
|
|
AnimationCallback *originDelegate = animation.delegate;
|
|
|
|
AnimationCallback *animationCallback = [[AnimationCallback new] also:^(AnimationCallback *it) {
|
2021-04-22 11:46:24 +08:00
|
|
|
__block BOOL stop = NO;
|
2019-12-04 13:29:26 +08:00
|
|
|
it.startBlock = ^(AnimationCallback *callback) {
|
|
|
|
if (originDelegate) {
|
|
|
|
originDelegate.startBlock(callback);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
it.endBlock = ^(AnimationCallback *callback) {
|
2021-04-22 11:46:24 +08:00
|
|
|
if (stop) {
|
|
|
|
return;
|
|
|
|
}
|
2019-12-04 13:29:26 +08:00
|
|
|
if (originDelegate) {
|
|
|
|
originDelegate.endBlock(callback);
|
|
|
|
}
|
|
|
|
[self transformProperties];
|
2022-07-21 16:53:32 +08:00
|
|
|
[self.view.layer removeAnimationForKey:params[@"id"]];
|
2019-12-04 13:29:26 +08:00
|
|
|
[promise resolve:self.transformation];
|
|
|
|
};
|
2021-04-22 11:46:24 +08:00
|
|
|
it.cancelBlock = ^{
|
|
|
|
stop = YES;
|
|
|
|
self.view.layer.transform = self.view.layer.presentationLayer.transform;
|
|
|
|
[promise reject:@"Animation cancelled"];
|
|
|
|
};
|
|
|
|
it.clearBlock = ^{
|
|
|
|
stop = YES;
|
|
|
|
[promise reject:@"Animation cleared"];
|
|
|
|
};
|
2019-12-04 13:29:26 +08:00
|
|
|
}];
|
|
|
|
animation.delegate = animationCallback;
|
|
|
|
if (params[@"delay"]) {
|
|
|
|
animation.beginTime = CACurrentMediaTime() + [params[@"delay"] floatValue] / 1000;
|
|
|
|
}
|
2022-07-21 16:53:32 +08:00
|
|
|
animation.removedOnCompletion = NO;
|
2019-12-04 19:02:15 +08:00
|
|
|
animation.fillMode = kCAFillModeForwards;
|
2020-11-03 19:18:37 +08:00
|
|
|
if (animation.duration == 0) {
|
|
|
|
animation.duration = FLT_MIN;
|
2020-06-15 20:19:40 +08:00
|
|
|
}
|
2021-04-22 11:46:24 +08:00
|
|
|
[self.view.layer addAnimation:animation forKey:params[@"id"]];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)clearAnimation:(NSString *)animationId withPromise:(DoricPromise *)promise {
|
|
|
|
CAAnimation *caAnimation = [self.view.layer animationForKey:animationId];
|
|
|
|
if ([caAnimation.delegate isKindOfClass:AnimationCallback.class]) {
|
|
|
|
((AnimationCallback *) caAnimation.delegate).clearBlock();
|
|
|
|
}
|
|
|
|
[self.view.layer removeAnimationForKey:animationId];
|
|
|
|
[promise resolve:nil];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
- (void)cancelAnimation:(NSString *)animationId withPromise:(DoricPromise *)promise {
|
|
|
|
CAAnimation *caAnimation = [self.view.layer animationForKey:animationId];
|
|
|
|
if ([caAnimation.delegate isKindOfClass:AnimationCallback.class]) {
|
|
|
|
((AnimationCallback *) caAnimation.delegate).cancelBlock();
|
|
|
|
}
|
|
|
|
[self.view.layer removeAnimationForKey:animationId];
|
2021-04-22 14:54:25 +08:00
|
|
|
CGAffineTransform affineTransform = self.view.layer.presentationLayer.affineTransform;
|
|
|
|
self.translationX = @(affineTransform.tx);
|
|
|
|
self.translationY = @(affineTransform.ty);
|
|
|
|
CGFloat angle = atan2f((float) affineTransform.b, (float) affineTransform.a);
|
|
|
|
self.rotation = @(angle / M_PI);
|
|
|
|
self.scaleX = @(affineTransform.a);
|
|
|
|
self.scaleY = @(affineTransform.d);
|
|
|
|
[promise resolve:self.transformation];
|
2019-12-04 13:29:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
- (CFTimeInterval)computeDurationOfAnimations:(NSArray<CAAnimation *> *)animations {
|
|
|
|
__block CFTimeInterval interval = 0;
|
|
|
|
[animations forEach:^(CAAnimation *obj) {
|
|
|
|
interval = MAX(interval, obj.beginTime + obj.duration * (1 + obj.repeatCount));
|
|
|
|
}];
|
|
|
|
return interval;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (CAAnimation *)parseAnimation:(id)params {
|
|
|
|
if (params[@"animations"]) {
|
|
|
|
NSArray *anims = params[@"animations"];
|
|
|
|
CAAnimationGroup *animationGroup = [CAAnimationGroup animation];
|
|
|
|
NSMutableArray *animations = [NSMutableArray new];
|
|
|
|
[anims forEach:^(id obj) {
|
|
|
|
[animations addObject:[self parseAnimation:obj]];
|
|
|
|
}];
|
|
|
|
animationGroup.duration = [self computeDurationOfAnimations:animations];
|
|
|
|
animationGroup.animations = animations;
|
|
|
|
animationGroup.delegate = [[AnimationCallback new] also:^(AnimationCallback *it) {
|
|
|
|
it.startBlock = ^(AnimationCallback *callback) {
|
|
|
|
[[animations map:^id(CABasicAnimation *obj) {
|
|
|
|
return obj.delegate;
|
|
|
|
}] forEach:^(AnimationCallback *obj) {
|
|
|
|
if (obj.startBlock) {
|
|
|
|
obj.startBlock(obj);
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
};
|
|
|
|
it.endBlock = ^(AnimationCallback *callback) {
|
|
|
|
[[animations map:^id(CABasicAnimation *obj) {
|
|
|
|
return obj.delegate;
|
|
|
|
}] forEach:^(AnimationCallback *obj) {
|
|
|
|
if (obj.endBlock) {
|
|
|
|
obj.endBlock(obj);
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
};
|
|
|
|
}];
|
|
|
|
if (params[@"delay"]) {
|
|
|
|
animationGroup.beginTime = [params[@"delay"] floatValue] / 1000;
|
|
|
|
}
|
|
|
|
return animationGroup;
|
|
|
|
} else if ([params isKindOfClass:[NSDictionary class]]) {
|
|
|
|
NSArray<NSDictionary *> *changeables = params[@"changeables"];
|
2021-04-22 11:46:24 +08:00
|
|
|
CAAnimationGroup *animationGroup = [CAAnimationGroup animation];
|
2021-09-07 20:10:44 +08:00
|
|
|
NSMutableArray <CAAnimation *> *animations = [NSMutableArray new];
|
2019-12-04 13:29:26 +08:00
|
|
|
|
2021-04-22 11:46:24 +08:00
|
|
|
[changeables forEach:^(NSDictionary *obj) {
|
2021-09-07 20:10:44 +08:00
|
|
|
CAAnimation *animation = [self parseChangeable:obj fillMode:params[@"fillMode"]];
|
2019-12-04 13:29:26 +08:00
|
|
|
if (params[@"timingFunction"]) {
|
|
|
|
animation.timingFunction = [self translateToTimingFunction:params[@"timingFunction"]];
|
|
|
|
}
|
2021-04-22 11:46:24 +08:00
|
|
|
[animations addObject:animation];
|
|
|
|
}];
|
|
|
|
animationGroup.animations = animations;
|
|
|
|
animationGroup.delegate = [[AnimationCallback new] also:^(AnimationCallback *it) {
|
|
|
|
it.startBlock = ^(AnimationCallback *callback) {
|
2021-09-07 20:10:44 +08:00
|
|
|
[[animations map:^id(CAAnimation *obj) {
|
2021-04-22 11:46:24 +08:00
|
|
|
return obj.delegate;
|
|
|
|
}] forEach:^(AnimationCallback *obj) {
|
|
|
|
if (obj.startBlock) {
|
|
|
|
obj.startBlock(obj);
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
};
|
|
|
|
it.endBlock = ^(AnimationCallback *callback) {
|
2021-09-07 20:10:44 +08:00
|
|
|
[[animations map:^id(CAAnimation *obj) {
|
2021-04-22 11:46:24 +08:00
|
|
|
return obj.delegate;
|
|
|
|
}] forEach:^(AnimationCallback *obj) {
|
|
|
|
if (obj.endBlock) {
|
|
|
|
obj.endBlock(obj);
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
};
|
|
|
|
}];
|
|
|
|
[self setAnimation:animationGroup params:params];
|
|
|
|
return animationGroup;
|
2019-12-04 13:29:26 +08:00
|
|
|
}
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setAnimation:(CAAnimation *)animation params:(NSDictionary *)params {
|
|
|
|
if (params[@"repeatCount"]) {
|
|
|
|
NSInteger repeatCount = [params[@"repeatCount"] integerValue];
|
|
|
|
if (repeatCount < 0) {
|
|
|
|
repeatCount = NSNotFound;
|
|
|
|
}
|
|
|
|
animation.repeatCount = repeatCount;
|
|
|
|
}
|
|
|
|
if (params[@"repeatMode"]) {
|
|
|
|
NSInteger repeatMode = [params[@"repeatMode"] integerValue];
|
|
|
|
animation.autoreverses = repeatMode == 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (params[@"delay"]) {
|
|
|
|
animation.beginTime = [params[@"delay"] floatValue] / 1000;
|
|
|
|
}
|
|
|
|
animation.duration = [params[@"duration"] floatValue] / 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setFillMode:(CAAnimation *)animation
|
|
|
|
key:(NSString *)key
|
|
|
|
startValue:(NSNumber *)startValue
|
|
|
|
endValue:(NSNumber *)endValue
|
|
|
|
fillMode:(NSNumber *)fillMode {
|
|
|
|
NSUInteger fillModeInt = fillMode.unsignedIntegerValue;
|
|
|
|
if ((fillModeInt & 2) == 2) {
|
|
|
|
[self setAnimatedValue:key value:startValue];
|
|
|
|
}
|
|
|
|
AnimationCallback *callback = [AnimationCallback new];
|
|
|
|
AnimationCallback *originCallback = animation.delegate;
|
|
|
|
__weak typeof(self) _self = self;
|
|
|
|
callback.startBlock = ^(AnimationCallback *callback) {
|
|
|
|
__strong typeof(_self) self = _self;
|
|
|
|
callback.dictionary[key] = [self getAnimatedValue:key];
|
|
|
|
if (originCallback) {
|
|
|
|
originCallback.startBlock(callback);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
callback.endBlock = ^(AnimationCallback *callback) {
|
|
|
|
__strong typeof(_self) self = _self;
|
|
|
|
if ((fillModeInt & 1) == 1) {
|
|
|
|
[self setAnimatedValue:key value:endValue];
|
|
|
|
}
|
|
|
|
if (originCallback) {
|
|
|
|
originCallback.endBlock(callback);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
animation.delegate = callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSNumber *)getAnimatedValue:(NSString *)key {
|
|
|
|
if ([@"translationX" isEqualToString:key]) {
|
|
|
|
return self.translationX;
|
|
|
|
}
|
|
|
|
if ([@"translationY" isEqualToString:key]) {
|
|
|
|
return self.translationY;
|
|
|
|
}
|
|
|
|
if ([@"scaleX" isEqualToString:key]) {
|
|
|
|
return self.scaleX;
|
|
|
|
}
|
|
|
|
if ([@"scaleY" isEqualToString:key]) {
|
|
|
|
return self.scaleY;
|
|
|
|
}
|
|
|
|
if ([@"rotation" isEqualToString:key]) {
|
|
|
|
return self.rotation;
|
|
|
|
}
|
2020-06-03 14:53:32 +08:00
|
|
|
if ([@"rotationX" isEqualToString:key]) {
|
|
|
|
return self.rotationX;
|
|
|
|
}
|
|
|
|
if ([@"rotationY" isEqualToString:key]) {
|
|
|
|
return self.rotationY;
|
|
|
|
}
|
2021-09-07 18:33:25 +08:00
|
|
|
if ([@"backgroundColor" isEqualToString:key]) {
|
|
|
|
CGColorRef cgColor = self.view.backgroundColor.CGColor;
|
|
|
|
if (CGColorGetNumberOfComponents(cgColor) < 4) {
|
|
|
|
const CGFloat *components = CGColorGetComponents(cgColor);
|
|
|
|
CGFloat r = components[0];
|
|
|
|
CGFloat g = components[1];
|
|
|
|
CGFloat b = components[2];
|
|
|
|
return @((int) (b * 255) + (((int) (g * 255)) << 8) + (((int) (r * 255)) << 16) + (0xff
|
|
|
|
<< 24));
|
|
|
|
}
|
|
|
|
|
|
|
|
const CGFloat *components = CGColorGetComponents(cgColor);
|
|
|
|
CGFloat r = components[0];
|
|
|
|
CGFloat g = components[1];
|
|
|
|
CGFloat b = components[2];
|
|
|
|
CGFloat a = components[3];
|
|
|
|
return @((int) (b * 255) + (((int) (g * 255)) << 8) + (((int) (r * 255)) << 16) + (
|
|
|
|
((int) (a * 255))
|
|
|
|
<< 24));
|
|
|
|
}
|
|
|
|
if ([@"alpha" isEqualToString:key]) {
|
|
|
|
return @(self.view.alpha);
|
|
|
|
}
|
2019-12-04 13:29:26 +08:00
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setAnimatedValue:(NSString *)key value:(NSNumber *)value {
|
|
|
|
if ([@"translationX" isEqualToString:key]) {
|
|
|
|
self.translationX = value;
|
|
|
|
} else if ([@"translationY" isEqualToString:key]) {
|
|
|
|
self.translationY = value;
|
|
|
|
} else if ([@"scaleX" isEqualToString:key]) {
|
|
|
|
self.scaleX = value;
|
|
|
|
} else if ([@"scaleY" isEqualToString:key]) {
|
|
|
|
self.scaleY = value;
|
|
|
|
} else if ([@"rotation" isEqualToString:key]) {
|
|
|
|
self.rotation = value;
|
2020-06-03 14:53:32 +08:00
|
|
|
} else if ([@"rotationX" isEqualToString:key]) {
|
|
|
|
self.rotationX = value;
|
|
|
|
} else if ([@"rotationY" isEqualToString:key]) {
|
|
|
|
self.rotationY = value;
|
2021-09-07 18:33:25 +08:00
|
|
|
} else if ([@"backgroundColor" isEqualToString:key]) {
|
|
|
|
self.view.backgroundColor = DoricColor(value);
|
|
|
|
} else if ([@"alpha" isEqualToString:key]) {
|
|
|
|
self.view.alpha = value.floatValue;
|
2019-12-04 13:29:26 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-07 20:10:44 +08:00
|
|
|
- (CAAnimation *)parseChangeable:(NSDictionary *)params fillMode:(NSNumber *)fillMode {
|
2019-12-04 13:29:26 +08:00
|
|
|
NSString *key = params[@"key"];
|
2021-09-07 20:10:44 +08:00
|
|
|
NSArray *keyFrames = params[@"keyFrames"];
|
|
|
|
if (keyFrames && keyFrames.count > 0) {
|
|
|
|
CAKeyframeAnimation *animation = [CAKeyframeAnimation animation];
|
|
|
|
NSMutableArray *values = [NSMutableArray new];
|
|
|
|
NSMutableArray *times = [NSMutableArray new];
|
|
|
|
|
|
|
|
for (NSDictionary *keyFrame in keyFrames) {
|
|
|
|
if ([@"rotation" isEqualToString:key]
|
|
|
|
|| [@"rotationX" isEqualToString:key]
|
|
|
|
|| [@"rotationY" isEqualToString:key]) {
|
|
|
|
[values addObject:@([keyFrame[@"value"] floatValue] * M_PI)];
|
|
|
|
} else if ([@"backgroundColor" isEqualToString:key]) {
|
|
|
|
[values addObject:(id) DoricColor(keyFrame[@"value"]).CGColor];
|
|
|
|
} else {
|
|
|
|
[values addObject:keyFrame[@"value"]];
|
|
|
|
}
|
|
|
|
[times addObject:keyFrame[@"percent"]];
|
|
|
|
}
|
|
|
|
animation.keyTimes = times;
|
|
|
|
animation.values = values;
|
|
|
|
if ([@"translationX" isEqualToString:key]) {
|
|
|
|
animation.keyPath = @"transform.translation.x";
|
|
|
|
} else if ([@"translationY" isEqualToString:key]) {
|
|
|
|
animation.keyPath = @"transform.translation.y";
|
|
|
|
} else if ([@"scaleX" isEqualToString:key]) {
|
|
|
|
animation.keyPath = @"transform.scale.x";
|
|
|
|
} else if ([@"scaleY" isEqualToString:key]) {
|
|
|
|
animation.keyPath = @"transform.scale.y";
|
|
|
|
} else if ([@"rotation" isEqualToString:key]) {
|
|
|
|
animation.keyPath = @"transform.rotation.z";
|
|
|
|
} else if ([@"rotationX" isEqualToString:key]) {
|
|
|
|
animation.keyPath = @"transform.rotation.x";
|
|
|
|
} else if ([@"rotationY" isEqualToString:key]) {
|
|
|
|
animation.keyPath = @"transform.rotation.y";
|
|
|
|
} else if ([@"backgroundColor" isEqualToString:key]) {
|
|
|
|
animation.keyPath = @"backgroundColor";
|
|
|
|
} else if ([@"alpha" isEqualToString:key]) {
|
|
|
|
animation.keyPath = @"opacity";
|
|
|
|
}
|
|
|
|
|
|
|
|
[self setFillMode:animation
|
|
|
|
key:key
|
|
|
|
startValue:params[@"fromValue"]
|
|
|
|
endValue:params[@"toValue"]
|
|
|
|
fillMode:fillMode];
|
|
|
|
return animation;
|
|
|
|
} else {
|
|
|
|
CABasicAnimation *animation = [CABasicAnimation animation];
|
|
|
|
if ([@"translationX" isEqualToString:key]) {
|
|
|
|
animation.keyPath = @"transform.translation.x";
|
|
|
|
animation.fromValue = params[@"fromValue"];
|
|
|
|
animation.toValue = params[@"toValue"];
|
|
|
|
} else if ([@"translationY" isEqualToString:key]) {
|
|
|
|
animation.keyPath = @"transform.translation.y";
|
|
|
|
animation.fromValue = params[@"fromValue"];
|
|
|
|
animation.toValue = params[@"toValue"];
|
|
|
|
} else if ([@"scaleX" isEqualToString:key]) {
|
|
|
|
animation.keyPath = @"transform.scale.x";
|
|
|
|
animation.fromValue = params[@"fromValue"];
|
|
|
|
animation.toValue = params[@"toValue"];
|
|
|
|
} else if ([@"scaleY" isEqualToString:key]) {
|
|
|
|
animation.keyPath = @"transform.scale.y";
|
|
|
|
animation.fromValue = params[@"fromValue"];
|
|
|
|
animation.toValue = params[@"toValue"];
|
|
|
|
} else if ([@"rotation" isEqualToString:key]) {
|
|
|
|
animation.keyPath = @"transform.rotation.z";
|
|
|
|
animation.fromValue = @([params[@"fromValue"] floatValue] * M_PI);
|
|
|
|
animation.toValue = @([params[@"toValue"] floatValue] * M_PI);
|
|
|
|
} else if ([@"rotationX" isEqualToString:key]) {
|
|
|
|
animation.keyPath = @"transform.rotation.x";
|
|
|
|
animation.fromValue = @([params[@"fromValue"] floatValue] * M_PI);
|
|
|
|
animation.toValue = @([params[@"toValue"] floatValue] * M_PI);
|
|
|
|
} else if ([@"rotationY" isEqualToString:key]) {
|
|
|
|
animation.keyPath = @"transform.rotation.y";
|
|
|
|
animation.fromValue = @([params[@"fromValue"] floatValue] * M_PI);
|
|
|
|
animation.toValue = @([params[@"toValue"] floatValue] * M_PI);
|
|
|
|
} else if ([@"backgroundColor" isEqualToString:key]) {
|
|
|
|
animation.keyPath = @"backgroundColor";
|
|
|
|
animation.fromValue = (id) DoricColor(params[@"fromValue"]).CGColor;
|
|
|
|
animation.toValue = (id) DoricColor(params[@"toValue"]).CGColor;
|
|
|
|
} else if ([@"alpha" isEqualToString:key]) {
|
|
|
|
animation.keyPath = @"opacity";
|
|
|
|
animation.fromValue = params[@"fromValue"];
|
|
|
|
animation.toValue = params[@"toValue"];
|
|
|
|
}
|
|
|
|
[self setFillMode:animation
|
|
|
|
key:key
|
|
|
|
startValue:params[@"fromValue"]
|
|
|
|
endValue:params[@"toValue"]
|
|
|
|
fillMode:fillMode];
|
|
|
|
return animation;
|
|
|
|
}
|
|
|
|
|
2019-12-04 13:29:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
- (CAMediaTimingFunction *)translateToTimingFunction:(NSNumber *)timingFunction {
|
|
|
|
switch (timingFunction.integerValue) {
|
|
|
|
case 1:
|
|
|
|
return [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear];
|
|
|
|
case 2:
|
|
|
|
return [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseIn];
|
|
|
|
case 3:
|
|
|
|
return [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut];
|
|
|
|
case 4:
|
|
|
|
return [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
|
|
|
|
default:
|
|
|
|
return [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionDefault];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-27 16:03:11 +08:00
|
|
|
- (void)reset {
|
|
|
|
self.view.backgroundColor = UIColor.clearColor;
|
2023-03-15 12:16:53 +08:00
|
|
|
self.gradientProps = nil;
|
|
|
|
self.gradientSize = CGSizeZero;
|
2021-10-27 17:29:33 +08:00
|
|
|
DoricLayoutType doricLayoutType = self.view.doricLayout.layoutType;
|
2021-10-27 16:03:11 +08:00
|
|
|
self.view.doricLayout = [[DoricLayout new] also:^(DoricLayout *it) {
|
2021-10-27 17:29:33 +08:00
|
|
|
it.width = 0;
|
|
|
|
it.height = 0;
|
|
|
|
it.layoutType = doricLayoutType;
|
2021-10-27 16:03:11 +08:00
|
|
|
it.view = self.view;
|
|
|
|
}];
|
|
|
|
|
|
|
|
self.view.alpha = 1.0f;
|
|
|
|
self.view.hidden = NO;
|
|
|
|
self.view.layer.transform = CATransform3DIdentity;
|
|
|
|
self.view.transform = CGAffineTransformIdentity;
|
|
|
|
|
|
|
|
self.view.layer.cornerRadius = 0;
|
|
|
|
self.view.layer.mask = nil;
|
2021-12-28 16:35:37 +08:00
|
|
|
|
|
|
|
self.view.layer.anchorPoint = CGPointMake(0.5f, 0.5f);
|
2021-10-27 16:03:11 +08:00
|
|
|
self.view.layer.borderWidth = 0;
|
|
|
|
self.view.layer.borderColor = UIColor.clearColor.CGColor;
|
|
|
|
for (UIGestureRecognizer *gestureRecognizer in self.view.gestureRecognizers) {
|
|
|
|
if ([gestureRecognizer isKindOfClass:UITapGestureRecognizer.class]) {
|
|
|
|
[self.view removeGestureRecognizer:gestureRecognizer];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-04 13:29:26 +08:00
|
|
|
@end
|