developer
2023-05-20 c1ffd99c4b60066774eb2c97b31e4aaa014e7f51
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
//
//  CWFlowLayout.m
//  CWCarousel
//
//  Created by WangChen on 2018/4/3.
//  Copyright © 2018年 ChenWang. All rights reserved.
//
 
#import "CWFlowLayout.h"
 
@interface CWFlowLayout () {
    
}
/**
 默认轮播图宽度
 */
@property (nonatomic, assign) CGFloat                   defaultItemWidth;
@property (nonatomic, assign) CGFloat                   factItemSpace;
@end
 
@implementation CWFlowLayout
 
- (instancetype)initWithStyle:(CWCarouselStyle)style {
    if(self = [super init]) {
        self.style = style;
        [self initial];
    }
    return self;
}
 
- (void)dealloc {
    NSLog(@"%s", __func__);
}
 
- (void)initial {
    self.itemSpace_H = 1;
    self.itemSpace_V = 1;
    self.minScale = 0.8;
    self.maxScale = 1.2;
}
 
- (void)prepareLayout {
    switch (self.style) {
        case CWCarouselStyle_Normal:
            {
                CGFloat width = CGRectGetWidth(self.collectionView.frame);
                CGFloat height = CGRectGetHeight(self.collectionView.frame);
                self.itemWidth = width;
                self.itemSize = CGSizeMake(width, height);
                self.minimumLineSpacing = self.itemSpace_H;
                self.scrollDirection = UICollectionViewScrollDirectionHorizontal;
            }
            break;
        case CWCarouselStyle_H_1: {
            CGFloat width = self.itemWidth == 0 ? self.defaultItemWidth : self.itemWidth;
            self.itemWidth = width;
            CGFloat height = CGRectGetHeight(self.collectionView.frame);
            self.itemSize = CGSizeMake(width, height);
            self.scrollDirection = UICollectionViewScrollDirectionHorizontal;
            self.minimumLineSpacing = self.itemSpace_H;
            break;
        }
        case CWCarouselStyle_H_2:
        case CWCarouselStyle_H_3: {
            CGFloat width = self.itemWidth == 0 ? self.defaultItemWidth : self.itemWidth;
            self.itemWidth = width;
            CGFloat height = CGRectGetHeight(self.collectionView.frame);
            self.itemSize = CGSizeMake(width, self.style == CWCarouselStyle_H_3 ? height / self.maxScale : height);
            self.scrollDirection = UICollectionViewScrollDirectionHorizontal;
            self.factItemSpace = 0;
            if(width * (1 - self.minScale) * 0.5 < self.itemSpace_H) {
                self.factItemSpace = self.itemSpace_H - width * (1 - self.minScale) * 0.5;
            }
            self.minimumLineSpacing = self.factItemSpace;
        }
            break;
        
        default:
            break;
    }
    
}
 
- (BOOL)shouldInvalidateLayoutForBoundsChange:(CGRect)newBounds {
    return YES;
}
 
- (NSArray<UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect {
    if(self.style != CWCarouselStyle_Normal &&
       self.style != CWCarouselStyle_Unknow &&
       self.style != CWCarouselStyle_H_1) {
        NSArray<UICollectionViewLayoutAttributes *> *arr = [[NSArray alloc] initWithArray:[super layoutAttributesForElementsInRect:rect] copyItems:YES];
        CGFloat centerX = self.collectionView.contentOffset.x + CGRectGetWidth(self.collectionView.frame) * 0.5;
        CGFloat width = self.itemWidth;
        __block CGFloat maxScale = 0;
        __block UICollectionViewLayoutAttributes *attri = nil;
        [arr enumerateObjectsUsingBlock:^(UICollectionViewLayoutAttributes * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
            CGFloat space = ABS(obj.center.x - centerX);
            if(space >= 0) {
                CGFloat scale = 1;
                if (self.style == CWCarouselStyle_H_2) {
                    scale = (self.minScale - 1) / (self.itemWidth + self.factItemSpace) * space + 1;
                }else {
                    scale = -((self.maxScale - 1) / width) * space + self.maxScale;
                }
                obj.transform = CGAffineTransformMakeScale(scale, scale);
                if(maxScale < scale) {
                    maxScale = scale;
                    attri = obj;
                }
            }
            obj.zIndex = 0;
        }];
        if (attri) {
            attri.zIndex = 1;
        }
        return arr;
    }else {
        return [super layoutAttributesForElementsInRect:rect];
    }
}
 
- (CGPoint)targetContentOffsetForProposedContentOffset:(CGPoint)proposedContentOffset withScrollingVelocity:(CGPoint)velocity {
//    CGRect rect;
//    _adjustIndexPath = nil;
//    rect.origin.x = proposedContentOffset.x;
//    rect.origin.y = 0;
//    rect.size.width = CGRectGetWidth(self.collectionView.frame);
//    rect.size.height = CGRectGetHeight(self.collectionView.frame);
//
//    CGFloat centerX = proposedContentOffset.x + CGRectGetWidth(self.collectionView.frame) * 0.5;
//    NSArray <UICollectionViewLayoutAttributes *>  *tempArr = [super layoutAttributesForElementsInRect:rect];
//    __block CGFloat minSpace = MAXFLOAT;
//    __block UICollectionViewLayoutAttributes *attributes = nil;
//    [tempArr enumerateObjectsUsingBlock:^(UICollectionViewLayoutAttributes * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
//        obj.zIndex = 0;
//        if(ABS(minSpace) > ABS(obj.center.x - centerX)) {
//            minSpace = obj.center.x - centerX;
//            attributes = obj;
//        }
//    }];
//    attributes.zIndex = 1;
//    _currentAttri = attributes;
//    if(velocity.x == 0) {
//        proposedContentOffset.x += minSpace;
//        _adjustIndexPath = nil;
//    }else if(attributes) {
//        if(ABS(minSpace) >= attributes.size.width * 0.15) {
//            NSInteger der = attributes.indexPath.row;
//            if(velocity.x > 0) {
//                der = (minSpace < 0 && velocity.x > 0) ? 1 : 0;
//            }else {
//                der = (minSpace > 0 && velocity.x < 0) ? -1 : 0;
//            }
//            _adjustIndexPath = [NSIndexPath indexPathForRow:attributes.indexPath.row + der inSection:attributes.indexPath.section];
//        }else {
//            _adjustIndexPath = attributes.indexPath;
//        }
//    }
    return proposedContentOffset;
}
#pragma mark - Property
- (CGFloat)defaultItemWidth {
    switch (self.style) {
        case CWCarouselStyle_Unknow:
        case CWCarouselStyle_Normal:
            return self.collectionView.frame.size.width;
            break;
        case CWCarouselStyle_H_1:
        case CWCarouselStyle_H_2:
        case CWCarouselStyle_H_3:
            return self.collectionView.frame.size.width * 0.75;
            break;
        default:
            break;
    }
}
 
- (void)setMaxScale:(CGFloat)maxScale {
    _maxScale = maxScale;
    if(maxScale < 1) {
        _maxScale = 1;
    }
}
 
- (void)setMinScale:(CGFloat)minScale {
    _minScale = minScale;
    if(minScale < 0) {
        _minScale = 0.1;
    }
    if (minScale >= 1) {
        _minScale = 1;
    }
}
@end