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

34 lines
818 B
Dart

import 'package:comunic/lists/abstract_list.dart';
import 'package:comunic/models/membership.dart';
/// Memberships list
///
/// @author Pierre Hubert
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:
s.addAll(m.conversation.members);
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();
}