-
Notifications
You must be signed in to change notification settings - Fork 389
/
Copy pathLocationViewController.swift
217 lines (175 loc) · 6.73 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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
//
// LocationViewController.swift
// MullvadVPN
//
// Created by pronebird on 02/05/2019.
// Copyright © 2019 Mullvad VPN AB. All rights reserved.
//
import MullvadLogging
import MullvadREST
import MullvadSettings
import MullvadTypes
import UIKit
protocol LocationViewControllerDelegate: AnyObject {
func didRequestRouteToCustomLists(_ controller: LocationViewController, nodes: [LocationNode])
}
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 cachedRelays: CachedRelays?
private var filter = RelayFilter()
var relayLocations: UserSelectedRelays?
weak var delegate: LocationViewControllerDelegate?
var customListRepository: CustomListRepositoryProtocol
override var preferredStatusBarStyle: UIStatusBarStyle {
.lightContent
}
var filterViewShouldBeHidden: Bool {
return (filter.ownership == .any) && (filter.providers == .any)
}
var navigateToFilter: (() -> Void)?
var didSelectRelays: ((UserSelectedRelays) -> Void)?
var didUpdateFilter: ((RelayFilter) -> Void)?
var didFinish: (() -> Void)?
init(customListRepository: CustomListRepositoryProtocol) {
self.customListRepository = customListRepository
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
navigationItem.title = NSLocalizedString(
"NAVIGATION_TITLE",
tableName: "SelectLocation",
value: "Select location",
comment: ""
)
navigationItem.leftBarButtonItem = UIBarButtonItem(
title: NSLocalizedString(
"NAVIGATION_TITLE",
tableName: "SelectLocation",
value: "Filter",
comment: ""
),
primaryAction: UIAction(handler: { [weak self] _ in
self?.navigateToFilter?()
})
)
navigationItem.rightBarButtonItem = UIBarButtonItem(
systemItem: .done,
primaryAction: UIAction(handler: { [weak self] _ in
self?.didFinish?()
})
)
navigationItem.rightBarButtonItem?.accessibilityIdentifier = .closeSelectLocationButton
setUpDataSources()
setUpTableView()
setUpTopContent()
view.addConstrainedSubviews([topContentView, tableView]) {
topContentView.pinEdgesToSuperviewMargins(.all().excluding(.bottom))
tableView.pinEdgesToSuperview(.all().excluding(.top))
tableView.topAnchor.constraint(equalTo: topContentView.bottomAnchor)
}
}
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
dataSource?.scrollToSelectedRelay()
}
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
tableView.flashScrollIndicators()
}
// MARK: - Public
func setCachedRelays(_ cachedRelays: CachedRelays, filter: RelayFilter) {
self.cachedRelays = cachedRelays
self.filter = filter
if filterViewShouldBeHidden {
filterView.isHidden = true
} else {
filterView.isHidden = false
filterView.setFilter(filter)
}
dataSource?.setRelays(cachedRelays.relays, selectedRelays: relayLocations, filter: filter)
}
func refreshCustomLists() {
dataSource?.refreshCustomLists(selectedRelays: relayLocations)
}
// MARK: - Private
private func setUpDataSources() {
let allLocationDataSource = AllLocationDataSource()
let customListsDataSource = CustomListsDataSource(repository: customListRepository)
dataSource = LocationDataSource(
tableView: tableView,
allLocations: allLocationDataSource,
customLists: customListsDataSource
)
dataSource?.didSelectRelayLocations = { [weak self] locations in
self?.didSelectRelays?(locations)
}
dataSource?.didTapEditCustomLists = { [weak self] in
guard let self else { return }
delegate?.didRequestRouteToCustomLists(self, nodes: allLocationDataSource.nodes)
}
if let cachedRelays {
dataSource?.setRelays(cachedRelays.relays, selectedRelays: relayLocations, filter: filter)
}
}
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.didUpdateFilter = { [weak self] in
guard let self else { return }
filter = $0
didUpdateFilter?($0)
if let cachedRelays {
setCachedRelays(cachedRelays, filter: filter)
}
}
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)
}
}