-
Notifications
You must be signed in to change notification settings - Fork 384
/
Copy pathLocationDataSource.swift
353 lines (291 loc) · 11.7 KB
/
LocationDataSource.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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
//
// LocationDataSource.swift
// MullvadVPN
//
// Created by pronebird on 11/03/2021.
// Copyright © 2021 Mullvad VPN AB. All rights reserved.
//
import Combine
import MullvadREST
import MullvadSettings
import MullvadTypes
import UIKit
final class LocationDataSource: UITableViewDiffableDataSource<LocationSection, LocationCellViewModel> {
private var currentSearchString = ""
private let tableView: UITableView
private let locationCellFactory: LocationCellFactory
private var dataSources: [LocationDataSourceProtocol] = []
private var selectedItem: LocationCellViewModel?
var didSelectRelayLocations: ((RelayLocations) -> Void)?
init(
tableView: UITableView,
allLocations: LocationDataSourceProtocol,
customLists: LocationDataSourceProtocol
) {
self.tableView = tableView
#if DEBUG
self.dataSources.append(customLists)
#endif
self.dataSources.append(allLocations)
let locationCellFactory = LocationCellFactory(
tableView: tableView,
reuseIdentifier: LocationSection.Cell.locationCell.reuseIdentifier
)
self.locationCellFactory = locationCellFactory
super.init(tableView: tableView) { _, indexPath, itemIdentifier in
locationCellFactory.makeCell(for: itemIdentifier, indexPath: indexPath)
}
tableView.delegate = self
locationCellFactory.delegate = self
defaultRowAnimation = .fade
registerClasses()
}
func setRelays(_ response: REST.ServerRelaysResponse, selectedLocations: RelayLocations?, filter: RelayFilter) {
let allLocationsDataSource =
dataSources.first(where: { $0 is AllLocationDataSource }) as? AllLocationDataSource
let customListsDataSource =
dataSources.first(where: { $0 is CustomListsDataSource }) as? CustomListsDataSource
let relays = response.wireguard.relays.filter { relay in
RelaySelector.relayMatchesFilter(relay, filter: filter)
}
allLocationsDataSource?.reload(response, relays: relays)
customListsDataSource?.reload(allLocationNodes: allLocationsDataSource?.nodes ?? [])
if let selectedLocations {
// Look for a matching custom list node.
if let customListId = selectedLocations.customListId,
let customList = customListsDataSource?.customList(by: customListId),
let selectedNode = customListsDataSource?.node(by: selectedLocations.locations, for: customList) {
selectedItem = LocationCellViewModel(section: .customLists, node: selectedNode)
// Look for a matching all locations node.
} else if let location = selectedLocations.locations.first,
let selectedNode = allLocationsDataSource?.node(by: location) {
selectedItem = LocationCellViewModel(section: .allLocations, node: selectedNode)
}
}
filterRelays(by: currentSearchString)
}
func filterRelays(by searchString: String) {
currentSearchString = searchString
let list = LocationSection.allCases.enumerated().map { index, section in
dataSources[index]
.search(by: searchString)
.flatMap { node in
let rootNode = RootLocationNode(children: [node])
return recursivelyCreateCellViewModelTree(for: rootNode, in: section, indentationLevel: 0)
}
}
updateDataSnapshot(with: list, reloadExisting: !searchString.isEmpty) {
DispatchQueue.main.async {
if searchString.isEmpty {
self.setSelectedItem(self.selectedItem, animated: false, completion: {
self.scrollToSelectedRelay()
})
} else {
self.scrollToTop(animated: false)
}
}
}
}
private func indexPathForSelectedRelay() -> IndexPath? {
selectedItem.flatMap { indexPath(for: $0) }
}
private func updateDataSnapshot(
with list: [[LocationCellViewModel]],
reloadExisting: Bool = false,
animated: Bool = false,
completion: (() -> Void)? = nil
) {
var snapshot = NSDiffableDataSourceSnapshot<LocationSection, LocationCellViewModel>()
let sections = LocationSection.allCases
snapshot.appendSections(sections)
for (index, section) in sections.enumerated() {
snapshot.appendItems(list[index], toSection: section)
}
if reloadExisting {
snapshot.reloadSections(sections)
}
apply(snapshot, animatingDifferences: animated, completion: completion)
}
private func registerClasses() {
LocationSection.allCases.forEach {
tableView.register(
$0.cell.reusableViewClass,
forCellReuseIdentifier: $0.cell.reuseIdentifier
)
}
}
private func setSelectedItem(
_ item: LocationCellViewModel?,
animated: Bool,
completion: (() -> Void)? = nil
) {
selectedItem = item
guard let selectedItem else { return }
let rootNode = selectedItem.node.root
guard selectedItem.node != rootNode else {
completion?()
return
}
guard let indexPath = indexPath(for: LocationCellViewModel(
section: selectedItem.section,
node: rootNode
)) else { return }
// Walk tree backwards to determine which nodes should be expanded.
selectedItem.node.forEachAncestor { node in
node.showsChildren = true
}
let nodesToAdd = recursivelyCreateCellViewModelTree(
for: rootNode,
in: selectedItem.section,
indentationLevel: 1
)
var snapshotItems = snapshot().itemIdentifiers(inSection: selectedItem.section)
snapshotItems.insert(contentsOf: nodesToAdd, at: indexPath.row + 1)
let list = LocationSection.allCases.enumerated().map { index, section in
index == indexPath.section
? snapshotItems
: snapshot().itemIdentifiers(inSection: section)
}
updateDataSnapshot(
with: list,
reloadExisting: true,
animated: animated,
completion: completion
)
}
private func recursivelyCreateCellViewModelTree(
for node: LocationNode,
in section: LocationSection,
indentationLevel: Int
) -> [LocationCellViewModel] {
var viewModels = [LocationCellViewModel]()
for childNode in node.children where !childNode.isHiddenFromSearch {
viewModels.append(
LocationCellViewModel(
section: section,
node: childNode,
indentationLevel: indentationLevel
)
)
let indentationLevel = indentationLevel + 1
if childNode.showsChildren {
viewModels.append(
contentsOf: recursivelyCreateCellViewModelTree(
for: childNode,
in: section,
indentationLevel: indentationLevel
)
)
}
}
return viewModels
}
}
extension LocationDataSource: UITableViewDelegate {
func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
nil
}
func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
let section = snapshot().sectionIdentifiers[section]
switch section {
case .customLists:
return 24
case .allLocations:
return 0
}
}
func tableView(_ tableView: UITableView, indentationLevelForRowAt indexPath: IndexPath) -> Int {
itemIdentifier(for: indexPath)?.indentationLevel ?? 0
}
func tableView(
_ tableView: UITableView,
willDisplay cell: UITableViewCell,
forRowAt indexPath: IndexPath
) {
if let item = itemIdentifier(for: indexPath),
item == selectedItem {
cell.setSelected(true, animated: false)
}
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
tableView.deselectRow(at: indexPath, animated: false)
guard let item = itemIdentifier(for: indexPath) else { return }
let topmostNode = item.node.root as? CustomListLocationNode
let relayLocations = RelayLocations(locations: item.node.locations, customListId: topmostNode?.customList.id)
didSelectRelayLocations?(relayLocations)
}
}
extension LocationDataSource: LocationCellEventHandler {
func toggleCell(for item: LocationCellViewModel) {
guard let indexPath = indexPath(for: item) else { return }
let sections = LocationSection.allCases
let section = sections[indexPath.section]
let isExpanded = item.node.showsChildren
var locationList = snapshot().itemIdentifiers(inSection: section)
item.node.showsChildren = !isExpanded
if !isExpanded {
locationList.addSubNodes(from: item, at: indexPath)
} else {
locationList.recursivelyRemoveSubNodes(from: item.node)
}
let list = sections.enumerated().map { index, section in
index == indexPath.section
? locationList
: snapshot().itemIdentifiers(inSection: section)
}
updateDataSnapshot(with: list, reloadExisting: true, completion: {
self.scroll(to: item, animated: true)
})
}
}
extension LocationDataSource {
private func scroll(to item: LocationCellViewModel, animated: Bool) {
guard
let visibleIndexPaths = tableView.indexPathsForVisibleRows,
let indexPath = indexPath(for: item)
else { return }
if item.node.children.count > visibleIndexPaths.count {
tableView.scrollToRow(at: indexPath, at: .top, animated: animated)
} else {
if let last = item.node.children.last {
if let lastInsertedIndexPath = self.indexPath(for: LocationCellViewModel(
section: LocationSection.allCases[indexPath.section],
node: last
)),
let lastVisibleIndexPath = visibleIndexPaths.last,
lastInsertedIndexPath >= lastVisibleIndexPath {
tableView.scrollToRow(at: lastInsertedIndexPath, at: .bottom, animated: animated)
}
}
}
}
private func scrollToTop(animated: Bool) {
tableView.setContentOffset(.zero, animated: animated)
}
private func scrollToSelectedRelay() {
indexPathForSelectedRelay().flatMap {
tableView.scrollToRow(at: $0, at: .middle, animated: false)
}
}
}
private extension [LocationCellViewModel] {
mutating func addSubNodes(from item: LocationCellViewModel, at indexPath: IndexPath) {
let section = LocationSection.allCases[indexPath.section]
let row = indexPath.row + 1
let locations = item.node.children.map {
LocationCellViewModel(section: section, node: $0, indentationLevel: item.indentationLevel + 1)
}
if row < count {
insert(contentsOf: locations, at: row)
} else {
append(contentsOf: locations)
}
}
mutating func recursivelyRemoveSubNodes(from node: LocationNode) {
for node in node.children {
node.showsChildren = false
removeAll(where: { node == $0.node })
recursivelyRemoveSubNodes(from: node)
}
}
}