mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-24 09:48:21 +00:00
Summary: ## Changes in this pull request I went through and improved some of the demo apps UI to look a bit cleaner on iOS 26. ### Checklist - [x] All tests pass. Demo project builds and runs. - [x] I added tests, an experiment, or detailed why my change isn't tested. - [x] I added an entry to the `CHANGELOG.md` for any breaking changes, enhancements, or bug fixes. - [x] I have reviewed the [contributing guide](https://github.com/Instagram/IGListKit/blob/main/.github/CONTRIBUTING.md) Pull Request resolved: https://github.com/instagram/IGListKit/pull/1655 Reviewed By: jurmarcus Differential Revision: D93350298 Pulled By: TimOliver fbshipit-source-id: 2a8c5ddbca313e9a5ccca7f8b06f04c6bc44649b
55 lines
1.7 KiB
Swift
55 lines
1.7 KiB
Swift
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
import IGListKit
|
|
import IGListSwiftKit
|
|
import UIKit
|
|
|
|
final class GridSectionController: ListSectionController {
|
|
|
|
private var object: GridItem?
|
|
private let isReorderable: Bool
|
|
|
|
required init(isReorderable: Bool = false) {
|
|
self.isReorderable = isReorderable
|
|
super.init()
|
|
self.minimumInteritemSpacing = 1
|
|
self.minimumLineSpacing = 1
|
|
}
|
|
|
|
override func numberOfItems() -> Int {
|
|
return object?.itemCount ?? 0
|
|
}
|
|
|
|
override func sizeForItem(at index: Int) -> CGSize {
|
|
let itemsPerRow = 4.0
|
|
let width = (collectionContext?.containerSize.width ?? 0) - ((itemsPerRow - 1) * self.minimumLineSpacing)
|
|
let itemSize = floor(width / itemsPerRow)
|
|
return CGSize(width: itemSize, height: itemSize)
|
|
}
|
|
|
|
override func cellForItem(at index: Int) -> UICollectionViewCell {
|
|
let cell: CenterLabelCell = collectionContext.dequeueReusableCell(for: self, at: index)
|
|
cell.text = object?.items[index] ?? "undefined"
|
|
cell.backgroundColor = object?.color
|
|
return cell
|
|
}
|
|
|
|
override func didUpdate(to object: Any) {
|
|
self.object = object as? GridItem
|
|
}
|
|
|
|
override func canMoveItem(at index: Int) -> Bool {
|
|
return isReorderable
|
|
}
|
|
|
|
override func moveObject(from sourceIndex: Int, to destinationIndex: Int) {
|
|
guard let object = object else { return }
|
|
let item = object.items.remove(at: sourceIndex)
|
|
object.items.insert(item, at: destinationIndex)
|
|
}
|
|
}
|