mirror of
https://github.com/immich-app/immich.git
synced 2024-11-15 18:08:48 -07:00
5806a3ce25
* refactor(mobile): widgets * update
27 lines
1005 B
Dart
27 lines
1005 B
Dart
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/widgets/asset_grid/asset_grid_data_structure.dart';
|
|
import 'package:immich_mobile/providers/app_settings.provider.dart';
|
|
import 'package:immich_mobile/services/app_settings.service.dart';
|
|
import 'package:immich_mobile/entities/asset.entity.dart';
|
|
import 'package:isar/isar.dart';
|
|
|
|
Stream<RenderList> renderListGenerator(
|
|
QueryBuilder<Asset, Asset, QAfterSortBy> query,
|
|
StreamProviderRef<RenderList> ref,
|
|
) {
|
|
final settings = ref.watch(appSettingsServiceProvider);
|
|
final groupBy =
|
|
GroupAssetsBy.values[settings.getSetting(AppSettingsEnum.groupAssetsBy)];
|
|
return renderListGeneratorWithGroupBy(query, groupBy);
|
|
}
|
|
|
|
Stream<RenderList> renderListGeneratorWithGroupBy(
|
|
QueryBuilder<Asset, Asset, QAfterSortBy> query,
|
|
GroupAssetsBy groupBy,
|
|
) async* {
|
|
yield await RenderList.fromQuery(query, groupBy);
|
|
await for (final _ in query.watchLazy()) {
|
|
yield await RenderList.fromQuery(query, groupBy);
|
|
}
|
|
}
|