mirror of
https://github.com/immich-app/immich.git
synced 2024-12-19 00:32:49 +02:00
b9cda59172
* refactor: add/remove album assets * chore: open api * feat: remove owned assets from album * refactor: move to bulk id req/res dto * chore: open api * chore: merge main * dev: mobile work * fix: adding asset from web not sync with mobile * remove print statement --------- Co-authored-by: Alex Tran <Alex.Tran@conductix.com>
22 lines
824 B
Dart
22 lines
824 B
Dart
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/modules/album/services/album.service.dart';
|
|
import 'package:immich_mobile/modules/home/ui/asset_grid/asset_grid_data_structure.dart';
|
|
import 'package:immich_mobile/shared/models/album.dart';
|
|
import 'package:immich_mobile/shared/providers/user.provider.dart';
|
|
|
|
final albumDetailProvider =
|
|
StreamProvider.family<Album, int>((ref, albumId) async* {
|
|
final user = ref.watch(currentUserProvider);
|
|
if (user == null) return;
|
|
final AlbumService service = ref.watch(albumServiceProvider);
|
|
|
|
await for (final a in service.watchAlbum(albumId)) {
|
|
if (a == null) {
|
|
throw Exception("Album with ID=$albumId does not exist anymore!");
|
|
}
|
|
await for (final _ in a.watchRenderList(GroupAssetsBy.none)) {
|
|
yield a;
|
|
}
|
|
}
|
|
});
|