feat:implement iOS flow layout load more
This commit is contained in:
parent
226ff3089a
commit
c62dc6cc03
@ -25,6 +25,8 @@
|
|||||||
@protocol DoricFlowLayoutDelegate
|
@protocol DoricFlowLayoutDelegate
|
||||||
- (CGFloat)doricFlowLayoutItemHeightAtIndexPath:(NSIndexPath *)indexPath;
|
- (CGFloat)doricFlowLayoutItemHeightAtIndexPath:(NSIndexPath *)indexPath;
|
||||||
|
|
||||||
|
- (CGFloat)doricFlowLayoutItemWidthAtIndexPath:(NSIndexPath *)indexPath;
|
||||||
|
- (BOOL)isLoadView:(NSIndexPath *)indexPath;
|
||||||
- (CGFloat)doricFlowLayoutColumnSpace;
|
- (CGFloat)doricFlowLayoutColumnSpace;
|
||||||
|
|
||||||
- (CGFloat)doricFlowLayoutRowSpace;
|
- (CGFloat)doricFlowLayoutRowSpace;
|
||||||
@ -93,15 +95,23 @@ - (UICollectionViewLayoutAttributes *)layoutAttributesForItemAtIndexPath:(NSInde
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
CGFloat width = (self.collectionView.width - self.columnSpace * (self.columnCount - 1)) / self.columnCount;
|
CGFloat width = [self.delegate doricFlowLayoutItemWidthAtIndexPath:indexPath];
|
||||||
CGFloat height = [self.delegate doricFlowLayoutItemHeightAtIndexPath:indexPath];
|
CGFloat height = [self.delegate doricFlowLayoutItemHeightAtIndexPath:indexPath];
|
||||||
CGFloat x = (width + self.columnSpace) * [minYOfColumn integerValue];
|
CGFloat x = (width + self.columnSpace) * [minYOfColumn integerValue];
|
||||||
CGFloat y = [self.columnHeightInfo[minYOfColumn] floatValue];
|
CGFloat y = [self.columnHeightInfo[minYOfColumn] floatValue];
|
||||||
if (y > 0) {
|
if (y > 0) {
|
||||||
y += self.rowSpace;
|
y += self.rowSpace;
|
||||||
}
|
}
|
||||||
self.columnHeightInfo[minYOfColumn] = @(y + height);
|
|
||||||
|
|
||||||
|
if (width == self.collectionView.width) {
|
||||||
|
CGFloat maxY = 0;
|
||||||
|
for (NSNumber *column in self.columnHeightInfo.allValues) {
|
||||||
|
maxY = MAX(maxY, [column floatValue]);
|
||||||
|
}
|
||||||
|
y = maxY + self.rowSpace;
|
||||||
|
}else {
|
||||||
|
self.columnHeightInfo[minYOfColumn] = @(y + height);
|
||||||
|
}
|
||||||
UICollectionViewLayoutAttributes *attrs = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath];
|
UICollectionViewLayoutAttributes *attrs = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath];
|
||||||
attrs.frame = CGRectMake(x, y, width, height);
|
attrs.frame = CGRectMake(x, y, width, height);
|
||||||
return attrs;
|
return attrs;
|
||||||
@ -157,6 +167,10 @@ @interface DoricFlowLayoutNode () <UICollectionViewDataSource, UICollectionViewD
|
|||||||
@property(nonatomic, assign) CGFloat columnSpace;
|
@property(nonatomic, assign) CGFloat columnSpace;
|
||||||
@property(nonatomic, assign) CGFloat rowSpace;
|
@property(nonatomic, assign) CGFloat rowSpace;
|
||||||
@property(nonatomic, copy) NSString *renderItemFuncId;
|
@property(nonatomic, copy) NSString *renderItemFuncId;
|
||||||
|
|
||||||
|
@property(nonatomic, copy) NSString *onLoadMoreFuncId;
|
||||||
|
@property(nonatomic, copy) NSString *loadMoreViewId;
|
||||||
|
@property(nonatomic, assign) BOOL loadMore;
|
||||||
@end
|
@end
|
||||||
|
|
||||||
@implementation DoricFlowLayoutNode
|
@implementation DoricFlowLayoutNode
|
||||||
@ -181,6 +195,7 @@ - (UICollectionView *)build {
|
|||||||
it.delegate = self;
|
it.delegate = self;
|
||||||
it.dataSource = self;
|
it.dataSource = self;
|
||||||
[it registerClass:[DoricFlowLayoutViewCell class] forCellWithReuseIdentifier:@"doricCell"];
|
[it registerClass:[DoricFlowLayoutViewCell class] forCellWithReuseIdentifier:@"doricCell"];
|
||||||
|
[it registerClass:[DoricFlowLayoutViewCell class] forCellWithReuseIdentifier:@"doricLoadMoreCell"];
|
||||||
}];
|
}];
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -209,12 +224,21 @@ - (void)blendView:(UICollectionView *)view forPropName:(NSString *)name propValu
|
|||||||
|
|
||||||
} else if ([@"batchCount" isEqualToString:name]) {
|
} else if ([@"batchCount" isEqualToString:name]) {
|
||||||
self.batchCount = [prop unsignedIntegerValue];
|
self.batchCount = [prop unsignedIntegerValue];
|
||||||
} else {
|
} else if ([@"onLoadMore" isEqualToString:name]) {
|
||||||
|
self.onLoadMoreFuncId = prop;
|
||||||
|
} else if ([@"loadMoreView" isEqualToString:name]) {
|
||||||
|
self.loadMoreViewId = prop;
|
||||||
|
} else if ([@"loadMore" isEqualToString:name]) {
|
||||||
|
self.loadMore = [prop boolValue];
|
||||||
|
} else{
|
||||||
[super blendView:view forPropName:name propValue:prop];
|
[super blendView:view forPropName:name propValue:prop];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSDictionary *)itemModelAt:(NSUInteger)position {
|
- (NSDictionary *)itemModelAt:(NSUInteger)position {
|
||||||
|
if (position >= self.itemCount) {
|
||||||
|
return [self subModelOf:self.loadMoreViewId];
|
||||||
|
}
|
||||||
NSString *viewId = self.itemViewIds[@(position)];
|
NSString *viewId = self.itemViewIds[@(position)];
|
||||||
if (viewId && viewId.length > 0) {
|
if (viewId && viewId.length > 0) {
|
||||||
return [self subModelOf:viewId];
|
return [self subModelOf:viewId];
|
||||||
@ -281,13 +305,14 @@ - (void)callItem:(NSUInteger)position size:(CGSize)size {
|
|||||||
}
|
}
|
||||||
|
|
||||||
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
|
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
|
||||||
return self.itemCount;
|
return self.itemCount + (self.loadMore ? 1 : 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
- (__kindof UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
|
- (__kindof UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
|
||||||
NSUInteger position = (NSUInteger) indexPath.row;
|
NSUInteger position = (NSUInteger) indexPath.row;
|
||||||
NSDictionary *model = [self itemModelAt:position];
|
NSDictionary *model = [self itemModelAt:position];
|
||||||
NSDictionary *props = model[@"props"];
|
NSDictionary *props = model[@"props"];
|
||||||
|
|
||||||
DoricFlowLayoutViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"doricCell" forIndexPath:indexPath];
|
DoricFlowLayoutViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"doricCell" forIndexPath:indexPath];
|
||||||
if (!cell.viewNode) {
|
if (!cell.viewNode) {
|
||||||
DoricFlowLayoutItemNode *itemNode = [[DoricFlowLayoutItemNode alloc] initWithContext:self.doricContext];
|
DoricFlowLayoutItemNode *itemNode = [[DoricFlowLayoutItemNode alloc] initWithContext:self.doricContext];
|
||||||
@ -295,11 +320,17 @@ - (__kindof UICollectionViewCell *)collectionView:(UICollectionView *)collection
|
|||||||
cell.viewNode = itemNode;
|
cell.viewNode = itemNode;
|
||||||
[cell.contentView addSubview:itemNode.view];
|
[cell.contentView addSubview:itemNode.view];
|
||||||
}
|
}
|
||||||
|
|
||||||
DoricFlowLayoutItemNode *node = cell.viewNode;
|
DoricFlowLayoutItemNode *node = cell.viewNode;
|
||||||
node.viewId = model[@"id"];
|
node.viewId = model[@"id"];
|
||||||
[node blend:props];
|
[node blend:props];
|
||||||
CGFloat width = (collectionView.width - (self.columnCount - 1) * self.columnSpace) / self.columnCount;
|
CGFloat width = (collectionView.width - (self.columnCount - 1) * self.columnSpace) / self.columnCount;
|
||||||
CGSize size = [node.view measureSize:CGSizeMake(width, collectionView.height)];
|
CGSize size = [node.view measureSize:CGSizeMake(width, collectionView.height)];
|
||||||
|
if (position > 0 && position >= self.itemCount && self.onLoadMoreFuncId) {
|
||||||
|
size = CGSizeMake(collectionView.width, size.height);
|
||||||
|
[self callJSResponse:self.onLoadMoreFuncId, nil];
|
||||||
|
}
|
||||||
|
|
||||||
[node.view layoutSelf:size];
|
[node.view layoutSelf:size];
|
||||||
[self callItem:position size:size];
|
[self callItem:position size:size];
|
||||||
return cell;
|
return cell;
|
||||||
@ -315,6 +346,17 @@ - (CGFloat)doricFlowLayoutItemHeightAtIndexPath:(NSIndexPath *)indexPath {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (CGFloat)doricFlowLayoutItemWidthAtIndexPath:(NSIndexPath *)indexPath {
|
||||||
|
NSUInteger position = (NSUInteger) indexPath.row;
|
||||||
|
NSValue *value = self.itemSizeInfo[@(position)];
|
||||||
|
if (value) {
|
||||||
|
return [value CGSizeValue].width;
|
||||||
|
} else {
|
||||||
|
return 100;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
- (CGFloat)doricFlowLayoutColumnSpace {
|
- (CGFloat)doricFlowLayoutColumnSpace {
|
||||||
return self.columnSpace;
|
return self.columnSpace;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user