-
-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy pathCollectionViewSlantedLayout.swift
More file actions
299 lines (242 loc) · 9.69 KB
/
CollectionViewSlantedLayout.swift
File metadata and controls
299 lines (242 loc) · 9.69 KB
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
/**
This file is part of the CollectionViewSlantedLayout package.
Copyright © 2016-present Yassir Barchi <github@yassir.fr>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
import UIKit
/**
CollectionViewSlantedLayout is a subclass of UICollectionViewLayout
allowing the display of slanted content on UICollectionView.
By default, this UICollectionViewLayout has initialize a set
of properties to work as designed.
*/
@objc open class CollectionViewSlantedLayout: UICollectionViewLayout {
/**
The slanting size.
The default value of this property is `75`.
*/
@IBInspectable open var slantingSize: UInt = 75 {
didSet {
invalidate()
}
}
/**
The slanting direction.
The default value of this property is `upward`.
*/
@objc open var slantingDirection: SlantingDirection = .upward {
didSet {
invalidate()
}
}
/**
The angle, in radians, of the slanting.
The value of this property could be used to apply a rotation transform on the cell's contentView in the
`collectionView(_:cellForItemAt:)` method implementation.
```
if let layout = collectionView.collectionViewLayout as? CollectionViewSlantedLayout {
cell.contentView.transform = CGAffineTransform(rotationAngle: layout.rotationAngle)
}
```
*/
@objc open fileprivate(set) var slantingAngle: CGFloat = 0
/**
The scroll direction of the grid.
The grid layout scrolls along one axis only, either horizontally or vertically.
The default value of this property is `vertical`.
*/
@objc open var scrollDirection: UICollectionView.ScrollDirection = .vertical {
didSet {
invalidate()
}
}
/**
Allows to disable the slanting for the first cell.
Set it to `true` to disable the slanting for the first cell. The default value of this property is `false`.
*/
@IBInspectable open var isFirstCellExcluded: Bool = false {
didSet {
invalidate()
}
}
/**
Allows to disable the slanting for the last cell.
Set it to `true` to disable the slanting for the last cell. The default value of this property is `false`.
*/
@IBInspectable open var isLastCellExcluded: Bool = false {
didSet {
invalidate()
}
}
/**
The spacing to use between two items.
The default value of this property is 10.0.
*/
@IBInspectable open var lineSpacing: CGFloat = 10 {
didSet {
invalidate()
}
}
/**
The default size to use for cells.
If the delegate does not implement the `collectionView(_:layout:sizeForItemAt:)` method, the slanted layout
uses the value in this property to set the size of each cell. This results in cells that all have the same size.
The default value of this property is 225.
*/
@IBInspectable open var itemSize: CGFloat = 225 {
didSet {
invalidate()
}
}
/**
The zIndex order of the items in the layout.
The default value of this property is `ascending`.
*/
@objc open var zIndexOrder: ZIndexOrder = .ascending {
didSet {
invalidate()
}
}
// MARK: Private
/// :nodoc:
internal var cachedAttributes = [CollectionViewSlantedLayoutAttributes]()
/// :nodoc:
internal var cachedContentSize: CGFloat = 0
/// :nodoc:
internal var currentSize: CGSize = CGSize.zero
/// :nodoc:
fileprivate func itemSize(forItemAt indexPath: IndexPath) -> (value: CGFloat, isDynamic: Bool) {
guard let collectionView = collectionView,
let delegate = collectionView.delegate as? CollectionViewDelegateSlantedLayout else {
return (max(itemSize, 0), false)
}
let size = delegate.collectionView?(collectionView, layout: self, sizeForItemAt: indexPath)
return (max(size ?? itemSize, 0), size != nil)
}
/// :nodoc:
fileprivate func maskForItemAtIndexPath(_ indexPath: IndexPath,
size: CGFloat,
isDynamicSize: Bool,
staticMasks: CollectionViewSlantedMasks) -> CAShapeLayer {
let masks = isDynamicSize ? calculatedMasks(itemSize: size) : CollectionViewSlantedMasks(masks: staticMasks)
// isFirstCell && isFirstCellExcluded
if indexPath.row == 0 && isFirstCellExcluded {
return masks.startingMask
}
// isLastCell && isLastCellExcluded
if (indexPath.row == numberOfItems - 1) && isLastCellExcluded {
return masks.endingMask
}
return masks.defaultMask
}
/// :nodoc:
fileprivate func calculatedMasks(itemSize: CGFloat) -> CollectionViewSlantedMasks {
let size = CGSize(width: scrollDirection.isVertical ? width : itemSize,
height: scrollDirection.isVertical ? itemSize : height)
return CollectionViewSlantedMasks(size: size,
slantingSize: CGFloat(slantingSize),
scrollDirection: scrollDirection,
slantingDirection: slantingDirection)
}
/// :nodoc:
fileprivate func updateRotationAngle() {
let oppositeSide = CGFloat(slantingSize)
var factor = slantingDirection == .upward ? -1 : 1
var adjacentSide = width
if !scrollDirection.isVertical {
adjacentSide = height
factor *= -1
}
let angle = atan(tan(oppositeSide / adjacentSide))
slantingAngle = angle * CGFloat(factor)
}
/// :nodoc:
fileprivate func invalidate() {
invalidateCache()
updateRotationAngle()
invalidateLayout()
}
/// :nodoc:
fileprivate func invalidateCache() {
cachedAttributes = [CollectionViewSlantedLayoutAttributes]()
cachedContentSize = 0
}
}
// MARK: CollectionViewLayout methods overriding
extension CollectionViewSlantedLayout {
/// :nodoc:
override open var collectionViewContentSize: CGSize {
let contentSize = CGFloat(numberOfItems - 1) * (lineSpacing - CGFloat(slantingSize)) + cachedContentSize
if scrollDirection.isVertical {
return CGSize(width: width, height: contentSize)
}
return CGSize(width: contentSize, height: height)
}
/// :nodoc:
override open func shouldInvalidateLayout(forBoundsChange newBounds: CGRect) -> Bool {
guard newBounds.size != currentSize else {
return false
}
invalidateCache()
return true
}
/// :nodoc:
override open func prepare() {
guard cachedAttributes.isEmpty else {
return
}
currentSize = collectionView?.bounds.size ?? CGSize.zero
let staticMasks = calculatedMasks(itemSize: max(itemSize, 0))
var position: CGFloat = 0
for item in 0..<numberOfItems {
let indexPath = IndexPath(item: item, section: 0)
let attributes = CollectionViewSlantedLayoutAttributes(forCellWith: indexPath)
let size = itemSize(forItemAt: indexPath)
let frame: CGRect
if scrollDirection.isVertical {
frame = CGRect(x: 0, y: position, width: width, height: size.value)
} else {
frame = CGRect(x: position, y: 0, width: size.value, height: height)
}
attributes.frame = frame
attributes.size = frame.size
attributes.zIndex = zIndexOrder.isAscending ? item : (numberOfItems - item)
attributes.slantedLayerMask = maskForItemAtIndexPath(indexPath,
size: size.value,
isDynamicSize: size.isDynamic,
staticMasks: staticMasks)
cachedAttributes.append(attributes)
cachedContentSize += size.value
position += size.value + lineSpacing - CGFloat(slantingSize)
}
}
/// :nodoc:
override open func layoutAttributesForElements(in rect: CGRect) -> [UICollectionViewLayoutAttributes]? {
return cachedAttributes.filter { attributes in
return attributes.frame.intersects(rect)
}
}
/// :nodoc:
override open func layoutAttributesForItem(at indexPath: IndexPath) -> CollectionViewSlantedLayoutAttributes? {
return cachedAttributes[indexPath.item]
}
/// :nodoc:
override open func invalidateLayout() {
super.invalidateLayout()
self.cachedAttributes.removeAll()
}
}