File tree 1 file changed +29
-0
lines changed
ios/MullvadVPN/View controllers/SelectLocation
1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 8
8
9
9
import Foundation
10
10
import MullvadSettings
11
+ import MullvadTypes
11
12
12
13
struct CustomListLocationNodeBuilder {
13
14
let customList : CustomList
@@ -18,6 +19,7 @@ struct CustomListLocationNodeBuilder {
18
19
name: customList. name,
19
20
code: customList. name. lowercased ( ) ,
20
21
locations: customList. locations,
22
+ isActive: !customList. locations. isEmpty,
21
23
customList: customList
22
24
)
23
25
@@ -44,6 +46,33 @@ struct CustomListLocationNodeBuilder {
44
46
. copy ( withParent: listNode)
45
47
}
46
48
}
49
+
50
+ listNode. sort ( )
47
51
return listNode
48
52
}
49
53
}
54
+
55
+ private extension CustomListLocationNode {
56
+ func sort( ) {
57
+ let sortedChildren = Dictionary ( grouping: children, by: {
58
+ return switch RelayLocation ( dashSeparatedString: $0. code) ! {
59
+ case . country:
60
+ LocationGroup . country
61
+ case . city:
62
+ LocationGroup . city
63
+ case . hostname:
64
+ LocationGroup . host
65
+ }
66
+ } )
67
+ . sorted ( by: { $0. key < $1. key } )
68
+ . reduce ( [ ] ) {
69
+ return $0 + $1. value. sorted ( by: { $0. name < $1. name } )
70
+ }
71
+
72
+ children = sortedChildren
73
+ }
74
+ }
75
+
76
+ private enum LocationGroup : CaseIterable , Comparable {
77
+ case country, city, host
78
+ }
You can’t perform that action at this time.
0 commit comments