mirror of
https://github.com/immich-app/immich.git
synced 2025-07-09 03:04:16 -04:00
63 lines
1.8 KiB
Dart
63 lines
1.8 KiB
Dart
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
|
|
import 'package:immich_mobile/domain/models/local_album.model.dart';
|
|
import 'package:immich_mobile/services/local_album.service.dart';
|
|
|
|
final backupAlbumProvider =
|
|
StateNotifierProvider<BackupAlbumNotifier, List<LocalAlbum>>(
|
|
(ref) => BackupAlbumNotifier(
|
|
ref.watch(localAlbumsServiceProvider),
|
|
),
|
|
);
|
|
|
|
class BackupAlbumNotifier extends StateNotifier<List<LocalAlbum>> {
|
|
BackupAlbumNotifier(this._localAlbumService) : super([]) {
|
|
getAll();
|
|
}
|
|
|
|
final LocalAlbumService _localAlbumService;
|
|
|
|
Future<void> getAll() async {
|
|
state = await _localAlbumService.getAll();
|
|
}
|
|
|
|
Future<void> selectAlbum(LocalAlbum album) async {
|
|
album = album.copyWith(backupSelection: BackupSelection.selected);
|
|
await _localAlbumService.update(album);
|
|
|
|
state = state
|
|
.map(
|
|
(currentAlbum) => currentAlbum.id == album.id
|
|
? currentAlbum.copyWith(backupSelection: BackupSelection.selected)
|
|
: currentAlbum,
|
|
)
|
|
.toList();
|
|
}
|
|
|
|
Future<void> deselectAlbum(LocalAlbum album) async {
|
|
album = album.copyWith(backupSelection: BackupSelection.none);
|
|
await _localAlbumService.update(album);
|
|
|
|
state = state
|
|
.map(
|
|
(currentAlbum) => currentAlbum.id == album.id
|
|
? currentAlbum.copyWith(backupSelection: BackupSelection.none)
|
|
: currentAlbum,
|
|
)
|
|
.toList();
|
|
}
|
|
|
|
Future<void> excludeAlbum(LocalAlbum album) async {
|
|
album = album.copyWith(backupSelection: BackupSelection.excluded);
|
|
await _localAlbumService.update(album);
|
|
|
|
state = state
|
|
.map(
|
|
(currentAlbum) => currentAlbum.id == album.id
|
|
? currentAlbum.copyWith(backupSelection: BackupSelection.excluded)
|
|
: currentAlbum,
|
|
)
|
|
.toList();
|
|
}
|
|
}
|