forked from material-components/material-components-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBaseCellExample.swift
128 lines (109 loc) · 4.56 KB
/
BaseCellExample.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
// Copyright 2018-present the Material Components for iOS authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import Foundation
import MaterialComponents.MaterialList
import MaterialComponents.MaterialShadowElevations
class BaseCellExample : UIViewController {
private let arbitraryCellHeight: CGFloat = 75
fileprivate let baseCellIdentifier: String = "baseCellIdentifier"
fileprivate let numberOfCells: Int = 100
private lazy var collectionView: UICollectionView = {
return UICollectionView(frame: .zero, collectionViewLayout: UICollectionViewFlowLayout())
}()
private var collectionViewLayout: UICollectionViewFlowLayout {
return collectionView.collectionViewLayout as! UICollectionViewFlowLayout
}
private var collectionViewEstimatedCellSize: CGSize {
return CGSize(width: collectionView.bounds.size.width - 20,
height: arbitraryCellHeight)
}
override func viewDidLoad() {
super.viewDidLoad()
parent?.automaticallyAdjustsScrollViewInsets = false
automaticallyAdjustsScrollViewInsets = false
setUpCollectionView()
}
override func viewWillLayoutSubviews() {
super.viewWillLayoutSubviews()
positionCollectionView()
}
func setUpCollectionView() {
collectionViewLayout.estimatedItemSize = collectionViewEstimatedCellSize
collectionViewLayout.minimumInteritemSpacing = 5
collectionViewLayout.minimumLineSpacing = 5
collectionView.backgroundColor = .white
collectionView.register(MDCBaseCell.self, forCellWithReuseIdentifier: baseCellIdentifier)
collectionView.delegate = self
collectionView.dataSource = self
view.addSubview(collectionView)
}
func positionCollectionView() {
var originX = view.bounds.origin.x
var originY = view.bounds.origin.y
var width = view.bounds.size.width
var height = view.bounds.size.height
if #available(iOS 11.0, *) {
originX += view.safeAreaInsets.left
originY += view.safeAreaInsets.top
width -= (view.safeAreaInsets.left + view.safeAreaInsets.right)
height -= (view.safeAreaInsets.top + view.safeAreaInsets.bottom)
}
let frame = CGRect(x: originX, y: originY, width: width, height: height);
collectionView.frame = frame
collectionViewLayout.estimatedItemSize = collectionViewEstimatedCellSize
collectionViewLayout.invalidateLayout()
collectionView.reloadData()
}
}
extension BaseCellExample: UICollectionViewDelegate {
func collectionView(_ collectionView: UICollectionView, didHighlightItemAt indexPath: IndexPath) {
guard let cell = collectionView.cellForItem(at: indexPath) as? MDCBaseCell else { fatalError() }
cell.elevation = ShadowElevation(rawValue: 10)
}
func collectionView(_ collectionView: UICollectionView,
didUnhighlightItemAt indexPath: IndexPath) {
guard let cell = collectionView.cellForItem(at: indexPath) as? MDCBaseCell else { fatalError() }
cell.elevation = ShadowElevation(rawValue: 0)
}
}
extension BaseCellExample: UICollectionViewDataSource {
func numberOfSections(in collectionView: UICollectionView) -> Int {
return 1
}
func collectionView(_ collectionView: UICollectionView,
numberOfItemsInSection section: Int) -> Int {
return numberOfCells
}
func collectionView(_ collectionView: UICollectionView,
cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
guard let cell = collectionView.dequeueReusableCell(withReuseIdentifier: baseCellIdentifier,
for: indexPath) as? MDCBaseCell
else { fatalError() }
cell.layer.borderColor = UIColor.darkGray.cgColor
cell.layer.borderWidth = 1
cell.inkColor = UIColor(red: 0, green: 0, blue: 0, alpha: 0.1)
return cell
}
}
// MARK: Catalog By Convention
extension BaseCellExample {
@objc class func catalogMetadata() -> [String: Any] {
return [
"breadcrumbs": ["List Items", "MDCBaseCell Example (Swift)"],
"description": "MDCBaseCell Example (Swift)",
"primaryDemo": true,
"presentable": true,
]
}
}