[RoomList] Autosort

This commit is contained in:
Christian Pauly 2019-08-29 09:16:07 +02:00
parent c5664bfa71
commit ae573850bd
1 changed files with 6 additions and 1 deletions

View File

@ -68,6 +68,7 @@ class RoomList {
this.onlyGroups = false}) {
eventSub ??= client.connection.onEvent.stream.listen(_handleEventUpdate);
roomSub ??= client.connection.onRoomUpdate.stream.listen(_handleRoomUpdate);
sort();
}
Room getRoomByAlias(String alias) {
@ -148,9 +149,13 @@ class RoomList {
sortAndUpdate();
}
sortAndUpdate() {
sort() {
rooms?.sort((a, b) =>
b.timeCreated.toTimeStamp().compareTo(a.timeCreated.toTimeStamp()));
}
sortAndUpdate() {
sort();
if (onUpdate != null) onUpdate();
}
}