2020-02-13 22:18:13 +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-11-29 13:27:02 +08:00
|
|
|
//
|
|
|
|
// Created by pengfei.zhou on 2019/11/29.
|
|
|
|
//
|
|
|
|
|
2021-02-01 18:10:11 +08:00
|
|
|
#import <DoricCore/Doric.h>
|
2019-11-29 13:27:02 +08:00
|
|
|
#import "DoricAnimatePlugin.h"
|
|
|
|
#import "DoricRootNode.h"
|
2021-02-01 18:10:11 +08:00
|
|
|
#import "DoricExtensions.h"
|
2019-11-29 13:27:02 +08:00
|
|
|
|
|
|
|
@implementation DoricAnimatePlugin
|
|
|
|
|
|
|
|
- (void)submit:(NSDictionary *)args withPromise:(DoricPromise *)promise {
|
|
|
|
[promise resolve:nil];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)animateRender:(NSDictionary *)args withPromise:(DoricPromise *)promise {
|
2021-02-01 18:10:11 +08:00
|
|
|
NSNumber *duration = [args optNumber:@"duration"];
|
|
|
|
NSString *viewId = [args optString:@"id"];
|
|
|
|
NSDictionary *props = [args optObject:@"props"];
|
2021-02-01 15:31:24 +08:00
|
|
|
__weak typeof(self) _self = self;
|
|
|
|
[self.doricContext dispatchToMainQueue:^{
|
|
|
|
__strong typeof(_self) self = _self;
|
2019-11-29 13:27:02 +08:00
|
|
|
[UIView animateWithDuration:[duration floatValue] / 1000
|
|
|
|
animations:^{
|
|
|
|
if (self.doricContext.rootNode.viewId == nil) {
|
|
|
|
self.doricContext.rootNode.viewId = viewId;
|
2021-02-01 18:10:11 +08:00
|
|
|
[self.doricContext.rootNode blend:props];
|
2020-04-08 15:26:49 +08:00
|
|
|
[self.doricContext.rootNode requestLayout];
|
2019-11-29 13:27:02 +08:00
|
|
|
} else {
|
|
|
|
DoricViewNode *viewNode = [self.doricContext targetViewNode:viewId];
|
2021-02-01 18:10:11 +08:00
|
|
|
[viewNode blend:props];
|
2021-12-03 16:24:21 +08:00
|
|
|
if(![viewNode isKindOfClass:DoricRootNode.class]){
|
|
|
|
[viewNode.view.doricLayout apply];
|
|
|
|
}
|
2020-04-08 15:26:49 +08:00
|
|
|
[viewNode requestLayout];
|
2019-11-29 13:27:02 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
completion:^(BOOL finished) {
|
|
|
|
[promise resolve:nil];
|
|
|
|
}];
|
2021-02-01 15:31:24 +08:00
|
|
|
}];
|
2019-11-29 13:27:02 +08:00
|
|
|
}
|
2020-04-08 15:26:49 +08:00
|
|
|
@end
|