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

21 lines
622 B
Dart
Raw Normal View History

2020-04-17 08:30:29 +00:00
import 'package:comunic/lists/abstract_list.dart';
import 'package:comunic/models/search_result.dart';
/// List of result of a global search on the database
///
/// @author Pierre Hubert
class SearchResultsList extends AbstractList<SearchResult> {
/// Get the list of users included in this search result
Set<int> get usersId => this
.where((f) => f.kind == SearchResultKind.USER)
.map((f) => f.id)
.toSet();
/// Get the list of groups included in this search result
Set<int> get groupsId => this
.where((f) => f.kind == SearchResultKind.GROUP)
.map((f) => f.id)
.toSet();
}