-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented search result page (#37)
- Loading branch information
1 parent
bd34be9
commit 5990a28
Showing
16 changed files
with
467 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
111 changes: 111 additions & 0 deletions
111
mobile/lib/modules/search/providers/search_result_page_state.provider.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
import 'dart:convert'; | ||
|
||
import 'package:collection/collection.dart'; | ||
import 'package:hooks_riverpod/hooks_riverpod.dart'; | ||
|
||
import 'package:immich_mobile/modules/search/services/search.service.dart'; | ||
import 'package:immich_mobile/shared/models/immich_asset.model.dart'; | ||
import 'package:intl/intl.dart'; | ||
|
||
class SearchresultPageState { | ||
final bool isLoading; | ||
final bool isSuccess; | ||
final bool isError; | ||
final List<ImmichAsset> searchResult; | ||
|
||
SearchresultPageState({ | ||
required this.isLoading, | ||
required this.isSuccess, | ||
required this.isError, | ||
required this.searchResult, | ||
}); | ||
|
||
SearchresultPageState copyWith({ | ||
bool? isLoading, | ||
bool? isSuccess, | ||
bool? isError, | ||
List<ImmichAsset>? searchResult, | ||
}) { | ||
return SearchresultPageState( | ||
isLoading: isLoading ?? this.isLoading, | ||
isSuccess: isSuccess ?? this.isSuccess, | ||
isError: isError ?? this.isError, | ||
searchResult: searchResult ?? this.searchResult, | ||
); | ||
} | ||
|
||
Map<String, dynamic> toMap() { | ||
return { | ||
'isLoading': isLoading, | ||
'isSuccess': isSuccess, | ||
'isError': isError, | ||
'searchResult': searchResult.map((x) => x.toMap()).toList(), | ||
}; | ||
} | ||
|
||
factory SearchresultPageState.fromMap(Map<String, dynamic> map) { | ||
return SearchresultPageState( | ||
isLoading: map['isLoading'] ?? false, | ||
isSuccess: map['isSuccess'] ?? false, | ||
isError: map['isError'] ?? false, | ||
searchResult: List<ImmichAsset>.from(map['searchResult']?.map((x) => ImmichAsset.fromMap(x))), | ||
); | ||
} | ||
|
||
String toJson() => json.encode(toMap()); | ||
|
||
factory SearchresultPageState.fromJson(String source) => SearchresultPageState.fromMap(json.decode(source)); | ||
|
||
@override | ||
String toString() { | ||
return 'SearchresultPageState(isLoading: $isLoading, isSuccess: $isSuccess, isError: $isError, searchResult: $searchResult)'; | ||
} | ||
|
||
@override | ||
bool operator ==(Object other) { | ||
if (identical(this, other)) return true; | ||
final listEquals = const DeepCollectionEquality().equals; | ||
|
||
return other is SearchresultPageState && | ||
other.isLoading == isLoading && | ||
other.isSuccess == isSuccess && | ||
other.isError == isError && | ||
listEquals(other.searchResult, searchResult); | ||
} | ||
|
||
@override | ||
int get hashCode { | ||
return isLoading.hashCode ^ isSuccess.hashCode ^ isError.hashCode ^ searchResult.hashCode; | ||
} | ||
} | ||
|
||
class SearchResultPageStateNotifier extends StateNotifier<SearchresultPageState> { | ||
SearchResultPageStateNotifier() | ||
: super(SearchresultPageState(searchResult: [], isError: false, isLoading: true, isSuccess: false)); | ||
|
||
final SearchService _searchService = SearchService(); | ||
|
||
search(String searchTerm) async { | ||
state = state.copyWith(searchResult: [], isError: false, isLoading: true, isSuccess: false); | ||
|
||
List<ImmichAsset>? assets = await _searchService.searchAsset(searchTerm); | ||
|
||
if (assets != null) { | ||
state = state.copyWith(searchResult: assets, isError: false, isLoading: false, isSuccess: true); | ||
} else { | ||
state = state.copyWith(searchResult: [], isError: true, isLoading: false, isSuccess: false); | ||
} | ||
} | ||
} | ||
|
||
final searchResultPageStateProvider = | ||
StateNotifierProvider<SearchResultPageStateNotifier, SearchresultPageState>((ref) { | ||
return SearchResultPageStateNotifier(); | ||
}); | ||
|
||
final searchResultGroupByDateTimeProvider = StateProvider((ref) { | ||
var assets = ref.watch(searchResultPageStateProvider).searchResult; | ||
|
||
assets.sortByCompare<DateTime>((e) => DateTime.parse(e.createdAt), (a, b) => b.compareTo(a)); | ||
return assets.groupListsBy((element) => DateFormat('y-MM-dd').format(DateTime.parse(element.createdAt))); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.