Skip to content

Commit b1722ac

Browse files
mojganiibuggmagnet
authored andcommitted
Add alphabetical sorting for custom list locations
1 parent 02e2f2e commit b1722ac

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

ios/MullvadVPN/View controllers/SelectLocation/CustomListLocationNodeBuilder.swift

+29
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
import Foundation
1010
import MullvadSettings
11+
import MullvadTypes
1112

1213
struct CustomListLocationNodeBuilder {
1314
let customList: CustomList
@@ -18,6 +19,7 @@ struct CustomListLocationNodeBuilder {
1819
name: customList.name,
1920
code: customList.name.lowercased(),
2021
locations: customList.locations,
22+
isActive: !customList.locations.isEmpty,
2123
customList: customList
2224
)
2325

@@ -44,6 +46,33 @@ struct CustomListLocationNodeBuilder {
4446
.copy(withParent: listNode)
4547
}
4648
}
49+
50+
listNode.sort()
4751
return listNode
4852
}
4953
}
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+
}

0 commit comments

Comments
 (0)