1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 06:53:23 +00:00
comunicmobile/lib/lists/memberships_list.dart

43 lines
1.2 KiB
Dart
Raw Normal View History

2020-05-05 16:49:50 +00:00
import 'package:comunic/lists/abstract_list.dart';
import 'package:comunic/models/membership.dart';
/// Memberships list
///
/// @author Pierre Hubert
2020-05-05 17:33:04 +00:00
class MembershipList extends AbstractList<Membership> {
/// Get the IDs of all the users included in some way in this list
Set<int> get usersId {
final s = Set<int>();
forEach((m) {
switch (m.type) {
case MembershipType.FRIEND:
s.add(m.friend.id);
break;
case MembershipType.GROUP:
break;
case MembershipType.CONVERSATION:
2021-03-10 16:54:41 +00:00
s.addAll(m.conversation.membersID);
2020-05-05 17:33:04 +00:00
break;
}
});
return s;
}
/// Get the ID of the groups included in this list
Set<int> get groupsId => where((f) => f.type == MembershipType.GROUP)
.map((f) => f.groupID)
.toSet();
/// Remove a friend membership from the list
void removeFriend(int friendID) => remove(firstWhere(
(f) => f.type == MembershipType.FRIEND && f.friend.id == friendID));
2021-04-07 14:28:59 +00:00
/// Get the list of conversations of a group
Set<Membership> getGroupConversations(int groupID) => where((element) =>
element.type == MembershipType.CONVERSATION &&
element.conversation.groupID == groupID).toSet();
2020-05-05 17:33:04 +00:00
}