mirror of
https://github.com/immich-app/immich.git
synced 2024-11-17 19:08:49 -07:00
501b96baf7
* Added placeholder for search explore * refactor immich asset grid to use ref and provider * all videos page * got favorites, recently added, videos, and motion videos all using the immich grid * Fixed issue with hero animations * theming * localization * delete empty file * style text * Styling icons * more styling --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
29 lines
757 B
Dart
29 lines
757 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 allVideoAssetsProvider = FutureProvider<List<Asset>>( (ref) async {
|
|
final search = await ref.watch(apiServiceProvider).searchApi.search(
|
|
type: 'VIDEO',
|
|
);
|
|
|
|
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()
|
|
.durationInSecondsGreaterThan(0)
|
|
.findAll();
|
|
*/
|
|
});
|