File tree 2 files changed +14
-2
lines changed
ios/MullvadVPN/View controllers/SelectLocation
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ class AllLocationDataSource: LocationDataSourceProtocol {
64
64
name: serverLocation. country,
65
65
code: LocationNode . combineNodeCodes ( [ countryCode] ) ,
66
66
locations: [ location] ,
67
- isActive: relay . active
67
+ isActive: true // Defaults to true, updated when children are populated.
68
68
)
69
69
70
70
if !rootNode. children. contains ( countryNode) {
@@ -77,7 +77,7 @@ class AllLocationDataSource: LocationDataSourceProtocol {
77
77
name: serverLocation. city,
78
78
code: LocationNode . combineNodeCodes ( [ countryCode, cityCode] ) ,
79
79
locations: [ location] ,
80
- isActive: relay . active
80
+ isActive: true // Defaults to true, updated when children are populated.
81
81
)
82
82
83
83
if let countryNode = rootNode. countryFor ( code: countryCode) ,
@@ -101,6 +101,14 @@ class AllLocationDataSource: LocationDataSourceProtocol {
101
101
hostNode. parent = cityNode
102
102
cityNode. children. append ( hostNode)
103
103
cityNode. children. sort ( )
104
+
105
+ cityNode. isActive = cityNode. children. contains ( where: { hostNode in
106
+ hostNode. isActive
107
+ } )
108
+
109
+ countryNode. isActive = countryNode. children. contains ( where: { cityNode in
110
+ cityNode. isActive
111
+ } )
104
112
}
105
113
}
106
114
}
Original file line number Diff line number Diff line change @@ -236,6 +236,10 @@ extension LocationDataSource: UITableViewDelegate {
236
236
}
237
237
}
238
238
239
+ func tableView( _ tableView: UITableView , shouldHighlightRowAt indexPath: IndexPath ) -> Bool {
240
+ itemIdentifier ( for: indexPath) ? . node. isActive ?? false
241
+ }
242
+
239
243
func tableView( _ tableView: UITableView , indentationLevelForRowAt indexPath: IndexPath ) -> Int {
240
244
itemIdentifier ( for: indexPath) ? . indentationLevel ?? 0
241
245
}
You can’t perform that action at this time.
0 commit comments