blob: 2500be383b72e8e259209597e01a3f859325681e (
plain)
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
|
//
// SelectLocationCell.swift
// MullvadVPN
//
// Created by pronebird on 02/05/2019.
// Copyright © 2019 Mullvad VPN AB. All rights reserved.
//
import UIKit
class SelectLocationCell: BasicTableViewCell {
typealias CollapseHandler = (SelectLocationCell) -> Void
@IBOutlet var locationLabel: UILabel!
@IBOutlet var statusIndicator: RelayStatusIndicatorView!
@IBOutlet var tickImageView: UIImageView!
@IBOutlet var collapseButton: UIButton!
private let chevronDown = UIImage(imageLiteralResourceName: "IconChevronDown")
private let chevronUp = UIImage(imageLiteralResourceName: "IconChevronUp")
var isDisabled = false {
didSet {
updateDisabled()
updateBackgroundColor()
}
}
var isExpanded = false {
didSet {
updateCollapseImage()
}
}
var showsCollapseControl = false {
didSet {
collapseButton.isHidden = !showsCollapseControl
}
}
var didCollapseHandler: CollapseHandler?
private let preferredMargins = UIEdgeInsets(top: 16, left: 28, bottom: 16, right: 12)
override var indentationLevel: Int {
didSet {
updateBackgroundColor()
}
}
override func awakeFromNib() {
super.awakeFromNib()
indentationWidth = 16
statusIndicator.tintColor = .white
collapseButton.addTarget(self, action: #selector(handleCollapseButton(_ :)), for: .touchUpInside)
updateCollapseImage()
updateDisabled()
updateBackgroundColor()
contentView.layoutMargins = preferredMargins
}
override func layoutSubviews() {
super.layoutSubviews()
let indentPoints = CGFloat(indentationLevel) * indentationWidth
contentView.frame = CGRect(
x: indentPoints,
y: contentView.frame.origin.y,
width: contentView.frame.size.width - indentPoints,
height: contentView.frame.size.height
)
}
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
updateTickImage()
}
private func updateTickImage() {
statusIndicator.isHidden = isSelected
tickImageView?.isHidden = !isSelected
}
private func updateDisabled() {
contentView.alpha = isDisabled ? 0.5 : 1
}
private func updateBackgroundColor() {
backgroundView?.backgroundColor = backgroundColorForIdentationLevel()
selectedBackgroundView?.backgroundColor = selectedBackgroundColorForIndentationLevel()
}
private func backgroundColorForIdentationLevel() -> UIColor {
if isDisabled {
switch indentationLevel {
case 1:
return UIColor.SubCell.disabledBackgroundColor
case 2:
return UIColor.SubSubCell.disabledBackgroundColor
default:
return UIColor.Cell.disabledBackgroundColor
}
} else {
switch indentationLevel {
case 1:
return UIColor.SubCell.backgroundColor
case 2:
return UIColor.SubSubCell.backgroundColor
default:
return UIColor.Cell.backgroundColor
}
}
}
private func selectedBackgroundColorForIndentationLevel() -> UIColor {
if isDisabled {
return UIColor.Cell.disabledSelectedBackgroundColor
} else {
return UIColor.Cell.selectedBackgroundColor
}
}
@objc private func handleCollapseButton(_ sender: UIControl) {
didCollapseHandler?(self)
}
private func updateCollapseImage() {
let image = isExpanded ? chevronUp : chevronDown
collapseButton.setImage(image, for: .normal)
}
}
|