2022-03-16 17:19:31 +02:00
|
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
2022-10-01 10:33:06 +02:00
|
|
|
import 'package:immich_mobile/modules/home/ui/asset_grid/asset_grid_data_structure.dart';
|
2022-03-16 17:19:31 +02:00
|
|
|
import 'package:immich_mobile/modules/search/models/search_result_page_state.model.dart';
|
|
|
|
|
|
|
|
import 'package:immich_mobile/modules/search/services/search.service.dart';
|
2022-09-30 11:05:54 +02:00
|
|
|
import 'package:immich_mobile/modules/settings/providers/app_settings.provider.dart';
|
|
|
|
import 'package:immich_mobile/modules/settings/services/app_settings.service.dart';
|
2022-11-08 19:00:24 +02:00
|
|
|
import 'package:immich_mobile/shared/models/asset.dart';
|
2022-03-16 17:19:31 +02:00
|
|
|
|
|
|
|
class SearchResultPageNotifier extends StateNotifier<SearchResultPageState> {
|
2022-06-25 20:46:51 +02:00
|
|
|
SearchResultPageNotifier(this._searchService)
|
|
|
|
: super(
|
|
|
|
SearchResultPageState(
|
|
|
|
searchResult: [],
|
|
|
|
isError: false,
|
|
|
|
isLoading: true,
|
|
|
|
isSuccess: false,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
final SearchService _searchService;
|
2022-03-16 17:19:31 +02:00
|
|
|
|
|
|
|
void search(String searchTerm) async {
|
2022-06-25 20:46:51 +02:00
|
|
|
state = state.copyWith(
|
2022-07-13 14:23:48 +02:00
|
|
|
searchResult: [],
|
|
|
|
isError: false,
|
|
|
|
isLoading: true,
|
|
|
|
isSuccess: false,
|
|
|
|
);
|
2022-03-16 17:19:31 +02:00
|
|
|
|
2023-02-04 22:42:42 +02:00
|
|
|
List<Asset>? assets = await _searchService.searchAsset(searchTerm);
|
2022-03-16 17:19:31 +02:00
|
|
|
|
|
|
|
if (assets != null) {
|
2022-06-25 20:46:51 +02:00
|
|
|
state = state.copyWith(
|
2022-07-13 14:23:48 +02:00
|
|
|
searchResult: assets,
|
|
|
|
isError: false,
|
|
|
|
isLoading: false,
|
|
|
|
isSuccess: true,
|
|
|
|
);
|
2022-03-16 17:19:31 +02:00
|
|
|
} else {
|
2022-06-25 20:46:51 +02:00
|
|
|
state = state.copyWith(
|
2022-07-13 14:23:48 +02:00
|
|
|
searchResult: [],
|
|
|
|
isError: true,
|
|
|
|
isLoading: false,
|
|
|
|
isSuccess: false,
|
|
|
|
);
|
2022-03-16 17:19:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-25 20:46:51 +02:00
|
|
|
final searchResultPageProvider =
|
|
|
|
StateNotifierProvider<SearchResultPageNotifier, SearchResultPageState>(
|
|
|
|
(ref) {
|
|
|
|
return SearchResultPageNotifier(ref.watch(searchServiceProvider));
|
2022-03-16 17:19:31 +02:00
|
|
|
});
|
|
|
|
|
2023-01-18 17:59:23 +02:00
|
|
|
final searchRenderListProvider = FutureProvider((ref) {
|
2022-09-30 11:05:54 +02:00
|
|
|
var settings = ref.watch(appSettingsServiceProvider);
|
|
|
|
|
2023-02-09 19:35:44 +02:00
|
|
|
final assets = ref.watch(searchResultPageProvider).searchResult;
|
|
|
|
|
|
|
|
final layout = AssetGridLayoutParameters(
|
|
|
|
settings.getSetting(AppSettingsEnum.tilesPerRow),
|
|
|
|
settings.getSetting(AppSettingsEnum.dynamicLayout),
|
|
|
|
GroupAssetsBy.values[settings.getSetting(AppSettingsEnum.groupAssetsBy)],
|
|
|
|
);
|
|
|
|
|
|
|
|
return RenderList.fromAssets(assets, layout);
|
2022-09-30 11:05:54 +02:00
|
|
|
});
|