forked from chiahsien/CHTCollectionViewWaterfallLayout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHTCollectionViewWaterfallLayout.swift
executable file
·434 lines (368 loc) · 17.2 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
433
434
//
// 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 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: NSInteger) -> CGFloat
@objc optional func collectionView (_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout,
heightForFooterInSection section: NSInteger) -> CGFloat
@objc optional func collectionView (_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout,
insetForSectionAtIndex section: NSInteger) -> UIEdgeInsets
@objc optional func collectionView (_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout,
minimumInteritemSpacingForSectionAtIndex section: NSInteger) -> CGFloat
@objc optional func collectionView (_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout,
columnCountForSection section: NSInteger) -> NSInteger
}
enum CHTCollectionViewWaterfallLayoutItemRenderDirection : NSInteger{
case chtCollectionViewWaterfallLayoutItemRenderDirectionShortestFirst
case chtCollectionViewWaterfallLayoutItemRenderDirectionLeftToRight
case chtCollectionViewWaterfallLayoutItemRenderDirectionRightToLeft
}
class CHTCollectionViewWaterfallLayout : UICollectionViewLayout{
let CHTCollectionElementKindSectionHeader = "CHTCollectionElementKindSectionHeader"
let CHTCollectionElementKindSectionFooter = "CHTCollectionElementKindSectionFooter"
var columnCount : NSInteger{
didSet{
invalidateLayout()
}}
var minimumColumnSpacing : CGFloat{
didSet{
invalidateLayout()
}}
var minimumInteritemSpacing : CGFloat{
didSet{
invalidateLayout()
}}
var headerHeight : CGFloat{
didSet{
invalidateLayout()
}}
var footerHeight : CGFloat{
didSet{
invalidateLayout()
}}
var sectionInset : UIEdgeInsets{
didSet{
invalidateLayout()
}}
var itemRenderDirection : CHTCollectionViewWaterfallLayoutItemRenderDirection{
didSet{
invalidateLayout()
}}
// private property and method above.
weak var delegate : CHTCollectionViewDelegateWaterfallLayout?{
get{
return self.collectionView!.delegate as? CHTCollectionViewDelegateWaterfallLayout
}
}
var columnHeights : NSMutableArray
var sectionItemAttributes : NSMutableArray
var allItemAttributes : NSMutableArray
var headersAttributes : NSMutableDictionary
var footersAttributes : NSMutableDictionary
var unionRects : NSMutableArray
let unionSize = 20
override 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 = NSMutableDictionary()
footersAttributes = NSMutableDictionary()
unionRects = NSMutableArray()
columnHeights = NSMutableArray()
allItemAttributes = NSMutableArray()
sectionItemAttributes = NSMutableArray()
super.init()
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
func columnCountForSection (_ section : NSInteger) -> NSInteger {
if let columnCount = self.delegate?.collectionView?(self.collectionView!, layout: self, columnCountForSection: section){
return columnCount
}else{
return self.columnCount
}
}
func itemWidthInSectionAtIndex (_ section : NSInteger) -> 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 func prepare(){
super.prepare()
let numberOfSections = self.collectionView!.numberOfSections
if numberOfSections == 0 {
return
}
self.headersAttributes.removeAllObjects()
self.footersAttributes.removeAllObjects()
self.unionRects.removeAllObjects()
self.columnHeights.removeAllObjects()
self.allItemAttributes.removeAllObjects()
self.sectionItemAttributes.removeAllObjects()
for section in 0 ..< numberOfSections {
let columnCount = self.columnCountForSection(section)
let sectionColumnHeights = NSMutableArray(capacity: columnCount)
for idx in 0 ..< columnCount {
sectionColumnHeights.add(idx)
}
self.columnHeights.add(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.setObject(attributes, forKey: (section as NSCopying))
self.allItemAttributes.add(attributes)
top = attributes.frame.maxY
}
top += sectionInsets.top
for idx in 0 ..< columnCount {
if let sectionColumnHeights = self.columnHeights[section] as? NSMutableArray {
sectionColumnHeights[idx]=top
}
}
/*
* 3. Section items
*/
let itemCount = self.collectionView!.numberOfItems(inSection: section)
let itemAttributes = NSMutableArray(capacity: itemCount)
// 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.add(attributes)
self.allItemAttributes.add(attributes)
if let sectionColumnHeights = self.columnHeights[section] as? NSMutableArray {
sectionColumnHeights[columnIndex]=attributes.frame.maxY + minimumInteritemSpacing
}
}
self.sectionItemAttributes.add(itemAttributes)
/*
* 4. Section footer
*/
var footerHeight : CGFloat = 0.0
let columnIndex = self.longestColumnIndexInSection(section)
top = CGFloat(((self.columnHeights[section] as! NSMutableArray).object(at: columnIndex) as AnyObject).floatValue) - 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.setObject(attributes, forKey: section as NSCopying)
self.allItemAttributes.add(attributes)
top = attributes.frame.maxY
}
for idx in 0 ..< columnCount {
if let sectionColumnHeights = self.columnHeights[section] as? NSMutableArray {
sectionColumnHeights[idx]=top
}
}
}
var idx = 0
let itemCounts = self.allItemAttributes.count
while(idx < itemCounts){
let rect1 = (self.allItemAttributes.object(at: idx) as AnyObject).frame as CGRect
idx = min(idx + unionSize, itemCounts) - 1
let rect2 = (self.allItemAttributes.object(at: idx) as AnyObject).frame as CGRect
self.unionRects.add(NSValue(cgRect:rect1.union(rect2)))
idx += 1
}
}
override var collectionViewContentSize : CGSize{
let numberOfSections = self.collectionView!.numberOfSections
if numberOfSections == 0{
return CGSize.zero
}
var contentSize = self.collectionView!.bounds.size as CGSize
let height = (self.columnHeights.lastObject! as AnyObject).firstObject as! NSNumber
contentSize.height = CGFloat(height.doubleValue)
return contentSize
}
override func layoutAttributesForItem(at indexPath: IndexPath) -> UICollectionViewLayoutAttributes? {
if (indexPath as NSIndexPath).section >= self.sectionItemAttributes.count {
return nil
}
let list = self.sectionItemAttributes.object(at: (indexPath as NSIndexPath).section) as! NSArray
if (indexPath as NSIndexPath).item >= list.count {
return nil;
}
return list.object(at: (indexPath as NSIndexPath).item) as? UICollectionViewLayoutAttributes
}
override func layoutAttributesForSupplementaryView(ofKind elementKind: String, at indexPath: IndexPath) -> UICollectionViewLayoutAttributes{
var attribute = UICollectionViewLayoutAttributes()
if elementKind == CHTCollectionElementKindSectionHeader{
attribute = self.headersAttributes.object(forKey: (indexPath as NSIndexPath).section) as! UICollectionViewLayoutAttributes
}else if elementKind == CHTCollectionElementKindSectionFooter{
attribute = self.footersAttributes.object(forKey: (indexPath as NSIndexPath).section) as! UICollectionViewLayoutAttributes
}
return attribute
}
override func layoutAttributesForElements(in rect: CGRect) -> [UICollectionViewLayoutAttributes]? {
var begin = 0, end = self.unionRects.count
let attrs = NSMutableArray()
for i in 0 ..< end {
if let unionRect = self.unionRects.object(at: i) as? NSValue {
if rect.intersects(unionRect.cgRectValue) {
begin = i * unionSize;
break
}
}
}
for i in (0 ..< self.unionRects.count).reversed() {
if let unionRect = self.unionRects.object(at: i) as? NSValue {
if rect.intersects(unionRect.cgRectValue){
end = min((i+1)*unionSize,self.allItemAttributes.count)
break
}
}
}
for i in begin ..< end {
let attr = self.allItemAttributes.object(at: i) as! UICollectionViewLayoutAttributes
if rect.intersects(attr.frame) {
attrs.add(attr)
}
}
return NSArray(array: attrs) as? [UICollectionViewLayoutAttributes]
}
override 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
*/
func shortestColumnIndexInSection (_ section: NSInteger) -> NSInteger {
var index = 0
var shorestHeight = MAXFLOAT
(self.columnHeights[section] as AnyObject).enumerateObjects { (obj: Any, idx: NSInteger, pointer: UnsafeMutablePointer<ObjCBool>) in
let height = obj as! Float
if (height<shorestHeight){
shorestHeight = height
index = idx
}
}
return index
}
/**
* Find the longest column.
*
* @return index for the longest column
*/
func longestColumnIndexInSection (_ section: NSInteger) -> NSInteger {
var index = 0
var longestHeight:Float = 0.0
(self.columnHeights[section] as AnyObject).enumerateObjects { (obj: Any, idx: NSInteger, pointer: UnsafeMutablePointer<ObjCBool>) in
let height = obj as! Float
if (height>longestHeight){
longestHeight = height
index = idx
}
}
return index
}
/**
* Find the index for the next column.
*
* @return index for the next column
*/
func nextColumnIndexForItem (_ item : NSInteger, section: NSInteger) -> 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
}
}