-
Notifications
You must be signed in to change notification settings - Fork 392
/
Copy pathLocationViewController.swift
195 lines (157 loc) · 6.1 KB
/
LocationViewController.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
//
// LocationViewController.swift
// MullvadVPN
//
// Created by pronebird on 02/05/2019.
// Copyright © 2019 Mullvad VPN AB. All rights reserved.
//
import MullvadREST
import MullvadSettings
import MullvadTypes
import UIKit
protocol LocationViewControllerDelegate: AnyObject {
func navigateToCustomLists(nodes: [LocationNode])
func didSelectRelays(relays: UserSelectedRelays)
func didUpdateFilter(filter: RelayFilter)
}
final class LocationViewController: UIViewController {
private let searchBar = UISearchBar()
private let tableView = UITableView(frame: .zero, style: .grouped)
private let topContentView = UIStackView()
private let filterView = RelayFilterView()
private var dataSource: LocationDataSource?
private var relaysWithLocation: LocationRelays?
private var filter = RelayFilter()
private var selectedRelays: RelaySelection
private var shouldFilterDaita: Bool
weak var delegate: LocationViewControllerDelegate?
var customListRepository: CustomListRepositoryProtocol
override var preferredStatusBarStyle: UIStatusBarStyle {
.lightContent
}
var filterViewShouldBeHidden: Bool {
!shouldFilterDaita && (filter.ownership == .any) && (filter.providers == .any)
}
init(
customListRepository: CustomListRepositoryProtocol,
selectedRelays: RelaySelection,
shouldFilterDaita: Bool
) {
self.customListRepository = customListRepository
self.selectedRelays = selectedRelays
self.shouldFilterDaita = shouldFilterDaita
super.init(nibName: nil, bundle: nil)
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
// MARK: - View lifecycle
override func viewDidLoad() {
super.viewDidLoad()
view.accessibilityIdentifier = .selectLocationView
view.backgroundColor = .secondaryColor
setUpDataSource()
setUpTableView()
setUpTopContent()
view.addConstrainedSubviews([topContentView, tableView]) {
topContentView.pinEdgesToSuperviewMargins(.all().excluding(.bottom))
tableView.pinEdgesToSuperview(.all().excluding(.top))
tableView.topAnchor.constraint(equalTo: topContentView.bottomAnchor, constant: 8)
}
}
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
dataSource?.scrollToSelectedRelay()
}
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
tableView.flashScrollIndicators()
}
// MARK: - Public
func setRelaysWithLocation(_ relaysWithLocation: LocationRelays, filter: RelayFilter) {
self.relaysWithLocation = relaysWithLocation
self.filter = filter
if filterViewShouldBeHidden {
filterView.isHidden = true
} else {
filterView.isHidden = false
filterView.setFilter(filter)
}
dataSource?.setRelays(relaysWithLocation, selectedRelays: selectedRelays)
}
func refreshCustomLists() {
dataSource?.refreshCustomLists(selectedRelays: selectedRelays)
}
func setSelectedRelays(_ selectedRelays: RelaySelection) {
self.selectedRelays = selectedRelays
dataSource?.setSelectedRelays(selectedRelays)
}
// MARK: - Private
private func setUpDataSource() {
dataSource = LocationDataSource(
tableView: tableView,
allLocations: AllLocationDataSource(),
customLists: CustomListsDataSource(repository: customListRepository)
)
dataSource?.didSelectRelayLocations = { [weak self] relays in
self?.delegate?.didSelectRelays(relays: relays)
}
dataSource?.didTapEditCustomLists = { [weak self] in
guard let self else { return }
if let relaysWithLocation {
let allLocationDataSource = AllLocationDataSource()
allLocationDataSource.reload(relaysWithLocation)
delegate?.navigateToCustomLists(nodes: allLocationDataSource.nodes)
}
}
if let relaysWithLocation {
dataSource?.setRelays(relaysWithLocation, selectedRelays: selectedRelays)
}
}
private func setUpTableView() {
tableView.backgroundColor = view.backgroundColor
tableView.separatorColor = .secondaryColor
tableView.separatorInset = .zero
tableView.rowHeight = 56
tableView.sectionHeaderHeight = 56
tableView.indicatorStyle = .white
tableView.keyboardDismissMode = .onDrag
tableView.accessibilityIdentifier = .selectLocationTableView
}
private func setUpTopContent() {
topContentView.axis = .vertical
topContentView.addArrangedSubview(filterView)
topContentView.addArrangedSubview(searchBar)
filterView.isHidden = filterViewShouldBeHidden
filterView.setDaita(shouldFilterDaita)
filterView.didUpdateFilter = { [weak self] in
self?.delegate?.didUpdateFilter(filter: $0)
}
setUpSearchBar()
}
private func setUpSearchBar() {
searchBar.delegate = self
searchBar.searchBarStyle = .minimal
searchBar.layer.cornerRadius = 8
searchBar.clipsToBounds = true
searchBar.placeholder = NSLocalizedString(
"SEARCHBAR_PLACEHOLDER",
tableName: "SelectLocation",
value: "Search for...",
comment: ""
)
searchBar.searchTextField.accessibilityIdentifier = .selectLocationSearchTextField
UITextField.SearchTextFieldAppearance.inactive.apply(to: searchBar)
}
}
extension LocationViewController: UISearchBarDelegate {
func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) {
dataSource?.filterRelays(by: searchText)
}
func searchBarTextDidBeginEditing(_ searchBar: UISearchBar) {
UITextField.SearchTextFieldAppearance.active.apply(to: searchBar)
}
func searchBarTextDidEndEditing(_ searchBar: UISearchBar) {
UITextField.SearchTextFieldAppearance.inactive.apply(to: searchBar)
}
}