mirror of
https://github.com/immich-app/immich.git
synced 2024-12-17 12:22:31 +02:00
0e0a472de1
Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
79 lines
2.5 KiB
Dart
79 lines
2.5 KiB
Dart
import 'dart:async';
|
|
|
|
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/asset.dart';
|
|
import 'package:immich_mobile/shared/models/album.dart';
|
|
import 'package:immich_mobile/shared/models/store.dart';
|
|
import 'package:immich_mobile/shared/models/user.dart';
|
|
import 'package:immich_mobile/shared/providers/db.provider.dart';
|
|
import 'package:immich_mobile/utils/renderlist_generator.dart';
|
|
import 'package:isar/isar.dart';
|
|
|
|
class AlbumNotifier extends StateNotifier<List<Album>> {
|
|
AlbumNotifier(this._albumService, Isar db) : super([]) {
|
|
final query = db.albums
|
|
.filter()
|
|
.owner((q) => q.isarIdEqualTo(Store.get(StoreKey.currentUser).isarId));
|
|
query.findAll().then((value) {
|
|
if (mounted) {
|
|
state = value;
|
|
}
|
|
});
|
|
_streamSub = query.watch().listen((data) => state = data);
|
|
}
|
|
final AlbumService _albumService;
|
|
late final StreamSubscription<List<Album>> _streamSub;
|
|
|
|
Future<void> getAllAlbums() => Future.wait([
|
|
_albumService.refreshDeviceAlbums(),
|
|
_albumService.refreshRemoteAlbums(isShared: false),
|
|
]);
|
|
|
|
Future<void> getDeviceAlbums() => _albumService.refreshDeviceAlbums();
|
|
|
|
Future<bool> deleteAlbum(Album album) => _albumService.deleteAlbum(album);
|
|
|
|
Future<Album?> createAlbum(
|
|
String albumTitle,
|
|
Set<Asset> assets,
|
|
) =>
|
|
_albumService.createAlbum(albumTitle, assets, []);
|
|
|
|
@override
|
|
void dispose() {
|
|
_streamSub.cancel();
|
|
super.dispose();
|
|
}
|
|
}
|
|
|
|
final albumProvider =
|
|
StateNotifierProvider.autoDispose<AlbumNotifier, List<Album>>((ref) {
|
|
return AlbumNotifier(
|
|
ref.watch(albumServiceProvider),
|
|
ref.watch(dbProvider),
|
|
);
|
|
});
|
|
|
|
final albumWatcher =
|
|
StreamProvider.autoDispose.family<Album, int>((ref, albumId) async* {
|
|
final db = ref.watch(dbProvider);
|
|
final a = await db.albums.get(albumId);
|
|
if (a != null) yield a;
|
|
await for (final a in db.albums.watchObject(albumId, fireImmediately: true)) {
|
|
if (a != null) yield a;
|
|
}
|
|
});
|
|
|
|
final albumRenderlistProvider =
|
|
StreamProvider.autoDispose.family<RenderList, int>((ref, albumId) {
|
|
final album = ref.watch(albumWatcher(albumId)).value;
|
|
if (album != null) {
|
|
final query =
|
|
album.assets.filter().isTrashedEqualTo(false).sortByFileCreatedAtDesc();
|
|
return renderListGeneratorWithGroupBy(query, GroupAssetsBy.none);
|
|
}
|
|
return const Stream.empty();
|
|
});
|