mirror of
https://github.com/immich-app/immich.git
synced 2024-12-19 00:32:49 +02:00
30 lines
756 B
Dart
30 lines
756 B
Dart
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
||
|
import 'package:immich_mobile/shared/models/asset.dart';
|
||
|
import 'package:immich_mobile/shared/providers/api.provider.dart';
|
||
|
import 'package:immich_mobile/shared/providers/db.provider.dart';
|
||
|
|
||
|
final allMotionPhotosProvider = FutureProvider<List<Asset>>( (ref) async {
|
||
|
final search = await ref.watch(apiServiceProvider).searchApi.search(
|
||
|
motion: true,
|
||
|
);
|
||
|
|
||
|
if (search == null) {
|
||
|
return [];
|
||
|
}
|
||
|
|
||
|
return ref.watch(dbProvider)
|
||
|
.assets
|
||
|
.getAllByRemoteId(
|
||
|
search.assets.items.map((e) => e.id),
|
||
|
);
|
||
|
|
||
|
|
||
|
/// This works offline, but we use the above
|
||
|
/*
|
||
|
return ref.watch(dbProvider).assets
|
||
|
.filter()
|
||
|
.livePhotoVideoIdIsNotNull()
|
||
|
.findAll();
|
||
|
*/
|
||
|
});
|