mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-01 01:29:28 +01:00
30 lines
880 B
Dart
30 lines
880 B
Dart
import 'package:matrix/matrix.dart';
|
|
|
|
extension ClientPresenceExtension on Client {
|
|
List<Presence> get contactList {
|
|
final directChatsMxid = rooms
|
|
.where((r) => r.isDirectChat)
|
|
.map((r) => r.directChatMatrixID)
|
|
.toSet();
|
|
final contactList = directChatsMxid
|
|
.map(
|
|
(mxid) =>
|
|
presences[mxid] ??
|
|
Presence.fromJson(
|
|
{
|
|
'sender': mxid,
|
|
'type': 'm.presence',
|
|
'content': {'presence': 'offline'},
|
|
},
|
|
),
|
|
)
|
|
.toList();
|
|
|
|
contactList.sort((a, b) => a.senderId.compareTo(b.senderId));
|
|
contactList.sort((a, b) => (a.presence.lastActiveAgo?.toDouble() ??
|
|
double.infinity)
|
|
.compareTo((b.presence.lastActiveAgo?.toDouble() ?? double.infinity)));
|
|
return contactList;
|
|
}
|
|
}
|