mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
Merge pull request #7251 from cparke2/sort-nonlatin-payment-methods-top
Sort foreign alphabet payment methods above the untranslated ones.
This commit is contained in:
commit
1480fe2021
@ -32,6 +32,7 @@ import java.util.List;
|
|||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Optional;
|
import java.util.Optional;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
|
import java.util.regex.Pattern;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
import java.util.stream.Stream;
|
import java.util.stream.Stream;
|
||||||
|
|
||||||
@ -51,6 +52,9 @@ public final class PaymentMethod implements PersistablePayload, Comparable<Payme
|
|||||||
// Static
|
// Static
|
||||||
///////////////////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// For sorting payment methods, we want names that contain only ASCII and Extended-ASCII to go *below* other languages
|
||||||
|
private static final Pattern ASCII_PATTERN = Pattern.compile("[\\x00-\\xFF]*");
|
||||||
|
|
||||||
// time in blocks (average 10 min for one block confirmation
|
// time in blocks (average 10 min for one block confirmation
|
||||||
private static final long DAY = TimeUnit.HOURS.toMillis(24);
|
private static final long DAY = TimeUnit.HOURS.toMillis(24);
|
||||||
|
|
||||||
@ -424,7 +428,14 @@ public final class PaymentMethod implements PersistablePayload, Comparable<Payme
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int compareTo(@NotNull PaymentMethod other) {
|
public int compareTo(@NotNull PaymentMethod other) {
|
||||||
return Res.get(id).compareTo(Res.get(other.id));
|
// Not all accounts have translations into other languages, and when mixed with Latin they sort to the bottom.
|
||||||
|
// So we need some extra logic to get the Latin to sort separately underneath the non-Latin.
|
||||||
|
boolean isLatin = ASCII_PATTERN.matcher(Res.get(id)).matches();
|
||||||
|
boolean otherIsLatin = ASCII_PATTERN.matcher(Res.get(other.id)).matches();
|
||||||
|
if(isLatin == otherIsLatin)
|
||||||
|
return Res.get(id).compareTo(Res.get(other.id));
|
||||||
|
else
|
||||||
|
return isLatin ? 1 : -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getDisplayString() {
|
public String getDisplayString() {
|
||||||
|
Loading…
Reference in New Issue
Block a user