-
Notifications
You must be signed in to change notification settings - Fork 229
/
Copy pathHouseCell.swift
89 lines (70 loc) · 3.04 KB
/
HouseCell.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
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
//
// Created by Luc Dion on 2017-10-31.
import UIKit
import FlexLayout
class HouseCell: UICollectionViewCell {
static let reuseIdentifier = "HouseCell"
fileprivate let nameLabel = UILabel()
fileprivate let mainImage = UIImageView()
fileprivate let priceLabel = UILabel()
fileprivate let distanceLabel = UILabel()
fileprivate let padding: CGFloat = 8
override init(frame: CGRect) {
super.init(frame: frame)
let footerBackgroundColor = UIColor.flexLayoutColor.withAlphaComponent(0.2)
backgroundColor = .white
nameLabel.font = UIFont.systemFont(ofSize: 24)
nameLabel.textColor = .white
mainImage.backgroundColor = .black
mainImage.contentMode = .scaleAspectFill
mainImage.clipsToBounds = true
distanceLabel.textAlignment = .right
contentView.flex.define { (flex) in
flex.addItem().backgroundColor(.flexLayoutColor).paddingHorizontal(padding).define({ (flex) in
flex.addItem(nameLabel).grow(1)
})
flex.addItem(mainImage).height(300)
flex.addItem().direction(.row).justifyContent(.spaceBetween).padding(6, padding, 6, padding).backgroundColor(footerBackgroundColor)
.define({ (flex) in
flex.addItem(priceLabel)
flex.addItem(distanceLabel).grow(1)
})
}
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
func configure(house: House) {
nameLabel.text = house.name
nameLabel.flex.markDirty()
mainImage.download(url: house.mainImageURL)
priceLabel.text = house.price
priceLabel.flex.markDirty()
distanceLabel.text = "\(house.distance) KM"
distanceLabel.flex.markDirty()
setNeedsLayout()
}
override func layoutSubviews() {
super.layoutSubviews()
layout()
}
override func sizeThatFits(_ size: CGSize) -> CGSize {
contentView.pin.width(size.width)
layout()
return contentView.frame.size
}
private func layout() {
contentView.flex.layout(mode: .adjustHeight)
}
}