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
218
219
220
221
222
223
224
225
226
227
228
|
//
// LocationViewController.swift
// MullvadVPN
//
// Created by pronebird on 02/05/2019.
// Copyright © 2025 Mullvad VPN AB. All rights reserved.
//
import MullvadREST
import MullvadSettings
import MullvadTypes
import UIKit
protocol LocationViewControllerDelegate: AnyObject {
func navigateToCustomLists(nodes: [LocationNode])
func navigateToDaitaSettings()
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 daitaInfoView: UIView?
private var dataSource: LocationDataSource?
private var relaysWithLocation: LocationRelays?
private var filter = RelayFilter()
private var selectedRelays: RelaySelection
private var shouldFilterDaita: Bool
private var shouldFilterObfuscation: Bool
weak var delegate: LocationViewControllerDelegate?
var customListRepository: CustomListRepositoryProtocol
override var preferredStatusBarStyle: UIStatusBarStyle {
.lightContent
}
init(
customListRepository: CustomListRepositoryProtocol,
selectedRelays: RelaySelection,
shouldFilterDaita: Bool,
shouldFilterObfuscation: Bool
) {
self.customListRepository = customListRepository
self.selectedRelays = selectedRelays
self.shouldFilterDaita = shouldFilterDaita
self.shouldFilterObfuscation = shouldFilterObfuscation
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.setAccessibilityIdentifier(.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 viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
tableView.flashScrollIndicators()
}
// MARK: - Public
func setRelaysWithLocation(_ relaysWithLocation: LocationRelays, filter: RelayFilter) {
self.relaysWithLocation = relaysWithLocation
self.filter = filter
filterView.setFilter(filter)
dataSource?.setRelays(relaysWithLocation, selectedRelays: selectedRelays)
}
func setDaitaChip(_ isEnabled: Bool) {
self.shouldFilterDaita = isEnabled
filterView.setDaita(isEnabled)
}
func setObfuscationChip(_ isEnabled: Bool) {
self.shouldFilterObfuscation = isEnabled
filterView.setObfuscation(isEnabled)
}
func refreshCustomLists() {
dataSource?.refreshCustomLists()
}
func setSelectedRelays(_ selectedRelays: RelaySelection) {
self.selectedRelays = selectedRelays
dataSource?.setSelectedRelays(selectedRelays)
}
func toggleDaitaAutomaticRouting(isEnabled: Bool) {
guard isEnabled else {
daitaInfoView?.removeFromSuperview()
daitaInfoView = nil
searchBar.searchTextField.isEnabled = true
UITextField.SearchTextFieldAppearance.inactive.apply(to: searchBar)
return
}
guard daitaInfoView == nil else { return }
let daitaInfoView = DAITAInfoView()
self.daitaInfoView = daitaInfoView
daitaInfoView.didPressDaitaSettingsButton = { [weak self] in
self?.delegate?.navigateToDaitaSettings()
}
view.addConstrainedSubviews([daitaInfoView]) {
daitaInfoView.pinEdgesToSuperview(.all().excluding(.top))
daitaInfoView.topAnchor.constraint(equalTo: tableView.topAnchor)
}
searchBar.searchTextField.isEnabled = false
}
// MARK: - Private
private func setUpDataSource() {
dataSource = LocationDataSource(
tableView: tableView,
allLocations: AllLocationDataSource(),
customLists: CustomListsDataSource(repository: customListRepository)
)
dataSource?.didSelectRelayLocations = { [weak self] relays in
Task { @MainActor in
self?.delegate?.didSelectRelays(relays: relays)
}
}
dataSource?.didTapEditCustomLists = { [weak self] in
guard let self else { return }
Task { @MainActor in
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.estimatedRowHeight = UIMetrics.TableView.rowHeight
tableView.rowHeight = UITableView.automaticDimension
tableView.estimatedSectionHeaderHeight = UIMetrics.TableView.rowHeight
tableView.sectionHeaderHeight = UITableView.automaticDimension
tableView.estimatedSectionFooterHeight = UIMetrics.TableView.rowHeight
tableView.sectionFooterHeight = UITableView.automaticDimension
tableView.indicatorStyle = .white
tableView.keyboardDismissMode = .onDrag
tableView.setAccessibilityIdentifier(.selectLocationTableView)
tableView.register(
LocationSectionHeaderFooterView.self,
forHeaderFooterViewReuseIdentifier: LocationSectionHeaderFooterView.reuseIdentifier
)
}
private func setUpTopContent() {
topContentView.axis = .vertical
topContentView.addArrangedSubview(filterView)
topContentView.addArrangedSubview(searchBar)
filterView.setDaita(shouldFilterDaita)
filterView.setObfuscation(shouldFilterObfuscation)
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("Search for...", comment: "")
searchBar.searchTextField.setAccessibilityIdentifier(.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)
}
}
|