Summary: Changelog: Tidy up license headers Reviewed By: SidharthGuglani Differential Revision: D17919414 fbshipit-source-id: 0501b495dc0a42256ca6ba3284a873da1ab175c0
71 lines
2.2 KiB
Swift
71 lines
2.2 KiB
Swift
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
import UIKit
|
|
import IGListKit
|
|
import YogaKit
|
|
|
|
struct DemoItem {
|
|
let name: String
|
|
root.backgroundColor = .red
|
|
root.yoga.isEnabled = true
|
|
root.yoga.width = YGValue(self.view.bounds.size.width)
|
|
root.yoga.height = YGValue(self.view.bounds.size.height)
|
|
root.yoga.alignItems = .center
|
|
}
|
|
|
|
final class SwiftViewController: UIViewController, IGListAdapterDataSource {
|
|
|
|
lazy var adapter: IGListAdapter = {
|
|
return IGListAdapter(updater: IGListAdapterUpdater(), viewController: self, workingRangeSize: 0)
|
|
}()
|
|
let collectionView = IGListCollectionView(frame: .zero, collectionViewLayout: UICollectionViewFlowLayout())
|
|
|
|
//MARK: UIViewController
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
title = "YogaKit Examples"
|
|
view.addSubview(collectionView)
|
|
adapter.collectionView = collectionView
|
|
adapter.dataSource = self
|
|
}
|
|
|
|
override func viewDidLayoutSubviews() {
|
|
super.viewDidLayoutSubviews()
|
|
collectionView.frame = view.bounds
|
|
}
|
|
|
|
|
|
//MARK: IGListAdapterDataSource
|
|
|
|
func objects(for listAdapter: IGListAdapter) -> [IGListDiffable] {
|
|
return ["Dustin" as IGListDiffable, "Ryan" as IGListDiffable]
|
|
}
|
|
|
|
func listAdapter(_ listAdapter: IGListAdapter, sectionControllerFor object: Any) -> IGListSectionController {
|
|
let sizeBlock: IGListSingleSectionCellSizeBlock = { (model, context) in
|
|
return CGSize(width: (context?.containerSize.width)!, height: 100.0)
|
|
}
|
|
let configureBlock: IGListSingleSectionCellConfigureBlock = { (model, cell) in
|
|
guard let m = model as? String else {
|
|
return
|
|
}
|
|
|
|
cell.backgroundColor = (m == "Dustin") ? .blue : .red
|
|
}
|
|
|
|
return IGListSingleSectionController(cellClass: UICollectionViewCell.self,
|
|
configureBlock: configureBlock,
|
|
sizeBlock: sizeBlock)
|
|
}
|
|
|
|
func emptyView(for listAdapter: IGListAdapter) -> UIView? {
|
|
return nil
|
|
}
|
|
}
|