2019-12-07 12:47: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.
|
|
|
|
*/
|
|
|
|
//
|
|
|
|
// Created by pengfei.zhou on 2019/12/7.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "DoricNestedSliderNode.h"
|
|
|
|
#import "Doric.h"
|
|
|
|
|
|
|
|
@interface DoricNestedSliderView : UIScrollView
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation DoricNestedSliderView
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface DoricNestedSliderNode () <UIScrollViewDelegate>
|
|
|
|
@property(nonatomic, copy) NSString *onPageSelectedFuncId;
|
|
|
|
@property(nonatomic, assign) NSUInteger lastPosition;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation DoricNestedSliderNode
|
|
|
|
- (UIScrollView *)build {
|
|
|
|
return [[DoricNestedSliderView new] also:^(DoricNestedSliderView *it) {
|
|
|
|
it.delegate = self;
|
|
|
|
it.pagingEnabled = YES;
|
|
|
|
[it setShowsVerticalScrollIndicator:NO];
|
|
|
|
[it setShowsHorizontalScrollIndicator:NO];
|
2020-03-13 16:43:40 +08:00
|
|
|
if (@available(iOS 11, *)) {
|
|
|
|
it.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
|
|
|
|
}
|
2019-12-07 12:47:22 +08:00
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)blendView:(UIScrollView *)view forPropName:(NSString *)name propValue:(id)prop {
|
2021-04-23 17:56:51 +08:00
|
|
|
if ([@"scrollable" isEqualToString:name]) {
|
|
|
|
self.view.scrollEnabled = [prop boolValue];
|
2021-04-30 14:32:53 +08:00
|
|
|
} else if ([@"bounces" isEqualToString:name]) {
|
|
|
|
self.view.bounces = [prop boolValue];
|
2021-04-23 17:56:51 +08:00
|
|
|
} else if ([@"onPageSlided" isEqualToString:name]) {
|
2019-12-07 12:47:22 +08:00
|
|
|
self.onPageSelectedFuncId = prop;
|
|
|
|
} else {
|
|
|
|
[super blendView:view forPropName:name propValue:prop];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView {
|
|
|
|
NSUInteger pageIndex = (NSUInteger) (scrollView.contentOffset.x / scrollView.width);
|
|
|
|
[scrollView setContentOffset:CGPointMake(pageIndex * scrollView.width, scrollView.contentOffset.y) animated:YES];
|
|
|
|
if (self.onPageSelectedFuncId && self.onPageSelectedFuncId.length > 0) {
|
|
|
|
if (pageIndex != self.lastPosition) {
|
|
|
|
[self callJSResponse:self.onPageSelectedFuncId, @(pageIndex), nil];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
self.lastPosition = pageIndex;
|
|
|
|
}
|
|
|
|
|
2020-04-08 20:04:45 +08:00
|
|
|
- (void)requestLayout {
|
|
|
|
[self.childNodes forEachIndexed:^(DoricViewNode *node, NSUInteger idx) {
|
2020-04-09 13:30:31 +08:00
|
|
|
[node requestLayout];
|
2020-04-08 20:04:45 +08:00
|
|
|
[node.view.doricLayout apply:self.view.frame.size];
|
|
|
|
node.view.left = idx * self.view.width;
|
|
|
|
}];
|
|
|
|
self.view.contentSize = CGSizeMake(self.childNodes.count * self.view.width, self.view.height);
|
|
|
|
}
|
2019-12-07 12:47:22 +08:00
|
|
|
|
|
|
|
- (void)slidePage:(NSDictionary *)params withPromise:(DoricPromise *)promise {
|
|
|
|
NSUInteger pageIndex = [params[@"page"] unsignedIntegerValue];
|
|
|
|
BOOL smooth = [params[@"smooth"] boolValue];
|
|
|
|
[self.view setContentOffset:CGPointMake(pageIndex * self.view.width, self.view.contentOffset.y) animated:smooth];
|
|
|
|
[promise resolve:nil];
|
|
|
|
self.lastPosition = pageIndex;
|
|
|
|
if (self.onPageSelectedFuncId && self.onPageSelectedFuncId.length > 0) {
|
|
|
|
[self callJSResponse:self.onPageSelectedFuncId, @(pageIndex), nil];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSNumber *)getSlidedPage {
|
|
|
|
NSUInteger pageIndex = (NSUInteger) (self.view.contentOffset.x / self.view.width);
|
|
|
|
return @(pageIndex);
|
|
|
|
}
|
|
|
|
@end
|