mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-08 13:09:30 +01:00
37 lines
1.1 KiB
Dart
37 lines
1.1 KiB
Dart
import 'package:famedlysdk/famedlysdk.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.addAll(
|
|
presences.values
|
|
.where((p) =>
|
|
!directChatsMxid.contains(p.senderId) &&
|
|
(p.presence?.statusMsg?.isNotEmpty ?? false))
|
|
.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;
|
|
}
|
|
}
|