forked from chiahsien/CHTCollectionViewWaterfallLayout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHTCollectionViewWaterfallLayout.swift
executable file
·432 lines (366 loc) · 16 KB
/
CHTCollectionViewWaterfallLayout.swift
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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
//
// CHTCollectionViewWaterfallLayout.swift
// PinterestSwift
//
// Created by Nicholas Tau on 6/30/14.
// Copyright (c) 2014 Nicholas Tau. All rights reserved.
//
import Foundation
import UIKit
fileprivate func < <T: Comparable>(lhs: T?, rhs: T?) -> Bool {
switch (lhs, rhs) {
case let (l?, r?):
return l < r
case (nil, _?):
return true
default:
return false
}
}
fileprivate func > <T: Comparable>(lhs: T?, rhs: T?) -> Bool {
switch (lhs, rhs) {
case let (l?, r?):
return l > r
default:
return rhs < lhs
}
}
@objc public protocol CHTCollectionViewDelegateWaterfallLayout: UICollectionViewDelegate {
func collectionView (_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout,
sizeForItemAtIndexPath indexPath: IndexPath) -> CGSize
@objc optional func collectionView (_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout,
heightForHeaderInSection section: Int) -> CGFloat
@objc optional func collectionView (_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout,
heightForFooterInSection section: Int) -> CGFloat
@objc optional func collectionView (_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout,
insetForSectionAtIndex section: Int) -> UIEdgeInsets
@objc optional func collectionView (_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout,
minimumInteritemSpacingForSectionAtIndex section: Int) -> CGFloat
@objc optional func collectionView (_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout,
columnCountForSection section: Int) -> Int
}
public enum CHTCollectionViewWaterfallLayoutItemRenderDirection: Int {
case chtCollectionViewWaterfallLayoutItemRenderDirectionShortestFirst
case chtCollectionViewWaterfallLayoutItemRenderDirectionLeftToRight
case chtCollectionViewWaterfallLayoutItemRenderDirectionRightToLeft
}
public let CHTCollectionElementKindSectionHeader = "CHTCollectionElementKindSectionHeader"
public let CHTCollectionElementKindSectionFooter = "CHTCollectionElementKindSectionFooter"
public class CHTCollectionViewWaterfallLayout: UICollectionViewLayout {
public var columnCount: Int {
didSet {
invalidateLayout()
}}
public var minimumColumnSpacing: CGFloat {
didSet {
invalidateLayout()
}}
public var minimumInteritemSpacing: CGFloat {
didSet {
invalidateLayout()
}}
public var headerHeight: CGFloat {
didSet {
invalidateLayout()
}}
public var footerHeight: CGFloat {
didSet {
invalidateLayout()
}}
public var sectionInset: UIEdgeInsets {
didSet {
invalidateLayout()
}}
public var itemRenderDirection: CHTCollectionViewWaterfallLayoutItemRenderDirection {
didSet {
invalidateLayout()
}
}
// private property and method above.
public weak var delegate: CHTCollectionViewDelegateWaterfallLayout? {
get {
return self.collectionView!.delegate as? CHTCollectionViewDelegateWaterfallLayout
}
}
public var columnHeights: [[CGFloat]]
public var sectionItemAttributes: [[UICollectionViewLayoutAttributes]]
public var allItemAttributes: [UICollectionViewLayoutAttributes]
public var headersAttributes: [Int: UICollectionViewLayoutAttributes]
public var footersAttributes: [Int: UICollectionViewLayoutAttributes]
public var unionRects: [NSValue]
public let unionSize = 20
override public init() {
self.headerHeight = 0.0
self.footerHeight = 0.0
self.columnCount = 2
self.minimumInteritemSpacing = 10
self.minimumColumnSpacing = 10
self.sectionInset = UIEdgeInsets.zero
self.itemRenderDirection =
CHTCollectionViewWaterfallLayoutItemRenderDirection.chtCollectionViewWaterfallLayoutItemRenderDirectionShortestFirst
headersAttributes = [:]
footersAttributes = [:]
unionRects = []
columnHeights = []
allItemAttributes = []
sectionItemAttributes = []
super.init()
}
required public init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
public func columnCountForSection (_ section: Int) -> Int {
if let columnCount = self.delegate?.collectionView?(self.collectionView!, layout: self, columnCountForSection: section) {
return columnCount
} else {
return self.columnCount
}
}
public func itemWidthInSectionAtIndex (_ section: Int) -> CGFloat {
var insets: UIEdgeInsets
if let sectionInsets = self.delegate?.collectionView?(self.collectionView!, layout: self, insetForSectionAtIndex: section) {
insets = sectionInsets
} else {
insets = self.sectionInset
}
let width: CGFloat = self.collectionView!.bounds.size.width - insets.left - insets.right
let columnCount = self.columnCountForSection(section)
let spaceColumCount: CGFloat = CGFloat(columnCount - 1)
return floor((width - (spaceColumCount * self.minimumColumnSpacing)) / CGFloat(columnCount))
}
override public func prepare() {
super.prepare()
let numberOfSections = self.collectionView!.numberOfSections
if numberOfSections == 0 {
return
}
self.headersAttributes = [:]
self.footersAttributes = [:]
self.unionRects = []
self.columnHeights = []
self.allItemAttributes = []
self.sectionItemAttributes = []
for section in 0 ..< numberOfSections {
let columnCount = self.columnCountForSection(section)
var sectionColumnHeights: [CGFloat] = []
for idx in 0 ..< columnCount {
sectionColumnHeights.append(CGFloat(idx))
}
self.columnHeights.append(sectionColumnHeights)
}
var top: CGFloat = 0.0
var attributes = UICollectionViewLayoutAttributes()
for section in 0 ..< numberOfSections {
/*
* 1. Get section-specific metrics (minimumInteritemSpacing, sectionInset)
*/
var minimumInteritemSpacing: CGFloat
if let miniumSpaceing = self.delegate?.collectionView?(self.collectionView!, layout: self, minimumInteritemSpacingForSectionAtIndex: section) {
minimumInteritemSpacing = miniumSpaceing
} else {
minimumInteritemSpacing = self.minimumColumnSpacing
}
var sectionInsets: UIEdgeInsets
if let insets = self.delegate?.collectionView?(self.collectionView!, layout: self, insetForSectionAtIndex: section) {
sectionInsets = insets
} else {
sectionInsets = self.sectionInset
}
let width = self.collectionView!.bounds.size.width - sectionInsets.left - sectionInsets.right
let columnCount = self.columnCountForSection(section)
let spaceColumCount = CGFloat(columnCount - 1)
let itemWidth = floor((width - (spaceColumCount * self.minimumColumnSpacing)) / CGFloat(columnCount))
/*
* 2. Section header
*/
var heightHeader: CGFloat
if let height = self.delegate?.collectionView?(self.collectionView!, layout: self, heightForHeaderInSection: section) {
heightHeader = height
} else {
heightHeader = self.headerHeight
}
if heightHeader > 0 {
attributes = UICollectionViewLayoutAttributes(forSupplementaryViewOfKind: CHTCollectionElementKindSectionHeader, with: IndexPath(row: 0, section: section))
attributes.frame = CGRect(x: 0, y: top, width: self.collectionView!.bounds.size.width, height: heightHeader)
self.headersAttributes[section] = attributes
self.allItemAttributes.append(attributes)
top = attributes.frame.maxY
}
top += sectionInsets.top
for idx in 0 ..< columnCount {
self.columnHeights[section][idx]=top
}
/*
* 3. Section items
*/
let itemCount = self.collectionView!.numberOfItems(inSection: section)
var itemAttributes: [UICollectionViewLayoutAttributes] = []
// Item will be put into shortest column.
for idx in 0 ..< itemCount {
let indexPath = IndexPath(item: idx, section: section)
let columnIndex = self.nextColumnIndexForItem(idx, section: section)
let xOffset = sectionInsets.left + (itemWidth + self.minimumColumnSpacing) * CGFloat(columnIndex)
let yOffset = ((self.columnHeights[section] as AnyObject).object (at: columnIndex) as AnyObject).doubleValue
let itemSize = self.delegate?.collectionView(self.collectionView!, layout: self, sizeForItemAtIndexPath: indexPath)
var itemHeight: CGFloat = 0.0
if itemSize?.height > 0 && itemSize?.width > 0 {
itemHeight = floor(itemSize!.height * itemWidth / itemSize!.width)
}
attributes = UICollectionViewLayoutAttributes(forCellWith: indexPath)
attributes.frame = CGRect(x: xOffset, y: CGFloat(yOffset!), width: itemWidth, height: itemHeight)
itemAttributes.append(attributes)
self.allItemAttributes.append(attributes)
self.columnHeights[section][columnIndex] = attributes.frame.maxY + minimumInteritemSpacing
}
self.sectionItemAttributes.append(itemAttributes)
/*
* 4. Section footer
*/
var footerHeight: CGFloat = 0.0
let columnIndex = self.longestColumnIndexInSection(section)
top = self.columnHeights[section][columnIndex] - minimumInteritemSpacing + sectionInsets.bottom
if let height = self.delegate?.collectionView?(self.collectionView!, layout: self, heightForFooterInSection: section) {
footerHeight = height
} else {
footerHeight = self.footerHeight
}
if footerHeight > 0 {
attributes = UICollectionViewLayoutAttributes(forSupplementaryViewOfKind: CHTCollectionElementKindSectionFooter, with: IndexPath(item: 0, section: section))
attributes.frame = CGRect(x: 0, y: top, width: self.collectionView!.bounds.size.width, height: footerHeight)
self.footersAttributes[section] = attributes
self.allItemAttributes.append(attributes)
top = attributes.frame.maxY
}
for idx in 0 ..< columnCount {
self.columnHeights[section][idx] = top
}
}
var idx = 0
let itemCounts = self.allItemAttributes.count
while idx < itemCounts {
let rect1 = self.allItemAttributes[idx].frame
idx = min(idx + unionSize, itemCounts) - 1
let rect2 = self.allItemAttributes[idx].frame
self.unionRects.append(NSValue(cgRect:rect1.union(rect2)))
idx += 1
}
}
override public var collectionViewContentSize: CGSize {
let numberOfSections = self.collectionView!.numberOfSections
if numberOfSections == 0 {
return CGSize.zero
}
var contentSize = self.collectionView!.bounds.size as CGSize
if columnHeights.count > 0 {
if let height = self.columnHeights[columnHeights.count - 1].first {
contentSize.height = height
return contentSize
}
}
return CGSize.zero
}
override public func layoutAttributesForItem(at indexPath: IndexPath) -> UICollectionViewLayoutAttributes? {
if (indexPath as NSIndexPath).section >= self.sectionItemAttributes.count {
return nil
}
let list = self.sectionItemAttributes[indexPath.section]
if (indexPath as NSIndexPath).item >= list.count {
return nil
}
return list[indexPath.item]
}
override public func layoutAttributesForSupplementaryView(ofKind elementKind: String, at indexPath: IndexPath) -> UICollectionViewLayoutAttributes {
var attribute: UICollectionViewLayoutAttributes?
if elementKind == CHTCollectionElementKindSectionHeader {
attribute = self.headersAttributes[indexPath.section]
} else if elementKind == CHTCollectionElementKindSectionFooter {
attribute = self.footersAttributes[indexPath.section]
}
guard let returnAttribute = attribute else {
return UICollectionViewLayoutAttributes()
}
return returnAttribute
}
override public func layoutAttributesForElements(in rect: CGRect) -> [UICollectionViewLayoutAttributes]? {
var begin = 0, end = self.unionRects.count
var attrs: [UICollectionViewLayoutAttributes] = []
for i in 0 ..< end {
let unionRect = self.unionRects[i]
if rect.intersects(unionRect.cgRectValue) {
begin = i * unionSize
break
}
}
for i in (0 ..< self.unionRects.count).reversed() {
let unionRect = self.unionRects[i]
if rect.intersects(unionRect.cgRectValue) {
end = min((i + 1) * unionSize, self.allItemAttributes.count)
break
}
}
for i in begin ..< end {
let attr = self.allItemAttributes[i]
if rect.intersects(attr.frame) {
attrs.append(attr)
}
}
return attrs
}
override public func shouldInvalidateLayout (forBoundsChange newBounds: CGRect) -> Bool {
let oldBounds = self.collectionView!.bounds
if newBounds.width != oldBounds.width {
return true
}
return false
}
/**
* Find the shortest column.
*
* @return index for the shortest column
*/
public func shortestColumnIndexInSection (_ section: Int) -> Int {
var index = 0
var shorestHeight = CGFloat.greatestFiniteMagnitude
for (idx, height) in self.columnHeights[section].enumerated() {
if height < shorestHeight {
shorestHeight = height
index = idx
}
}
return index
}
/**
* Find the longest column.
*
* @return index for the longest column
*/
public func longestColumnIndexInSection (_ section: Int) -> Int {
var index = 0
var longestHeight: CGFloat = 0.0
for (idx, height) in self.columnHeights[section].enumerated() {
if height > longestHeight {
longestHeight = height
index = idx
}
}
return index
}
/**
* Find the index for the next column.
*
* @return index for the next column
*/
public func nextColumnIndexForItem (_ item: Int, section: Int) -> Int {
var index = 0
let columnCount = self.columnCountForSection(section)
switch self.itemRenderDirection {
case .chtCollectionViewWaterfallLayoutItemRenderDirectionShortestFirst :
index = self.shortestColumnIndexInSection(section)
case .chtCollectionViewWaterfallLayoutItemRenderDirectionLeftToRight :
index = (item%columnCount)
case .chtCollectionViewWaterfallLayoutItemRenderDirectionRightToLeft:
index = (columnCount - 1) - (item % columnCount)
}
return index
}
}